@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("font/Satoshi-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

/* Styles Start Here */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  a {
    text-decoration: none;
    color: inherit;
  }
}

body {
  background-color: #0c0c0c;
  font-family: "Satoshi", sans-serif;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 80px;
  height: 72px;
  color: #ffffff;
  position: fixed;
  background-color: transparent;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  background-color: #0c0c0c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 7px 20px 7px 20px;
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0px 4px 24px rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  width: fit-content;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -2%;
  color: rgba(255, 255, 255, 0.5);
  height: 48px;
  margin-right: -40px;
}

.nav-links a {
  transition: all 0.3s ease;
}

.nav-links a:first-child:not(.active) {
  margin-left: 20px;
}

.nav-links a.active {
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 7.3px 20px;
  width: fit-content;
  color: #beff50;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
}

.nav-links a.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.Primary-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 20px;
  background-color: #beff50;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -2%;
  color: #0c0c0c;
  height: 44px;
  width: fit-content;
}

.mobile-only-btn {
  display: none;
}

.Primary-btn:hover {
  box-shadow: 0 0 8px #bfff50a9;
  transition: box-shadow 0.3s linear;
  cursor: pointer;
}

/* Burger Menu Global */
/* Hamburger Icon */
.burger {
  position: relative;
  width: 26px;
  height: 22px;
  background: transparent;
  cursor: pointer;
  /* display none for now will open it in tablet and mobile */
  display: none;
  scale: calc(0.8);
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
  width: 100%;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
  width: 100%;
}

.burger input:checked~span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

/* Hero Section */
.Hero-Section {
  width: 100%;
  height: 960px;
  background-image: url(/assets/Hero-Bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0px;
  align-items: center;
  padding: 190px 80px 0px 80px;
  overflow: visible;
  margin-bottom: 640px;
  /* Add bottom margin instead */
}

.hero-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.expertise {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -2%;
  padding: 8px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.our-expertise {
  color: #0c0c0c;
  background-color: #beff50;
  padding: 2.5px 12px 5px 12px;
  border-radius: 100px;
  height: 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-size-adjust: 18px;
}

.head-para {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: #ffffff;
}

.head-para h1 {
  font-size: 62px;
  font-weight: 500;
  text-align: center;
  line-height: 110%;
  letter-spacing: -4%;
  width: 600px;
}

.hero-highlight-txt {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.heading-img {
  position: relative;
  bottom: -8px;
  margin: 0px 10px;
}

.head-para p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  width: 560px;
  text-align: center;
}

.Secondry-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  padding: 6px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -2%;
}

.Secondry-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.Secondry-btn:hover {
  background-color: #ffffff2a;
  transition: background-color 0.3s linear;
  cursor: pointer;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

/* Images Developer and Designer */
.developer {
  position: absolute;
  top: 171px;
  left: 260px;
}

.designer {
  position: absolute;
  top: 53 0px;
  right: 320px;
}

/* Rotated Cards */
.rotated-card-left {
  position: absolute;
  top: 280px;
  left: 40px;
  transform: rotate(-12deg);
  padding: 28px 24px;
  width: 282px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  /* border: ; Graident will be applied at border */
  border-radius: 20px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 188px;
  justify-content: center;
}

.rotated-card-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.rotated-card-left h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
}

.rotated-card-left h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  color: #ffffff;
  margin-bottom: -8px;
}

.rotated-card-left p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  width: 234px;
}

.rotated-card-right {
  position: absolute;
  top: 280px;
  right: 40px;
  transform: rotate(12deg);
  padding: 28px 24px;
  width: 282px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  /* border: ; Graident will be applied at border */
  border-radius: 20px;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 188px;
  justify-content: center;
}

.rotated-card-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.rotated-card-right h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
}

.rotated-card-right h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  color: #ffffff;
  margin-bottom: -8px;
}

.rotated-card-right p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  width: 234px;
}

.hero-cards {
  display: flex;
  align-items: top;
}

/* Video Area */
.video-area {
  width: 100%;
  height: auto;
  margin-top: 160px;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  margin-bottom: 160px;
}

.video-area video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

/* Video Controls Styling */
.video-area video::-webkit-media-controls-panel {
  background: rgba(12, 12, 12, 0.329);
  border-radius: 0 0 30px 30px;
}

.video-area video::-webkit-media-controls-play-button,
.video-area video::-webkit-media-controls-pause-button,
.video-area video::-webkit-media-controls-mute-button,
.video-area video::-webkit-media-controls-unmute-button,
.video-area video::-webkit-media-controls-fullscreen-button,
.video-area video::-webkit-media-controls-timeline,
.video-area video::-webkit-media-controls-volume-slider,
.video-area video::-webkit-media-controls-current-time-display,
.video-area video::-webkit-media-controls-time-remaining-display {
  filter: invert(1) hue-rotate(80deg) saturate(2);
}

/* Glow */
.glow-circle {
  position: absolute;
  top: 760px;
  left: -40%;
  z-index: -10;
  width: 80%;
  overflow: visible;
  opacity: 0.6;
}

.glow-circle img {
  width: 100%;
  height: auto;
}

/* Projects Preview Section */
.projects-preview {
  position: relative;
  width: 100%;
}

.project-preview {
  width: 100%;
  height: auto;
  display: block;
}

.logos {
  position: absolute;
  top: 94%;
  width: 100%;
  padding: 0px 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logo-top,
.logo-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 57px;
}

/* Testimonials */
.testimonials {
  width: 100%;
  height: auto;
  margin-top: 140px;
  margin-bottom: 140px;
  padding: 0px 80px;
}

.content-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}

.right-top-testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
}

.testimonials-div {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.testimonials-div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.right-top-testimonials h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
}

.highlighted-yellow {
  color: #beff50;
}

.content-top p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  width: 514px;
  letter-spacing: -2%;
  line-height: 160%;
}

.bottom-testimonials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.testimonials-reviews {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0px;
  /* Removed fixed height: 768px to prevent overflow */
  height: 768px;
  /* Let it grow naturally */
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Changed to hidden since height is now auto */
  overflow: scroll;
}

/* Hide scrollbar but keep scrolling functionality */
.testimonials-reviews::-webkit-scrollbar {
  display: none;
}

.testimonials-reviews {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.testimonial-1 {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  padding: 32px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 30px;
  width: 100%;
}

.testimonial-1 img {
  width: 160px;
  height: auto;
}

.testimonial-1 p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  /* Push paragraph to bottom of card */
}

.name-rating {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.person-review {
  display: flex;
  gap: 14px;
  align-items: center;
}

.person-review img {
  width: 50px;
  height: 50px;
}

.name-testimonial h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -2%;
}

.name-testimonial p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  color: rgba(255, 255, 255, 0.5);
}

.ratings img {
  width: 100px;
  height: auto;
}

.glow-circle-2 {
  position: absolute;
  top: 2600px;
  left: -40%;
  z-index: -10;
  width: 80%;
  overflow: visible;
  opacity: 0.9;
}

.glow-circle-2 img {
  width: 100%;
  height: auto;
}

/* Capabilities */
.our-capabilities-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #ffffff;
  padding: 0px 80px 0px 0px;
  width: 100%;
}

.capabilities {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.our-capabilities-heading h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  width: 893px;
  text-align: left;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;

}

.Capabilities {
  width: 100%;
  height: auto;
  padding: 0px 0px 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* All Services Section */
.all-services {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
  max-height: 460px;
  overflow-x: auto;
  padding-bottom: 40px;
  /* Increased space for scrollbar */
}

/* Custom Scrollbar Styles */
.all-services::-webkit-scrollbar {
  height: 12px;
  display: block;
  /* Ensure it is displayed */
}

.all-services::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  margin-inline: 300px;
}

.all-services::-webkit-scrollbar-thumb {
  background-color: #beff50;
  border-radius: 100px;
  border: 1px solid transparent;
  background-clip: content-box;
  cursor: pointer;
}

.all-services::-webkit-scrollbar-thumb:hover {
  background: #aaff20;
}

.backend-development,
.web-development,
.ui-ux-solution,
.blockchain-solution,
.graphic-solution {
  min-width: 380px;
  flex-shrink: 0;
}

.backend-development {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 397px;
  /* Changed from max-height to height to fill the space */
  align-items: center;
  justify-content: space-between;
  /* Push content to top and bottom */
  padding: 28px;
  /* Removed gap: 60px */
  border-radius: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

.backend-development:hover {
  background: #BEFF50;
  /* Highlighting green color */
}

.backend-development:hover .backend-icon {
  background-image: url(/assets/backend-development-hover.png);
  /* Change background image on hover */
}

.backend-development:hover .icon-header h3,
.backend-development:hover .bottom-info-backend p {
  color: #0c0c0c;
  margin-bottom: 18px;
}

.backend-development:hover .backend-divs {
  display: flex;
  justify-content: start;
}

.icon-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.backend-icon {
  background-image: url(/assets/backend-development.png);
  width: 58px;
  height: 58px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.icon-header h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
  transition: color 0.3s ease;
}

.bottom-info-backend {
  display: flex;
  flex-direction: column;
  /* Removed gap: 18px */
  height: 162px;
  justify-content: flex-end;
  /* Push paragraph to bottom */
  align-items: flex-start;
  /* Align text to left */
}

.bottom-info-backend p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 0.3s ease;
}

.backend-divs {
  display: none;
  /* Hidden by default */
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.bottom-info-backend-bubbles {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 9px 16px;
  width: fit-content;
  height: 44px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  background-color: #0c0c0c;
}

/* Web dev */
.web-development {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 397px;
  /* Changed from max-height to height to fill the space */
  align-items: center;
  justify-content: space-between;
  /* Push content to top and bottom */
  padding: 28px;
  /* Removed gap: 60px */
  border-radius: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

.web-development:hover {
  background: #BEFF50;
  /* Highlighting green color */
}

.web-development:hover .web-icon {
  background-image: url(/assets/web-dev-hover.png);
  /* Change background image on hover */
}

.web-development:hover .icon-header h3,
.web-development:hover .bottom-info-web p {
  color: #0c0c0c;
  margin-bottom: 18px;
}

.web-development:hover .web-divs {
  display: flex;
  justify-content: start;
}

.icon-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.web-icon {
  background-image: url(/assets/web-dev.png);
  width: 58px;
  height: 58px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.icon-header h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
  transition: color 0.3s ease;
}

.bottom-info-web {
  display: flex;
  flex-direction: column;
  /* Removed gap: 18px */
  height: 162px;
  justify-content: flex-end;
  /* Push paragraph to bottom */
  align-items: flex-start;
  /* Align text to left */
}

.bottom-info-web p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 0.3s ease;
}

.web-divs {
  display: none;
  /* Hidden by default */
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.bottom-info-web-bubbles {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 9px 16px;
  width: fit-content;
  height: 44px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  background-color: #0c0c0c;
}

/* blockchain */
.blockchain-solution {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 397px;
  /* Changed from max-height to height to fill the space */
  align-items: center;
  justify-content: space-between;
  /* Push content to top and bottom */
  padding: 28px;
  /* Removed gap: 60px */
  border-radius: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

.blockchain-solution:hover {
  background: #BEFF50;
}

.blockchain-solution:hover .blockchain-icon {
  background-image: url(/assets/bloackchain-hover.png);
  /* Change background image on hover */
}

.blockchain-solution:hover .icon-header h3,
.blockchain-solution:hover .bottom-info-blockchain p {
  color: #0c0c0c;
  margin-bottom: 18px;
}

.blockchain-solution:hover .blockchain-divs {
  display: flex;
  justify-content: start;
}

.icon-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.blockchain-icon {
  background-image: url(/assets/blockchain.png);
  width: 58px;
  height: 58px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.icon-header h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
  transition: color 0.3s ease;
}

.bottom-info-blockchain {
  display: flex;
  flex-direction: column;
  /* Removed gap: 18px */
  height: 162px;
  justify-content: flex-end;
  /* Push paragraph to bottom */
  align-items: flex-start;
  /* Align text to left */
}

.bottom-info-blockchain p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 0.3s ease;
}

.blockchain-divs {
  display: none;
  /* Hidden by default */
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.bottom-info-blockchain-bubbles {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 9px 16px;
  width: fit-content;
  height: 44px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  background-color: #0c0c0c;
}

/* UI/UX Design */
.ui-ux-solution {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 397px;
  /* Changed from max-height to height to fill the space */
  align-items: center;
  justify-content: space-between;
  /* Push content to top and bottom */
  padding: 28px;
  /* Removed gap: 60px */
  border-radius: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

.ui-ux-solution:hover {
  background: #BEFF50;
}

.ui-ux-solution:hover .ui-ux-icon {
  background-image: url(/assets/ui-ux-hover.png);
  /* Change background image on hover */
}

.ui-ux-solution:hover .icon-header h3,
.ui-ux-solution:hover .bottom-info-ui-ux p {
  color: #0c0c0c;
  margin-bottom: 18px;
}

.ui-ux-solution:hover .ui-ux-divs {
  display: flex;
  justify-content: start;
}

.icon-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.ui-ux-icon {
  background-image: url(/assets/ui-ux.png);
  width: 58px;
  height: 58px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.icon-header h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
  transition: color 0.3s ease;
}

.bottom-info-ui-ux {
  display: flex;
  flex-direction: column;
  /* Removed gap: 18px */
  height: 162px;
  justify-content: flex-end;
  /* Push paragraph to bottom */
  align-items: flex-start;
  /* Align text to left */
}

.bottom-info-ui-ux p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 0.3s ease;
}

.ui-ux-divs {
  display: none;
  /* Hidden by default */
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.bottom-info-ui-ux-bubbles {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 9px 16px;
  width: fit-content;
  height: 44px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  background-color: #0c0c0c;
}

/*Graphic Design */
.graphic-solution {
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 397px;
  /* Changed from max-height to height to fill the space */
  align-items: center;
  justify-content: space-between;
  /* Push content to top and bottom */
  padding: 28px;
  /* Removed gap: 60px */
  border-radius: 20px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

.graphic-solution:hover {
  background: #BEFF50;
}

.graphic-solution:hover .graphic-icon {
  background-image: url(/assets/graphic-design-hover.png);
  /* Change background image on hover */
}

.graphic-solution:hover .icon-header h3,
.graphic-solution:hover .bottom-info-graphic p {
  color: #0c0c0c;
  margin-bottom: 18px;
}

.graphic-solution:hover .graphic-divs {
  display: flex;
  justify-content: start;
}

.graphic-icon {
  background-image: url(/assets/graphic-design.png);
  /* Updated image name guess, user may correct */
  width: 58px;
  height: 58px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.bottom-info-graphic {
  display: flex;
  flex-direction: column;
  /* Removed gap: 18px */
  height: 162px;
  justify-content: flex-end;
  /* Push paragraph to bottom */
  align-items: flex-start;
  /* Align text to left */
}

.bottom-info-graphic p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 0.3s ease;
}

.graphic-divs {
  display: none;
  /* Hidden by default */
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.bottom-info-graphic-bubbles {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 9px 16px;
  width: fit-content;
  height: 44px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  background-color: #0c0c0c;
}

.glow-circle-3 {
  position: absolute;
  top: 3800px;
  left: -40%;
  z-index: -10;
  width: 80%;
  overflow: visible;
  opacity: 0.9;
}

.glow-circle-3 img {
  width: 100%;
  height: auto;
}

/* Portfolio Section Starts Here */
.our-portfolio-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #ffffff;
  padding: 0px 80px 0px 80px;
  width: 100%;
  margin-top: 160px;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.portfolio-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.our-portfolio-heading h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  width: 791px;
  text-align: left;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;
}

.portfolio {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.projects-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Changed from center to allow bi-directional scrolling */
  gap: 28px;
  margin-bottom: 34px;
  width: 100%;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 0 80px 40px 80px;
  /* Added horizontal padding */
}


.project-1,
.project-2,
.project-3,
.project-4 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 600px;
  flex-shrink: 0;
}

.project-1-info,
.project-2-info,
.project-3-info,
.project-4-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffffff;
}

.project-1-info h4,
.project-2-info h4,
.project-3-info h4,
.project-4-info h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
}

.project-1-info p,
.project-2-info p,
.project-3-info p,
.project-4-info p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
}

/* Custom Scrollbar Styles */
.projects-top::-webkit-scrollbar {
  height: 12px;
  display: block;
  /* Ensure it is displayed */
}

.projects-top::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  margin-inline: 80px;
}

.projects-top::-webkit-scrollbar-thumb {
  background-color: #beff50;
  border-radius: 100px;
  border: 1px solid transparent;
  background-clip: content-box;
  cursor: pointer;
}

.projects-top::-webkit-scrollbar-thumb:hover {
  background: #aaff20;
}

.projects-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Changed from center to allow bi-directional scrolling */
  gap: 28px;
  margin-bottom: 34px;
  width: 100%;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 0 80px 40px 80px;
  /* Synchronized padding with .projects-top */
}

/* Custom Scrollbar Styles for Bottom Slider */
.projects-bottom::-webkit-scrollbar {
  height: 12px;
  display: block;
}

.projects-bottom::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  margin-inline: 80px;
}

.projects-bottom::-webkit-scrollbar-thumb {
  background-color: #beff50;
  border-radius: 100px;
  border: 1px solid transparent;
  background-clip: content-box;
  cursor: pointer;
}

.projects-bottom::-webkit-scrollbar-thumb:hover {
  background: #aaff20;
}

.glow-circle-4 {
  position: absolute;
  top: 4700px;
  left: -40%;
  z-index: -10;
  width: 80%;
  overflow: visible;
  opacity: 0.9;
}

.glow-circle-4 img {
  width: 100%;
  height: auto;
}

/* Digital Products Section */
.digital-products {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.header-digital {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  color: #ffffff;
}

.digital-heading-products {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.digital-heading-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.header-digital h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 120%;
  width: 604px;
  text-align: center;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;
}

.header-digital p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  width: 462px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -10px;
  margin-bottom: 20px;
}

.products-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}



/* How we work section */
.how-we-work {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 160px;
  width: 100%;
  padding: 0px 80px;
}

.how-we-work-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: #ffffff;
  width: 100%;
}

.how-we-work-head {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.how-we-work-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.how-we-work-heading h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  width: 822px;
  text-align: left;
  margin-top: -14px;
}

.highlighted-yellow {
  color: #beff50;
}

.all-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-1 {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 28px 28px 36px 28px;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  width: 280px;
  position: relative;
  transition: all 0.3s ease;
}

.step-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.step-1:hover::before {
  opacity: 1;
}

.top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
}

.step-1 h4 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-1 p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
}

/* Our Founder Section */
.our-founder {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.header-founder {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  color: #ffffff;
}

.founder-head {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  height: 44px;
  width: fit-content;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 10.8px 16px;
  position: relative;
}

.founder-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.header-founder h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 120%;
  width: 800px;
  text-align: center;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;
}

.name-info-founders {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 28px;
}

.Mohsin-Akber {
  display: flex;
  align-items: center;
  gap: 28px;
  height: fit-content;
}

.info-founder-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px;
  background-color: #BEFF50;
  border-radius: 20px;
  height: 360px;
  width: 279px;
}

.info-founder-1 h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -5%;
  color: #0c0c0c;
  text-align: left;
  margin-top: -2px;
}

.role-social-1 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: -10px;
}

.role-social-1 p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: #0c0c0c;
}

.social-links-1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.Ahsan-Akber {
  display: flex;
  align-items: center;
  gap: 28px;
  height: fit-content;
}

.info-founder-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px;
  background-color: #FFFFFF;
  border-radius: 20px;
  height: 360px;
  width: 279px;
}

.info-founder-2 h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -5%;
  color: #0c0c0c;
  text-align: left;
  margin-top: -2px;
}

.role-social-2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: -10px;
}

.role-social-2 p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: #0c0c0c;
}

.social-links-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FAQ Section */
.faq-section {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  color: #ffffff;
}

.header-faq h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 120%;
  width: 800px;
  text-align: center;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;
}

.faq-div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  gap: 60px;
}

.faq-left {
  display: flex;
  flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.open-faq {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 16px;
  width: 100%;
  gap: 24px;
  position: relative;
  cursor: pointer;
}

.open-faq::before,
.faq-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-200deg,
      rgba(190, 255, 80, 0.32) 0%,
      rgba(255, 255, 255, 0.05) 55%);
  border-radius: inherit;
  padding: 2px;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.open-faq img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-item-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 592px;
}

.faq-item-inner h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
}

.faq-answer {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-answer p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
}

.closed-faq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 16px;
  width: 100%;
  gap: 24px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.closed-faq .faq-answer {
  max-height: 0;
  margin-top: 0;
}

.closed-faq img {
  transition: transform 0.3s ease;
}

.closed-faq h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ffffff;
  margin-bottom: -13px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  height: 446px;
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  align-items: start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.start-today {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -2%;
  padding: 8px 16px 8px 12px;
  background-color: #000000;
  border-radius: 100px;
  box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
}

.start-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.start-content h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -4%;
  color: #ffffff;
}

.start-content p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.final-cta {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  color: #ffffff;

}

.header-cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 520px;
  border-radius: 40px;
  color: #ffffff;
  background-image: url(/assets/cta.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-cta h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 120%;
  width: 604px;
  text-align: center;
  margin-top: -9px;
}

.highlighted-yellow {
  color: #beff50;
}

.header-cta p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  width: 462px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  width: 100%;
  height: auto;
  padding: 0px 80px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  color: #ffffff;
}

.left-right-side-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.footer-left-side {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: auto;
  height: auto;
}


.footer-left-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: auto;
}

.footer-logo img {
  width: 152px;
  height: auto;
}

.footer-content h1 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -4%;
  line-height: 120%;
  width: 700px;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 30px;
}

.footer-content p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -2%;
  line-height: 160%;
  width: 687px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -10px;
  margin-bottom: 20px;
}

.light-italic {
  font-style: italic;
  color: #999999;
}

.footer-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: auto;
}

.footer-left-bottom h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -2%;
  line-height: 120%;
  width: 604px;
  text-align: left;
}

.footer-left-bottom p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0%;
  line-height: 160%;
  width: 462px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -10px;
  margin-bottom: 20px;
}

.footer-right-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: auto;
  height: auto;
}


.footer-calender {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: auto;
}

.calendar-header {
  color: #ffffff;
}

.footer-bottom-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: auto;
  margin-bottom: 64px;
  margin-top: 26px;
}


.calendar-wrapper {
  color: #D4D4D4;
  line-height: 1.5;
  display: flex;
}

.calendar-container {
  width: 390px;
  height: 537px;
  background-color: #171717;
  border-radius: 20px;
  padding: 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.calendar-header h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.calendar-header span {
  color: #555;
  font-weight: 400;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.day-labels-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  grid-column: 1 / -1;
  border-bottom: 1px solid #262626;
  margin-bottom: 8px;
}

.day-label {
  color: #FAFAFA;
  font-size: 12px;
  text-align: center;
  padding-bottom: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.day-num {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Accuracy Colors */
.highlight-green {
  background-color: #BEFF50;
  color: #000;
  font-weight: 700;
  padding: 18px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.highlight-gray {
  background-color: #404040;
  color: #fff;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.calendar-footer {
  margin-top: auto;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.selected-date {
  font-size: 18px;
}

.toggle-container {
  background-color: #1a1a1a;
  padding: 4px;
  border-radius: 10px;
  display: flex;
  border: 1px solid #222;
}

.toggle-btn {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
}

.toggle-btn.active {
  background-color: #2a2a2a;
  color: #fff;
}

.time-button {
  width: 100%;
  background-color: #0F0F0F;
  border: 1px solid #4D4D4D;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.time-button:hover {
  border-color: #444;
}

@media (max-width: 2560px) {

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1440px;
    padding: 0px 80px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 20px 7px 7px;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0px 4px 24px rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
    height: 48px;
    margin-right: -40px;
  }

  .nav-links a.active {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 7.3px 20px;
    width: fit-content;
    color: #beff50;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
  }

  .nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Primary-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 20px;
    background-color: #beff50;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    color: #0c0c0c;
    height: 44px;
    width: fit-content;
  }

  .mobile-only-btn {
    display: none;
  }

  .Primary-btn:hover {
    box-shadow: 0 0 8px #bfff50a9;
    transition: box-shadow 0.3s linear;
    cursor: pointer;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 960px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0px;
    align-items: center;
    padding: 190px 80px 0px 80px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 2.5px 12px 5px 12px;
    border-radius: 100px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 62px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 600px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -8px;
    margin: 0px 10px;
  }

  .head-para p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 560px;
    text-align: center;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 171px;
    left: 260px;
  }

  .designer {
    position: absolute;
    top: 53 0px;
    right: 320px;
  }

  /* Rotated Cards */
  .rotated-card-left {
    position: absolute;
    top: 280px;
    left: 40px;
    transform: rotate(-12deg);
    padding: 28px 24px;
    width: 282px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 280px;
    right: 40px;
    transform: rotate(12deg);
    padding: 28px 24px;
    width: 282px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 100%;
    height: auto;
    margin-top: 160px;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    margin-bottom: 160px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 140px;
    margin-bottom: 140px;
    padding: 0px 80px;
  }

  .content-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
  }

  .testimonials-div {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    width: 514px;
    letter-spacing: -2%;
    line-height: 160%;
  }

  .bottom-testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
  }

  .testimonials-reviews {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    /* Removed fixed height: 768px to prevent overflow */
    height: 768px;
    /* Let it grow naturally */
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 30px;
    width: 100%;
  }

  .testimonial-1 img {
    width: 160px;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .person-review img {
    width: 50px;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .ratings img {
    width: 100px;
    height: auto;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 80px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 893px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 28px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 80px 0px 80px;
    width: 100%;
    margin-top: 160px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 791px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 600px;
    flex-shrink: 0;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 160px;
    width: 100%;
    padding: 0px 80px;
  }

  .how-we-work-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 822px;
    text-align: left;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 280px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 28px;
  }

  .Mohsin-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-1 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-2 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    gap: 60px;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    position: relative;
    cursor: pointer;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 592px;
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    height: 446px;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 520px;
    border-radius: 40px;
    color: #ffffff;
    background-image: url(/assets/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: auto;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 700px;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 687px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 604px;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 160%;
    width: 462px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 390px;
    height: 537px;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }
}

@media (max-width: 1440px) {

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 80px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 20px 7px 7px;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0px 4px 24px rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
    height: 48px;
    margin-right: -40px;
  }

  .nav-links a.active {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 7.3px 20px;
    width: fit-content;
    color: #beff50;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
  }

  .nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Primary-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 20px;
    background-color: #beff50;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    color: #0c0c0c;
    height: 44px;
    width: fit-content;
  }

  .mobile-only-btn {
    display: none;
  }

  .Primary-btn:hover {
    box-shadow: 0 0 8px #bfff50a9;
    transition: box-shadow 0.3s linear;
    cursor: pointer;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 960px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0px;
    align-items: center;
    padding: 190px 80px 0px 80px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 2.5px 12px 5px 12px;
    border-radius: 100px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 62px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 600px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -8px;
    margin: 0px 10px;
  }

  .head-para p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 560px;
    text-align: center;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 171px;
    left: 260px;
  }

  .designer {
    position: absolute;
    top: 53 0px;
    right: 320px;
  }

  /* Rotated Cards */
  .rotated-card-left {
    position: absolute;
    top: 280px;
    left: 40px;
    transform: rotate(-12deg);
    padding: 28px 24px;
    width: 282px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 280px;
    right: 40px;
    transform: rotate(12deg);
    padding: 28px 24px;
    width: 282px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 100%;
    height: auto;
    margin-top: 160px;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    margin-bottom: 160px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 140px;
    margin-bottom: 140px;
    padding: 0px 80px;
  }

  .content-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
  }

  .testimonials-div {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    width: 514px;
    letter-spacing: -2%;
    line-height: 160%;
  }

  .bottom-testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
  }

  .testimonials-reviews {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    /* Removed fixed height: 768px to prevent overflow */
    height: 768px;
    /* Let it grow naturally */
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 30px;
    width: 100%;
  }

  .testimonial-1 img {
    width: 160px;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .person-review img {
    width: 50px;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .ratings img {
    width: 100px;
    height: auto;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 80px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 893px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 28px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 80px 0px 80px;
    width: 100%;
    margin-top: 160px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 791px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 600px;
    flex-shrink: 0;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 160px;
    width: 100%;
    padding: 0px 80px;
  }

  .how-we-work-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 822px;
    text-align: left;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 280px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 28px;
  }

  .Mohsin-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-1 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-2 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    gap: 60px;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    position: relative;
    cursor: pointer;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 592px;
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    height: 446px;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 520px;
    border-radius: 40px;
    color: #ffffff;
    background-image: url(/assets/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: auto;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 700px;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 687px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 604px;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 160%;
    width: 462px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 390px;
    height: 537px;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }
}

@media (max-width: 1024px) {

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    max-width: 1024px;
    justify-content: center;
    margin: 0 auto;
    overflow-x: hidden;
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1024px;
    padding: 0px 60px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    z-index: 1000;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 20px 7px 7px;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0px 4px 24px rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
    height: 48px;
    margin-right: -40px;
  }

  .nav-links a.active {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 7.3px 20px;
    width: fit-content;
    color: #beff50;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
  }

  .nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Primary-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 20px;
    background-color: #beff50;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    color: #0c0c0c;
    height: 44px;
    width: fit-content;
  }



  .Primary-btn:hover {
    box-shadow: 0 0 8px #bfff50a9;
    transition: box-shadow 0.3s linear;
    cursor: pointer;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 400px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: repeat;
    margin-top: 0px;
    align-items: center;
    padding: 190px 0px 0px 0px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 2.5px 12px 5px 12px;
    border-radius: 100px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 62px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 100%;
    max-width: 600px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -8px;
    margin: 0px 10px;
  }

  .head-para p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 560px;
    text-align: center;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 160px;
    left: 140px;
  }

  .designer {
    position: absolute;
    top: 520px;
    right: 200px;
  }

  /* Rotated Cards */
  .rotated-card-left {
    transform: rotate(0deg);
    position: absolute;
    top: 660px;
    left: 80px;
    padding: 28px 24px;
    width: 425px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 660px;
    right: 80px;
    padding: 28px 24px;
    transform: rotate(0deg);
    width: 425px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 90%;
    height: auto;
    padding: 6px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    margin-bottom: 160px;
    margin: 380px 56px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
    margin-top: 1200px;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 140px;
    margin-bottom: 140px;
    padding: 0px 60px;
  }

  .content-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
    width: 410px;
  }

  .testimonials-div {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 450px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    width: 514px;
    letter-spacing: -2%;
    line-height: 160%;
  }

  .bottom-testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
  }

  .testimonials-reviews {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    /* Removed fixed height: 768px to prevent overflow */
    height: 768px;
    /* Let it grow naturally */
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 30px;
    width: 100%;
  }

  .testimonial-1 img {
    width: 160px;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 258px;
  }

  .person-review img {
    width: 50px;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    width: 198px;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .ratings {
    display: none;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 60px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: 180px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    margin-right: 30px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 893px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 28px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    padding: 0px 60px 0px 60px;
    width: 100%;
    margin-top: 160px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    width: 165px;
    padding: 10.8px 16px;
    margin-right: 17px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 791px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 600px;
    flex-shrink: 0;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    scale: calc(0.85);
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 160px;
    width: 100%;
    padding: 0px 60px;
  }

  .how-we-work-heading {
    display: flex;
    justify-content: space-between;
    align-items: start;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    width: 175px;
    margin-right: 14px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 810px;
    text-align: left;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 300px;
    height: 330px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    scale: calc(0.76);
    gap: 28px;
  }

  .Mohsin-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-1 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-2 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: auto;
    padding: 0px 60px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    align-items: start;
    width: 100%;
    height: fit-content;
    gap: 60px;
    scale: calc(0.89);
    margin-left: -100px;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    position: relative;
    cursor: pointer;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 592px;
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    height: 446px;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    width: 100%;
    position: relative;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 520px;
    border-radius: 40px;
    color: #ffffff;
    background-image: url(/assets/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: auto;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 700px;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 687px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 604px;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 160%;
    width: 462px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 390px;
    height: 537px;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }
}

@media (max-width: 768px) {

  html {
    overflow-x: hidden;
    /* Prevent horizontal scroll at root */
  }

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    max-width: 1024px;
    justify-content: center;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 768px;
    padding: 0px 40px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: 43.5%;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 20px 7px 7px;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0px 4px 24px rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
    height: 48px;
    margin-right: -40px;
  }

  .nav-links a.active {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 7.3px 20px;
    width: fit-content;
    color: #beff50;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
  }

  .nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Primary-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 6px 6px 20px;
    background-color: #beff50;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    color: #0c0c0c;
    height: 44px;
    width: fit-content;
  }



  .Primary-btn:hover {
    box-shadow: 0 0 8px #bfff50a9;
    transition: box-shadow 0.3s linear;
    cursor: pointer;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 400px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: repeat;
    margin-top: 0px;
    align-items: center;
    padding: 190px 0px 0px 0px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 2.5px 12px 5px 12px;
    border-radius: 100px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 62px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 100%;
    max-width: 600px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -8px;
    margin: 0px 10px;
  }

  .head-para p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 560px;
    text-align: center;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 120px;
    left: 80px;
    width: 80px;
  }

  .designer {
    position: absolute;
    top: 520px;
    right: 80px;
  }

  /* Rotated Cards */
  .rotated-card-left {
    transform: rotate(0deg);
    position: absolute;
    top: 660px;
    left: 60px;
    padding: 28px 24px;
    width: 315px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 660px;
    right: 60px;
    padding: 28px 24px;
    transform: rotate(0deg);
    width: 315px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 90%;
    height: auto;
    padding: 6px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    margin-bottom: 160px;
    margin: 380px 56px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
    margin-top: 1100px;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 140px;
    margin-bottom: 140px;
    padding: 0px 40px;
  }

  .content-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
    width: 410px;
  }

  .testimonials-div {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 450px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    width: 514px;
    letter-spacing: -2%;
    line-height: 160%;
  }

  .bottom-testimonials {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 26px;
  }

  .bottom-testimonials img {
    width: 688px;
  }

  .testimonials-reviews {
    display: flex;
    align-items: start;
    gap: 0px;
    flex-direction: row;
    /* Removed fixed height: 768px to prevent overflow */
    width: 100%;
    height: 350px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    gap: 30px;
    width: 100%;
    height: 100%;
    width: 568px;
  }

  .testimonial-1 img {
    width: 160px;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 258px;
  }

  .person-review img {
    width: 50px;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    width: 198px;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .ratings {
    display: none;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #ffffff;
    gap: 32px;
    padding: 0px 0px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: 150px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 100%;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 28px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #ffffff;
    gap: 32px;
    padding: 0px 40px 0px 40px;
    width: 100%;
    margin-top: 160px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    width: 160px;
    padding: 10.8px 16px;
    margin-right: 17px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 100%;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 600px;
    flex-shrink: 0;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: -30px;
    scale: calc(0.65);
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 160px;
    width: 100%;
    padding: 0px 40px;
  }

  .how-we-work-heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    width: 160px;
    margin-right: 14px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 810px;
    text-align: left;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbar Styles for How We Work */
  .all-steps::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .all-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 40px;
  }

  .all-steps::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-steps::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 300px;
    flex-shrink: 0;
    height: 330px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    scale: calc(0.58);
    gap: 28px;
    margin-top: -50px;
  }

  .Mohsin-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-1 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-2 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: auto;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 800px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    align-items: start;
    width: 688px;
    height: fit-content;
    gap: 60px;
    margin-right: -100px;
    margin-top: -60px;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-right: -100px;
    width: 688px;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    position: relative;
    cursor: pointer;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 592px;
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 100%;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: none;
    flex-direction: column;
    height: 446px;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    width: 0%;
    position: relative;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 520px;
    border-radius: 40px;
    color: #ffffff;
    background-image: url(/assets/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 604px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 462px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    padding: 0px 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: auto;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 700px;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 687px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 604px;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 160%;
    width: 462px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 390px;
    height: 537px;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }
}

@media (max-width: 426px) {

  html {
    overflow-x: hidden;
    /* Prevent horizontal scroll at root */
  }

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: 0;
    transform: none;
  }

  /* Hamburger Icon Enabled */
  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    /* Show only on mobile screen */
    z-index: 1100;
  }


  /* Rotated cards mobile fix */
  .rotated-card-left,
  .rotated-card-right {
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    box-sizing: border-box !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Fit the viewport width on small screens */
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1050;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .nav-links.active {
    display: flex;
    /* Show when active */
  }

  .nav-links a {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .nav-links a:first-child:not(.active) {
    margin-left: 0;
  }

  .nav-links a:nth-child(2) {
    transition-delay: 0.3s;
  }

  .nav-links a:nth-child(3) {
    transition-delay: 0.4s;
  }

  .nav-links a:nth-child(4) {
    transition-delay: 0.5s;
  }

  .nav-links a.active {
    background: transparent;
    color: #BEFF50;
    padding: 0;
    height: fit-content;
  }

  .nav-links a.active::before {
    display: none;
  }

  header .Primary-btn {
    display: none !important;
    /* Hide header button on mobile */
  }

  /* Ensure testimonial image is fluid and keeps right padding on small screens */
  .bottom-testimonials img,
  .right-side-image-testimonials img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding-right: 2px !important;
    box-sizing: border-box !important;
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: -20px;
    width: 100%;
    padding: 0px 20px;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 300px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: repeat;
    margin-top: 0px;
    align-items: center;
    padding: 190px 0px 0px 0px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }


  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 11px;
    width: fit-content;
    justify-content: center;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
    scale: calc(0.9);
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 7px 10px 5px 10px;
    border-radius: 100px;
    height: 28px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 365px;
    max-width: 600px;
    margin: 0px auto;
    margin-top: -10px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -5px;
    margin: 0px 10px;
    width: 58px;
    height: auto;
  }

  .heading-img img {
    width: 58px;
    height: auto;
  }

  .head-para p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 360px;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: 100%;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn .Primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 44px;
    /* Ensure space for the absolute icon if needed */
  }

  .hero-btn .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  .hero-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 20px;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 40px;
    height: auto;
  }

  .developer img {
    width: 80px;
    height: auto;
  }

  .designer {
    position: absolute;
    top: 650px;
    right: 50px;
  }

  .designer img {
    width: 80px;
    height: auto;
  }

  /* Rotated Cards */
  .rotated-card-left {
    transform: rotate(0deg);
    position: absolute;
    top: 730px;
    padding: 28px 24px;
    width: 100%;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;

  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 948px;
    padding: 28px 24px;
    transform: rotate(0deg);
    width: 385px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 90%;
    height: auto;
    padding: 3px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 160px;
    margin: 540px 20px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
    margin-top: 1250px;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    scale: calc(0.7);
    margin-bottom: -20px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 120px;
    margin-bottom: 140px;
    padding: 0px 0px 0px 20px;
  }

  .content-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 20px 0px 0px;
    margin-bottom: 60px;
    margin-top: -10px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    color: #ffffff;
    width: 425px;
    margin-bottom: 20px;
  }

  .testimonials-div {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    justify-content: center;
    position: relative;
  }

  .right-side-image-testimonials {
    width: 100%;
    height: auto;
    padding: 0px 20px 0px 0px;
  }

  .right-side-image-testimonials img {
    width: 100%;
    height: auto;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -4%;
    width: fit-content;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    width: 380px;
    letter-spacing: -2%;
    line-height: 160%;
    text-align: center;
  }

  .bottom-testimonials {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 26px;
  }

  .bottom-testimonials img {
    width: 380px;
  }

  .testimonials-reviews {
    display: flex;
    align-items: start;
    gap: 60px;
    flex-direction: row;
    width: 100%;
    height: 286px;
    border-radius: 24px 0px 0px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    gap: 30px;
    width: 384px !important;
    height: 100%;
  }

  .testimonial-1 img {
    width: 160px !important;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 327px;
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 258px;
  }

  .person-review img {
    width: 50px !important;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    width: fit-content;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    width: fit-content;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .name-testimonial {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
    justify-content: center;
    margin-bottom: -3px;
  }

  .ratings {
    display: flex;
  }

  .ratings img {
    width: 100px !important;
    height: auto;
    margin-top: -9px;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    gap: 32px;
    padding: 0px 20px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 390px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    margin-left: -20px;
    scale: 0.9;
    margin-top: -20px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    gap: 32px;
    padding: 0px 20px 0px 20px;
    width: 100%;
    margin-top: 120px;
  }

  .portfolio-head {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    margin-right: 17px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 380px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0px 0px 40px 0px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 270px;
    flex-shrink: 0;
  }

  .project-1 img,
  .project-2 img,
  .project-3 img,
  .project-4 img {
    width: 270px;
    height: auto;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    width: fit-content;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: fit-content;
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: none;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Changed from center to allow bi-directional scrolling */
    gap: 20px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: none;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 380px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 380px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 0px;
    scale: calc(0.9);
    flex-wrap: wrap;
    width: 380px;
  }

  .products-logos div img {
    width: 60px;
    height: auto;
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 120px;
    width: 100%;
    padding: 0px 20px;
    padding-right: 0px;
  }

  .how-we-work-heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 380px;
    text-align: center;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbar Styles for How We Work */
  .all-steps::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .all-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 40px;
  }

  .all-steps::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-steps::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 12px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 300px;
    flex-shrink: 0;
    height: 330px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-bottom: 64px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 380px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    gap: 28px;
    scale: calc(1);
  }

  .Mohsin-Akber {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    height: fit-content;
  }

  .Mohsin-Akber img {
    width: 100%;
    height: auto;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 460px;
    width: 100%;
  }

  .info-founder-1 h4 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    height: fit-content;
  }

  .Ahsan-Akber img {
    width: 100%;
    height: auto;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 460px;
    width: 100%;
  }

  .info-founder-2 h4 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: fit-content;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 350px;
    text-align: center;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-right: 0px;
    width: 100% !important;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100% !important;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px) !important;
    gap: 24px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Changed from 592px to fit parent */
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px) !important;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

.faq-right {
        display: flex !important;
        width: 100% !important;
        min-width: 390px !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 24px 24px !important;
        align-items: start !important;
        justify-content: center !important;
        margin-left: 200px !important;
        box-sizing: border-box !important;
    }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    width: fit-content;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: start;
    justify-content: start;
    margin-top: 120px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    padding: 24px 24px;
    color: #ffffff;
    background-image: url(/assets/mobile-cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 350px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 340px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100% !important;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;
    justify-content: space-between;
    width: 100% !important;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: auto;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: auto;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 100%;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: fit-content;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-left-bottom .Primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 44px;
    /* Ensure space for the absolute icon if needed */
  }

  .footer-left-bottom .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
    margin: 0px auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 100%;
    height: auto;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .terms-privacy {
    display: flex;
    gap: 16px;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }

  /* Ensure .faq-right fills full width on <=426px */
  .faq-right {
    display: flex !important;
    width: 100% !important;
    min-width: 395px !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 24px 24px !important;
    align-items: start !important;
    justify-content: center !important;
    margin-left: 110px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 376px) {

  html {
    overflow-x: hidden;
    /* Prevent horizontal scroll at root */
  }

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: 0;
    transform: none;
  }

  /* Hamburger Icon Enabled */
  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    /* Show only on mobile screen */
    z-index: 1100;
  }


  /* Rotated cards mobile fix */
  .rotated-card-left,
  .rotated-card-right {
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    box-sizing: border-box !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Fit the viewport width on small screens */
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1050;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .nav-links.active {
    display: flex;
    /* Show when active */
  }

  .nav-links a {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links a:first-child:not(.active) {
    margin-left: 0;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;

  }

  .nav-links a:nth-child(2) {
    transition-delay: 0.3s;
  }

  .nav-links a:nth-child(3) {
    transition-delay: 0.4s;
  }

  .nav-links a:nth-child(4) {
    transition-delay: 0.5s;
  }

  .nav-links a.active {
    background: transparent;
    color: #BEFF50;
    padding: 0;
    height: fit-content;
  }

  .nav-links a.active::before {
    display: none;
  }

  header .Primary-btn {
    display: none !important;
    /* Hide header button on mobile */
  }

  /* Ensure testimonial image is fluid and keeps right padding on small screens */
  .bottom-testimonials img,
  .right-side-image-testimonials img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding-right: 2px !important;
    box-sizing: border-box !important;
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: -20px;
    width: 100%;
    padding: 0px 20px;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 200px !important;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: start;
    align-items: center;
    padding: 190px 0px 0px 0px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }


  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 10px;
    width: fit-content;
    justify-content: space-between;
    letter-spacing: -2%;
    padding: 8px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
    scale: calc(1);
    width: 100%;
  }

  .expertise img {
    width: 32px;
    height: auto;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 4px 10px 6px 10px;
    border-radius: 100px;
    height: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 44px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 365px;
    max-width: 600px;
    margin: 0px auto;
    margin-top: -10px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img {
    position: relative;
    bottom: -5px;
    margin: 0px 10px;
    width: 58px;
    height: auto;
  }

  .heading-img img {
    width: 58px;
    height: auto;
  }

  .head-para p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 360px;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: 100%;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn .Primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 44px;
    /* Ensure space for the absolute icon if needed */
  }

  .hero-btn .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  .hero-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 20px;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 40px;
    height: auto;
  }

  .developer img {
    width: 80px;
    height: auto;
  }

  .designer {
    position: absolute;
    top: 650px;
    right: 50px;
  }

  .designer img {
    width: 80px;
    height: auto;
  }

  /* Rotated Cards */
  .rotated-card-left {
    transform: rotate(0deg);
    position: absolute;
    top: 730px;
    padding: 28px 24px;
    width: 100%;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;

  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 948px;
    padding: 28px 24px;
    transform: rotate(0deg);
    width: 385px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 90%;
    height: auto;
    padding: 3px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 160px;
    margin: 540px 20px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
    margin-top: 1250px;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    scale: calc(0.7);
    margin-bottom: -20px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 120px;
    margin-bottom: 140px;
    padding: 0px 0px 0px 20px;
  }

  .content-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 20px 0px 0px;
    margin-bottom: 60px;
    margin-top: -10px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    color: #ffffff;
    width: 425px;
    margin-bottom: 20px;
  }

  .testimonials-div {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    justify-content: center;
    position: relative;
  }

  .right-side-image-testimonials {
    width: 100%;
    height: auto;
    padding: 0px 20px 0px 0px;
  }

  .right-side-image-testimonials img {
    width: 100%;
    height: auto;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -4%;
    width: fit-content;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    width: 380px;
    letter-spacing: -2%;
    line-height: 160%;
    text-align: center;
  }

  .bottom-testimonials {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 26px;
  }

  .bottom-testimonials img {
    width: 380px;
  }

  .testimonials-reviews {
    display: flex;
    align-items: start;
    gap: 60px;
    flex-direction: row;
    width: 100%;
    height: 286px;
    border-radius: 24px 0px 0px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    gap: 30px;
    width: 384px !important;
    height: 100%;
  }

  .testimonial-1 img {
    width: 160px !important;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 327px;
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 258px;
  }

  .person-review img {
    width: 50px !important;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    width: fit-content;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    width: fit-content;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .name-testimonial {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
    justify-content: center;
    margin-bottom: -3px;
  }

  .ratings {
    display: flex;
  }

  .ratings img {
    width: 100px !important;
    height: auto;
    margin-top: -9px;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    gap: 32px;
    padding: 0px 20px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 350px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    margin-left: -20px;
    scale: 0.9;
    margin-top: -20px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    gap: 32px;
    padding: 0px 20px 0px 20px;
    width: 100%;
    margin-top: 120px;
  }

  .portfolio-head {
    display: flex;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    margin-right: 17px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 350px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0px 0px 20px 0px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 270px;
    flex-shrink: 0;
  }

  .project-1 img,
  .project-2 img,
  .project-3 img,
  .project-4 img {
    width: 270px;
    height: auto;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    width: fit-content;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: fit-content;
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: none;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Changed from center to allow bi-directional scrolling */
    gap: 20px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: none;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 350px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 350px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 0px;
    scale: calc(0.9);
    flex-wrap: wrap;
    width: 380px;
  }

  .products-logos div img {
    width: 60px;
    height: auto;
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 120px;
    width: 100%;
    padding: 0px 20px;
    padding-right: 0px;
  }

  .how-we-work-heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 350px;
    text-align: center;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbar Styles for How We Work */
  .all-steps::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .all-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 40px;
  }

  .all-steps::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-steps::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 12px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 300px;
    flex-shrink: 0;
    height: 330px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-bottom: 64px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 36px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 350px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    gap: 28px;
    scale: calc(1);
  }

  .Mohsin-Akber {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    height: fit-content;
  }

  .Mohsin-Akber img {
    width: 100%;
    height: auto;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 460px;
    width: 100%;
  }

  .info-founder-1 h4 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    height: fit-content;
  }

  .Ahsan-Akber img {
    width: 100%;
    height: auto;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 460px;
    width: 100%;
  }

  .info-founder-2 h4 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 100%;
    height: fit-content;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 350px;
    text-align: center;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-right: 0px;
    width: 100% !important;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100% !important;
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px) !important;
    gap: 24px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Changed from 592px to fit parent */
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: calc(100% + 40px) !important;
    max-width: calc(100% + 40px) !important;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 40px;
    border-radius: 14px;
    padding: 24px 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
    max-width: 350px !important;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    width: fit-content;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    width: fit-content;
    color: #ffffff;
  }

  .start-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    width: fit-content;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: start;
    justify-content: start;
    margin-top: 120px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    padding: 30px 24px;
    color: #ffffff;
    background-image: url(/assets/mobile-cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 300px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 320px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .header-cta .Primary-btn {
    width: 100%;
    min-height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Ensure space for the absolute icon if needed */
  }

  .header-cta .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  /* Footer */
  .footer {
    width: 100% !important;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;
    justify-content: space-between;
    width: 100% !important;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: auto;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: auto;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 100%;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: fit-content;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-left-bottom .Primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 44px;
    /* Ensure space for the absolute icon if needed */
  }

  .footer-left-bottom .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
    margin: 0px auto;
  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 100%;
    height: auto;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }



  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }

  .terms-privacy {
    display: flex;
    gap: 16px;
  }

  /* Ensure .faq-right fills full width on <=426px */
  .faq-right {
    display: flex !important;
    min-width: 380px !important;
    height: auto !important;
    padding: 24px 24px !important;
    align-items: start !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-right: -107px;
    box-sizing: border-box !important;
  }
}




@media (max-width: 320px) {

  html {
    overflow-x: hidden;
    /* Prevent horizontal scroll at root */
  }

  body {
    background-color: #0c0c0c;
    font-family: "Satoshi", sans-serif;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* Fit 375px screen */
    padding: 0px 20px;
    height: 72px;
    color: #ffffff;
    position: fixed;
    top: 0px;
    z-index: 1000;
    left: 0;
    transform: none;
  }

  /* Hamburger Icon Enabled */
  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    /* Show only on mobile screen */
    z-index: 1100;
  }




  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Changed from 425px to fit screen */
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1050;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .nav-links.active {
    display: flex;
    /* Show when active */
  }

  .nav-links a {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;

  }

  .nav-links a:nth-child(2) {
    transition-delay: 0.3s;
  }

  .nav-links a:nth-child(3) {
    transition-delay: 0.4s;
  }

  .nav-links a:nth-child(4) {
    transition-delay: 0.5s;
  }

  .nav-links a.active {
    background: transparent;
    color: #BEFF50;
    padding: 0;
    height: fit-content;
  }

  .nav-links a.active::before {
    display: none;
  }

  header>.Primary-btn {
    display: none !important;
    /* Hide header button on mobile */
  }



  .Primary-btn:hover {
    box-shadow: 0 0 8px #bfff50a9;
    transition: box-shadow 0.3s linear;
    cursor: pointer;
  }

  /* Hero Section */
  .Hero-Section {
    width: 100%;
    height: 200px;
    background-image: url(/assets/Hero-Bg.png);
    background-size: cover;
    background-repeat: repeat;
    margin-top: 0px;
    align-items: center;
    padding: 170px 0px 0px 0px;
    overflow: visible;
    margin-bottom: 640px;
    /* Add bottom margin instead */
  }

  .hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: -20px;
  }

  .expertise {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 8.9px;
    letter-spacing: -2%;
    padding: 6px 6px;
    margin: 0px 8px;
    width: 300px;
    /* Adjusted for 320px */
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.04);
    color: #ffffff;
    scale: calc(0.9);
  }


  .expertise img {
    width: 34px;
    height: auto;
  }

  .expertise::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-expertise {
    color: #0c0c0c;
    background-color: #beff50;
    padding: 5px 12px 5px 12px;
    border-radius: 100px;
    height: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-size-adjust: 18px;
  }

  .head-para {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    color: #ffffff;
  }

  .head-para h1 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    letter-spacing: -4%;
    width: 280px;
    max-width: 600px;
    margin: 0px auto;
    margin-top: -10px;
  }

  .hero-highlight-txt {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
  }

  .heading-img img {
    position: relative;
    bottom: 0px;


    margin: 0px 10px;
    margin-left: -3px;
    width: 72px;
    height: auto;
  }

  .head-para p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 280px;
  }

  .Secondry-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 44px;
    width: 100%;
    padding: 6px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -2%;
  }

  .Secondry-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .Secondry-btn:hover {
    background-color: #ffffff2a;
    transition: background-color 0.3s linear;
    cursor: pointer;
  }

  .hero-btn .Primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 44px;
    /* Ensure space for the absolute icon if needed */
  }

  .hero-btn .Primary-btn img {
    position: absolute;
    right: 8px;
  }

  .hero-btn {
    display: flex;
    flex-direction: column;
    width: 280px;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  /* Images Developer and Designer */
  .developer {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 40px;
    height: auto;
  }

  .developer img {
    width: 80px;
    height: auto;
  }

  .designer {
    position: absolute;
    top: 460px;
    right: 32px;
  }

  .designer img {
    width: 80px;
    height: auto;
  }

  /* Rotated Cards */
  .rotated-card-left {
    transform: rotate(0deg);
    position: absolute;
    top: 660px;
    left: 20px;
    padding: 28px 24px;
    width: 280px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-left h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-left h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-left p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .rotated-card-right {
    position: absolute;
    top: 868px;
    right: 20px;
    padding: 28px 24px;
    transform: rotate(0deg);
    width: 280px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
    /* border: ; Graident will be applied at border */
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 188px;
    justify-content: center;
  }

  .rotated-card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .rotated-card-right h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .rotated-card-right h4 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -8px;
  }

  .rotated-card-right p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    width: 234px;
  }

  .hero-cards {
    display: flex;
    align-items: top;
  }

  /* Video Area */
  .video-area {
    width: 90%;
    height: auto;
    padding: 6px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-bottom: 160px;
    margin: 540px 20px;
  }

  .video-area video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  /* Video Controls Styling */
  .video-area video::-webkit-media-controls-panel {
    background: rgba(12, 12, 12, 0.329);
    border-radius: 0 0 30px 30px;
  }

  .video-area video::-webkit-media-controls-play-button,
  .video-area video::-webkit-media-controls-pause-button,
  .video-area video::-webkit-media-controls-mute-button,
  .video-area video::-webkit-media-controls-unmute-button,
  .video-area video::-webkit-media-controls-fullscreen-button,
  .video-area video::-webkit-media-controls-timeline,
  .video-area video::-webkit-media-controls-volume-slider,
  .video-area video::-webkit-media-controls-current-time-display,
  .video-area video::-webkit-media-controls-time-remaining-display {
    filter: invert(1) hue-rotate(80deg) saturate(2);
  }

  /* Glow */
  .glow-circle {
    position: absolute;
    top: 760px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.6;
  }

  .glow-circle img {
    width: 100%;
    height: auto;
  }

  /* Projects Preview Section */
  .projects-preview {
    position: relative;
    width: 100%;
    margin-top: 1200px;
  }

  .project-preview {
    width: 100%;
    height: auto;
    display: block;
  }

  .logos {
    position: absolute;
    top: 94%;
    width: 100%;
    padding: 0px 80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    scale: calc(0.6);
    margin-bottom: -20px;
  }

  .logo-top,
  .logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
  }

  /* Testimonials */
  .testimonials {
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 140px;
    padding: 0px 20px;
  }

  .content-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* Fit 375px screen */
    margin-bottom: 60px;
  }

  .right-top-testimonials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: start;
    color: #ffffff;
    width: 100%;
    /* Fit 375px screen */
    margin-bottom: 20px;
  }

  .testimonials-div {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .testimonials-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .right-top-testimonials h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 280px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .content-top p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    width: 280px;
    letter-spacing: -2%;
    line-height: 160%;
    margin-right: 0px;
  }

  .bottom-testimonials {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 26px;
  }

  .bottom-testimonials img {
    width: 280px;
  }

  .testimonials-reviews {
    display: flex;
    align-items: start;
    gap: 0px;
    flex-direction: row;
    /* Removed fixed height: 768px to prevent overflow */
    width: 100%;
    height: 350px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to hidden since height is now auto */
    overflow: scroll;
  }

  /* Hide scrollbar but keep scrolling functionality */
  .testimonials-reviews::-webkit-scrollbar {
    display: none;
  }

  .testimonials-reviews {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-1 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 32px 28px;
    gap: 30px;
    width: 100%;
    height: 100%;
    width: 568px;
  }

  .testimonial-1 img {
    width: 160px;
    height: auto;
  }

  .testimonial-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    /* Push paragraph to bottom of card */
  }

  .name-rating {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .person-review {
    display: flex;
    gap: 14px;
    align-items: center;
    width: 258px;
  }

  .person-review img {
    width: 50px;
    height: 50px;
  }

  .name-testimonial h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    width: 198px;
  }

  .name-testimonial p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    color: rgba(255, 255, 255, 0.5);
  }

  .ratings {
    display: none;
  }

  .glow-circle-2 {
    position: absolute;
    top: 2600px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-2 img {
    width: 100%;
    height: auto;
  }

  /* Capabilities */
  .our-capabilities-heading {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #ffffff;
    gap: 32px;
    padding: 0px 0px 0px 0px;
    width: 100%;
  }

  .capabilities {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: 150px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .capabilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-capabilities-heading h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 280px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;

  }

  .Capabilities {
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* All Services Section */
  .all-services {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    max-height: 460px;
    overflow-x: auto;
    padding-bottom: 40px;
    margin-left: -20px;
    scale: 0.9;
    margin-top: -20px;
    /* Increased space for scrollbar */
  }

  /* Custom Scrollbar Styles */
  .all-services::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .all-services::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 300px;
  }

  .all-services::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-services::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .backend-development,
  .web-development,
  .ui-ux-solution,
  .blockchain-solution,
  .graphic-solution {
    min-width: 380px;
    flex-shrink: 0;
  }

  .backend-development {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .backend-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .backend-development:hover .backend-icon {
    background-image: url(/assets/backend-development-hover.png);
    /* Change background image on hover */
  }

  .backend-development:hover .icon-header h3,
  .backend-development:hover .bottom-info-backend p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .backend-development:hover .backend-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .backend-icon {
    background-image: url(/assets/backend-development.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-backend {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-backend p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .backend-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-backend-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* Web dev */
  .web-development {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .web-development:hover {
    background: #BEFF50;
    /* Highlighting green color */
  }

  .web-development:hover .web-icon {
    background-image: url(/assets/web-dev-hover.png);
    /* Change background image on hover */
  }

  .web-development:hover .icon-header h3,
  .web-development:hover .bottom-info-web p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .web-development:hover .web-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .web-icon {
    background-image: url(/assets/web-dev.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-web {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-web p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .web-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-web-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* blockchain */
  .blockchain-solution {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .blockchain-solution:hover {
    background: #BEFF50;
  }

  .blockchain-solution:hover .blockchain-icon {
    background-image: url(/assets/bloackchain-hover.png);
    /* Change background image on hover */
  }

  .blockchain-solution:hover .icon-header h3,
  .blockchain-solution:hover .bottom-info-blockchain p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .blockchain-solution:hover .blockchain-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .blockchain-icon {
    background-image: url(/assets/blockchain.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-blockchain {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-blockchain p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .blockchain-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-blockchain-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /* UI/UX Design */
  .ui-ux-solution {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .ui-ux-solution:hover {
    background: #BEFF50;
  }

  .ui-ux-solution:hover .ui-ux-icon {
    background-image: url(/assets/ui-ux-hover.png);
    /* Change background image on hover */
  }

  .ui-ux-solution:hover .icon-header h3,
  .ui-ux-solution:hover .bottom-info-ui-ux p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .ui-ux-solution:hover .ui-ux-divs {
    display: flex;
    justify-content: start;
  }

  .icon-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
  }

  .ui-ux-icon {
    background-image: url(/assets/ui-ux.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .icon-header h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .bottom-info-ui-ux {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-ui-ux p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .ui-ux-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-ui-ux-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  /*Graphic Design */
  .graphic-solution {
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 397px;
    /* Changed from max-height to height to fill the space */
    align-items: center;
    justify-content: space-between;
    /* Push content to top and bottom */
    padding: 28px;
    /* Removed gap: 60px */
    border-radius: 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease;
  }

  .graphic-solution:hover {
    background: #BEFF50;
  }

  .graphic-solution:hover .graphic-icon {
    background-image: url(/assets/graphic-design-hover.png);
    /* Change background image on hover */
  }

  .graphic-solution:hover .icon-header h3,
  .graphic-solution:hover .bottom-info-graphic p {
    color: #0c0c0c;
    margin-bottom: 18px;
  }

  .graphic-solution:hover .graphic-divs {
    display: flex;
    justify-content: start;
  }

  .graphic-icon {
    background-image: url(/assets/graphic-design.png);
    /* Updated image name guess, user may correct */
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
  }

  .bottom-info-graphic {
    display: flex;
    flex-direction: column;
    /* Removed gap: 18px */
    height: 162px;
    justify-content: flex-end;
    /* Push paragraph to bottom */
    align-items: flex-start;
    /* Align text to left */
  }

  .bottom-info-graphic p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    transition: color 0.3s ease;
  }

  .graphic-divs {
    display: none;
    /* Hidden by default */
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
  }

  .bottom-info-graphic-bubbles {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px 16px;
    width: fit-content;
    height: 44px;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    background-color: #0c0c0c;
  }

  .glow-circle-3 {
    position: absolute;
    top: 3800px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-3 img {
    width: 100%;
    height: auto;
  }

  /* Portfolio Section Starts Here */
  .our-portfolio-heading {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #ffffff;
    gap: 32px;
    padding: 0px 20px 0px 20px;
    width: 100%;
    margin-top: 160px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    width: 160px;
    padding: 10.8px 16px;
    margin-right: 17px;
    position: relative;
  }

  .portfolio-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .our-portfolio-heading h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 280px;
    text-align: left;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .portfolio {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .projects-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0px 0px 40px 0px;
    /* Added horizontal padding */
  }


  .project-1,
  .project-2,
  .project-3,
  .project-4 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 600px;
    flex-shrink: 0;
  }

  .project-1-info,
  .project-2-info,
  .project-3-info,
  .project-4-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
  }

  .project-1-info h4,
  .project-2-info h4,
  .project-3-info h4,
  .project-4-info h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .project-1-info p,
  .project-2-info p,
  .project-3-info p,
  .project-4-info p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Custom Scrollbar Styles */
  .projects-top::-webkit-scrollbar {
    height: 12px;
    display: block;
    /* Ensure it is displayed */
  }

  .projects-top::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-top::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-top::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .projects-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow bi-directional scrolling */
    gap: 28px;
    margin-bottom: 34px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 0 80px 40px 80px;
    /* Synchronized padding with .projects-top */
  }

  /* Custom Scrollbar Styles for Bottom Slider */
  .projects-bottom::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .projects-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 80px;
  }

  .projects-bottom::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .projects-bottom::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .glow-circle-4 {
    position: absolute;
    top: 4700px;
    left: -40%;
    z-index: -10;
    width: 80%;
    overflow: visible;
    opacity: 0.9;
  }

  .glow-circle-4 img {
    width: 100%;
    height: auto;
  }

  /* Digital Products Section */
  .digital-products {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
  }

  .header-digital {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .digital-heading-products {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .digital-heading-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-digital h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 280px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-digital p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 280px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: -30px;
    scale: calc(0.9);
    flex-wrap: wrap;
    width: 280px;
  }

  .products-logos div img {
    width: 60px;
    height: auto;
  }



  /* How we work section */
  .how-we-work {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 160px;
    width: 100%;
    padding: 0px 20px;
  }

  .how-we-work-heading {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
    color: #ffffff;
    width: 100%;
  }

  .how-we-work-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    width: 160px;
    margin-right: 14px;
    position: relative;
  }

  .how-we-work-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .how-we-work-heading h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    width: 280px;
    text-align: left;
    margin-top: -14px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .all-steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbar Styles for How We Work */
  .all-steps::-webkit-scrollbar {
    height: 12px;
    display: block;
  }

  .all-steps::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-inline: 40px;
  }

  .all-steps::-webkit-scrollbar-thumb {
    background-color: #beff50;
    border-radius: 100px;
    border: 1px solid transparent;
    background-clip: content-box;
    cursor: pointer;
  }

  .all-steps::-webkit-scrollbar-thumb:hover {
    background: #aaff20;
  }

  .step-1 {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 28px 28px 36px 28px;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    width: 300px;
    flex-shrink: 0;
    height: 330px;
    position: relative;
    transition: all 0.3s ease;
  }

  .step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .step-1:hover::before {
    opacity: 1;
  }

  .top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
  }

  .step-1 h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 12px;
  }

  .step-1 p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Our Founder Section */
  .our-founder {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-founder {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .founder-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    height: 44px;
    width: fit-content;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 10.8px 16px;
    position: relative;
  }

  .founder-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
  }

  .header-founder h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 280px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .name-info-founders {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    scale: calc(0.50);
    gap: 28px;
    margin-top: -160px;
    flex-wrap: wrap;
  }

  .Mohsin-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #BEFF50;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-1 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-1 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-1 p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-1 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .Ahsan-Akber {
    display: flex;
    align-items: center;
    gap: 28px;
    height: fit-content;
  }

  .info-founder-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 28px;
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 360px;
    width: 279px;
  }

  .info-founder-2 h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #0c0c0c;
    text-align: left;
    margin-top: -2px;
  }

  .role-social-2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: -10px;
  }

  .role-social-2 p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: #0c0c0c;
  }

  .social-links-2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* FAQ Section */
  .faq-section {
    width: 280px;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .header-faq h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 280px;
    margin-left: -30px;
    text-align: center;
    margin-top: -140px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .faq-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: -60px;
    margin-right: 0px;
    width: 100% !important;
  }

  .faq-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 20px;
    width: 280px !important;
    scale: calc(0.83)
  }

  .open-faq {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 280px;
    gap: 24px;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
  }

  .open-faq::before,
  .faq-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-200deg,
        rgba(190, 255, 80, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 55%);
    border-radius: inherit;
    padding: 2px;
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
  }

  .open-faq img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Changed from 592px to fit parent */
  }

  .faq-item-inner h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
  }

  .faq-answer {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }

  .faq-answer p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
  }

  .closed-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px;
    width: 280px;
    gap: 24px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .closed-faq .faq-answer {
    max-height: 0;
    margin-top: 0;
  }

  .closed-faq img {
    transition: transform 0.3s ease;
  }

  .closed-faq h5 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: -13px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    height: 446px;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    align-items: start;
    justify-content: space-between;
    width: 310px;
    margin-left: 0px;
    position: relative;
  }

  .start-today {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;

    letter-spacing: -2%;
    padding: 8px 16px 8px 12px;
    background-color: #000000;
    border-radius: 100px;
    box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  }

  .start-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .start-content h4 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -4%;
    color: #ffffff;
  }

  .start-content p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
  }

  .final-cta {
    width: 100%;
    height: auto;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;

  }

  .header-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 520px;
    padding-top: 80px;

    border-radius: 40px;
    color: #ffffff;
    background-image: url(/assets/cta.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .header-cta h2 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 280px;
    text-align: center;
    margin-top: -9px;
  }

  .highlighted-yellow {
    color: #beff50;
  }

  .header-cta p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 300px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    width: 100%;
    height: auto;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
    color: #ffffff;
  }

  .left-right-side-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 64px;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-left-side {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: auto;
    height: auto;
  }


  .footer-left-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-logo img {
    width: 152px;
    height: auto;
  }

  .footer-content h1 {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -4%;
    line-height: 120%;
    width: 280px;
    text-align: left;
    margin-top: 48px;
    margin-bottom: 30px;
  }

  .footer-content p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -2%;
    line-height: 160%;
    width: 280px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .light-italic {
    font-style: italic;
    color: #999999;
  }

  .footer-left-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .footer-left-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -2%;
    line-height: 120%;
    width: 604px;
    text-align: left;
  }

  .footer-left-bottom p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0%;
    line-height: 160%;
    width: 462px;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .footer-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: auto;
    height: auto;
  }


  .footer-calender {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;

  }

  .calendar-header {
    color: #ffffff;
  }

  .footer-bottom-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-bottom: 64px;
    margin-top: 26px;
  }


  .calendar-wrapper {
    color: #D4D4D4;
    line-height: 1.5;
    display: flex;
  }

  .calendar-container {
    width: 390px;
    height: 537px;
    background-color: #171717;
    border-radius: 20px;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    margin-top: -30px;
    flex-direction: column;
    scale: calc(0.71);
    margin-left: -50px;

  }

  .calendar-header h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .calendar-header span {
    color: #555;
    font-weight: 400;
  }

  .terms-privacy {
    display: flex;
    gap: 16px;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    border-top: 1px solid #222;
    padding-top: 20px;
  }

  .day-labels-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    grid-column: 1 / -1;
    border-bottom: 1px solid #262626;
    margin-bottom: 8px;
  }

  .day-label {
    color: #FAFAFA;
    font-size: 12px;
    text-align: center;
    padding-bottom: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .day-num {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  /* Accuracy Colors */
  .highlight-green {
    background-color: #BEFF50;
    color: #000;
    font-weight: 700;
    padding: 18px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .highlight-gray {
    background-color: #404040;
    color: #fff;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
  }

  .calendar-footer {
    margin-top: auto;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .selected-date {
    font-size: 18px;
  }

  .toggle-container {
    background-color: #1a1a1a;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #222;
  }

  .toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    color: #666;
    cursor: pointer;
  }

  .toggle-btn.active {
    background-color: #2a2a2a;
    color: #fff;
  }

  .time-button {
    width: 100%;
    background-color: #0F0F0F;
    border: 1px solid #4D4D4D;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .time-button:hover {
    border-color: #444;
  }
}

/* Custom Scroll Behavior Override for Drag-to-Scroll */
.all-services::-webkit-scrollbar,
.projects-top::-webkit-scrollbar,
.projects-bottom::-webkit-scrollbar {
  display: none !important;
}

.all-services,
.projects-top,
.projects-bottom {
  -ms-overflow-style: none !important;
  /* IE 10+ */
  scrollbar-width: none !important;
  /* Firefox */
  cursor: grab;
  overflow-x: auto;
  /* Ensure smooth scrolling when NOT dragging */
  scroll-behavior: smooth;
}

.all-services.active,
.projects-top.active,
.projects-bottom.active {
  cursor: grabbing;
  scroll-behavior: auto !important;
  /* Instant response for drag */
  user-select: none;
  /* Prevent text selection during drag */
}

/* Hide Video Controls Forcefully */
.video-area video::-webkit-media-controls {
  display: none !important;
}

.video-area video::-webkit-media-controls-enclosure {
  display: none !important;
}

.video-area video {
  pointer-events: none;
  /* Disables right-click menu and default touch interactions */
}