@font-face {
  font-family: 'sharpGrotesk_7e073a';
  src: url('fonts/51fce307dca5e448-s.p.woff') format('woff'),
       url('fonts/844e3ecfb0f0e613-s.p.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sequelSans_3cca79';
  src: url('fonts/126a6005a72cf4a8-s.p.otf') format('opentype'),
       url('fonts/7c036e745ab8cd4b-s.p.otf') format('opentype'),
       url('fonts/8706564719d242d1-s.p.otf') format('opentype'),
       url('fonts/d73c024609a0af8c-s.p.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'sequelSans_3cca79', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'sharpGrotesk_7e073a', sans-serif;
}

p {
  font-family: 'sequelSans_3cca79', sans-serif;
}

/* Rest of your CSS remains the same */

.fullscreen-bg {
  height: 100vh;
 
  background-image: url("images/hero-test-image.png"); /* Adjust path as needed */
  background-size: cover;      /* Cover the entire area */
  background-position: center; /* Center the image */
  background-repeat: no-repeat;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#bg-video {
  width: 45%;
  height: 85%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 525px;
  z-index: -1;
}

h1 {
  font-size: 125px;
  margin: 0;
  position: relative;
  z-index: 1;
  top: 150px;
}

.glow-under {
  position: absolute;
  bottom: 0px;
  width: 700px;
  height: 110px;
  background: linear-gradient(to top, rgba(0, 119, 255, 0.4), transparent);
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  filter: blur(80px);
  z-index: 0;
}

.white {
  color: white;
}

.gradient {
  background: linear-gradient(to right, #b96ff1, #668cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root {
  --navbar-bg-color: rgba(255, 255, 255, 0.8);
  --navbar-color: #000;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: var(--navbar-color);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  position: relative;
}

.nav-links li {
  font-size: 18px;
  color: var(--navbar-color);
  cursor: pointer;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-links .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--navbar-color);
  transition: all 0.3s ease;
}

.nav-links li:hover ~ .underline,
.nav-links li.active ~ .underline {
  width: 100%;
  left: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--navbar-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--navbar-bg-color);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

.info-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: left;
}

.paragraph {
  font-size: 40px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 50px;
}

/* LINEAR GRADIENT TEXT (Left to right with 3-color stops) */
.linear-gradient-text {
  background: linear-gradient(
    to right,
    #6e54fd,
    #baaefd,
    #fdfdfd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* RADIAL GRADIENT TEXT (Center glow with same 3-color blend) */
.radial-gradient-text {
  background: radial-gradient(
    circle at center,
    #fdfdfd,
    #baaefd,
    #6e54fd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.reverse-linear-gradient-text {
  background: linear-gradient(
    to right,
    #fdfdfd,
    #baaefd,
    #6e54fd
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 100px;
}

.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  text-align: left;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 10px; /* Reduce the horizontal gap */
  max-width: 1200px;
  width: 100%;
}

.item1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-left: -50px; /* Reduce space on the left side */
}

.item1 img {
  width: 120%; /* Make the first image slightly larger */
  height: auto;
  border-radius: 0px; /* Set border-radius to 0px */
  margin-left: -75px;
}

.item2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 95px; /* Shift the vertical image down */
}

.item2 img {
  width: 100%;
  height: auto;
  margin-left: 140px;
  border-radius: 0px;
  margin-top: 110px; /* Set border-radius to 0px */
}

.item3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.item3 img {
  width: 100%;
  height: auto;
  border-radius: 0px; /* Set border-radius to 0px */
  padding-bottom: 75px; /* Set border-radius to 0px */
}

.gradient-background {
  background: linear-gradient(to bottom, #1A171D, #7B6177, #AEBCE7, #ADD1EB, #C3DEEE);
  padding: 20px 20px 0px;
  padding-top: 180px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  height: 100vh; /* Ensure the section takes the full viewport height */
}

.gradient-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px; /* Adjust the height to control the transition area */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
  pointer-events: none; /* Ensure the overlay does not interfere with user interactions */
}

.monthly-active-users {
  font-size: 400px; /* Adjust the font size to match the design */
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 1; /* Ensure the line height is set to 1 for accurate positioning */
  color: #fff; /* Ensure the text color is white */
}

.the-300-text {
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}

.million {
  font-size: 100px; /* Adjust the font size to match the design */
  display: block;
  margin-top: -35px; /* Adjust the margin to position correctly */
  position: relative;
  z-index: 2;
  color: #fff; /* Ensure the text color is white */
}

.monthly-active-users-text {
  font-size: 24px;
  margin-top: 20px; /* Adjust the margin to position correctly */
  font-weight: 400;
  position: relative;
  z-index: 2;
  color: #000; /* Ensure the text color is black */
}

.scroll-animation-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(to bottom, #B4D8EB, #CBE1EE, #D6E6F0, #F4F4F4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-outlet {
  position: absolute;
  width: 150px; /* Adjust the size as needed */
  max-width: 100%; /* Ensure the image does not exceed the container size */
  transition: transform 0.5s ease-in-out;
}

.phone-outlet img {
  width: 100%;
  height: auto;
}

.phone-1 {
  top: 50px;
  left: 20%; /* Adjust the position as needed */
}

.phone-2 {
  top: 200px;
  left: 40%; /* Adjust the position as needed */
}

.phone-3 {
  top: 350px;
  left: 60%; /* Adjust the position as needed */
}

.crafted-with-care-section {
  padding: 100px 20px;
  text-align: center;
  background-color: #F4F4F4;
}

.crafted-with-care {
  font-size: 110px; 
  font-weight: 1 !important;
  margin: 0;
  background: radial-gradient(47.08% 208.33% at 79.71% 128.33%, rgba(237, 125, 255, .8) 11.69%, rgba(108, 84, 255, .8) 35.44%, rgba(0, 0, 0, .8) 70.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'sharpGrotesk_7e073a', sans-serif; /* Ensure the font family matches your design */
}

.crafted-with-care-text {
  font-size: 24px;
  margin-top: 20px;
  color: #333;
  font-family: 'sequelSans_3cca79', sans-serif; /* Ensure the font family matches your design */
}

.discover-products-text {
  font-size: 18px;
  margin-top: 40px;
  color: #333;
  font-family: 'sequelSans_3cca79', sans-serif; /* Ensure the font family matches your design */
  margin-bottom: 200px;
}

.discover-products-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  text-decoration: underline;
}

.discover-products-link:hover {
  text-decoration: underline;
}

.engineering-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  padding-bottom: 100px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 150px;
  background-image: url('/images/fullscreen_engineering.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.text-overlay {
  position: absolute;
  bottom: 0%; /* Adjust this value to position the text towards the bottom */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 3;
}

.text-overlay h2 {
  font-size: 100px;
  line-height: 1.2; /* Adjust line height to control spacing between lines */
  margin: 0;
  font-weight: 1 !important ;
}

.top-text {
  background: radial-gradient(55.61% 122.69% at 80.68% 85%, rgba(80, 177, 219, 0.8) 0%, rgba(192, 159, 245, 0.8) 42.32%, rgba(255, 255, 255, 0.8) 70.24%),
              linear-gradient(0deg, #FFFFFF, #FFFFFF),
              radial-gradient(63.43% 249.11% at 13.11% -17.29%, rgba(153, 0, 0, 0.5) 0%, rgba(173, 0, 0, 0) 100%),
              radial-gradient(52.64% 395.11% at 89.61% 17.08%, rgba(170, 193, 225, 0.5) 15.43%, rgba(97, 139, 171, 0.5) 29.17%, rgba(39, 39, 39, 0.5) 85.72%),
              radial-gradient(78.56% 234.17% at 56.97% -77.92%, #5BC4FF 23.72%, #ACC3E4 51.38%, #000000 71.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 205px;
}

.bottom-text {
  display: block;
  background: radial-gradient(55.61% 122.69% at 80.68% 85%, rgba(80, 177, 219, 0.8) 0%, rgba(192, 159, 245, 0.8) 42.32%, rgba(255, 255, 255, 0.8) 70.24%),
              linear-gradient(0deg, #FFFFFF, #FFFFFF),
              radial-gradient(63.43% 249.11% at 13.11% -17.29%, rgba(153, 0, 0, 0.5) 0%, rgba(173, 0, 0, 0) 100%),
              radial-gradient(52.64% 395.11% at 89.61% 17.08%, rgba(170, 193, 225, 0.5) 15.43%, rgba(97, 139, 171, 0.5) 29.17%, rgba(39, 39, 39, 0.5) 85.72%),
              radial-gradient(78.56% 234.17% at 56.97% -77.92%, #5BC4FF 23.72%, #ACC3E4 51.38%, #000000 71.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 205px;
}

.fifty-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #4B0082 0%, #000 100%);
  z-index: 0;
}

.fifty-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.number {
  font-size: 250px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.text {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #7B6177, #AEBCE7, #ADD1EB, #C3DEEE);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 150px;
  margin: 0;
  background: linear-gradient(to right, #b96ff1, #668cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 40px;
  margin: 20px 0 0;
  background: linear-gradient(to right, #b96ff1, #668cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('hero-background.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  z-index: 0;
}



.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.stat-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: #1e1e1e;
  padding: 20px;
}

.stat-video video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.stat-text {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.stat-text h2 {
  font-size: 60px;
  margin: 0;
}

.stat-text p {
  font-size: 20px;
  margin: 10px 0 0;
}

.learn-more-section {
  padding: 50px 20px;
  text-align: center;
}

.learn-more-section p {
  font-size: 20px;
}

.learn-more-section a {
  color: #6e54fd;
  text-decoration: none;
}

.learn-more-section a:hover {
  text-decoration: underline;
}

/* New CSS  */
.other-section {
  height: 100vh; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc; /* For visual separation */
}

.rotating-images-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #B5D6EC, #e0e0e0, #f4f4f4);
  height: 200vh; /* Increased height to allow scrolling */
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  perspective: 1000px;
}

.image-group {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform-origin: 50% 720%;
  will-change: transform;
}

/* Add more horizontal space to phone 3 */
.rotating-image[alt="Phone 3"] {
  margin-left: 50px; /* Adjust this value as needed */
  margin-right: 50px; /* Adjust this value as needed */
}

/* Add more horizontal space to phone 6 */
.rotating-image[alt="Phone 6"] {
  margin-left: 745px; /* Adjust this value as needed */
  margin-right: 50px; /* Adjust this value as needed */
}

/* Add more horizontal space to phone 9 */
.rotating-image[alt="Phone 9"] {
  margin-left: 1050px; /* Adjust this value as needed */
  margin-right: 50px; /* Adjust this value as needed */
}


.rotating-image {
  /* max-width: 250px; */
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.text-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #333;
}

.title {
  font-size: 48px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.description {
  font-size: 20px;
  margin-bottom: 20px;
}

.link-text {
  font-size: 18px;
}

.link-text a {
  color: #ff6a00;
  text-decoration: none;
}

.link-text a:hover {
  text-decoration: underline;
}


.section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 5rem 2rem;
}

.number-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('images/technologiesIcons.webp');
  background-size: 80%; /* Increased size of the rotating image */
  background-repeat: no-repeat;
  background-position: center;
  animation: scrollLeftToRight 280s ease-in-out infinite; /* Use ease-in-out for smoother animation */
  z-index: 1;
  opacity: 0.7;
}

@keyframes scrollLeftToRight {
  0% {
    background-position-x: 0;
  }
  50% {
    background-position-x: -100%; /* Ensure the image stays within the '50' area */
  }
  100% {
    background-position-x: 0;
  }
}


.number {
  position: relative;
  font-size: 40vw; /* Increased font size */
  font-weight: 900;
  line-height: 0.7;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 2;
  text-shadow: 0 0 20px rgba(75, 0, 130, 0.5);
  letter-spacing: -0.05em; /* Brings digits closer together */
}

.text-container {
  margin-top: 2rem;
}

.tagline {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(90deg, #fff, #a0a0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.scroll-indicator::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}


.bs-ai-hero {
  height: 100vh;
  background: url('/images/homepage_glow_new.webp') no-repeat center center;
  background-color: #F0F0F0;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bs-ai-title {
  font-size: 12rem;
  font-weight: 1 !important;
  background: radial-gradient(51.36% 126.75% at 49.75% 33.5%, rgba(237, 125, 255, .8) 0, rgba(108, 84, 255, .8) 48.96%, rgba(50, 50, 50, .8) 86.98%), linear-gradient(0deg, #3a3d4b, #3a3d4b);
  background-clip: text;
  color: transparent;
  margin: 0;
}

.bs-ai-text{
  padding-top: 350px;
}

.bs-ai-subtitle {
  font-size: 7rem;
  padding-top: 100px;
  font-weight: 1 !important;
  color: #333;
  margin-top: 0.5rem;
}

.bs-ai-gradient-text {
  background: radial-gradient(51.36% 126.75% at 49.75% 33.5%, rgba(237, 125, 255, .8) 0, rgba(108, 84, 255, .8) 48.96%, rgba(50, 50, 50, .8) 86.98%), linear-gradient(0deg, #3a3d4b, #3a3d4b);
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

/* Stats Section Wrapper */
.stats-section {
  background-color: #f4f4f4;
  padding: 64px 16px;
  display: flex;
  justify-content: center;
}

/* Grid Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  max-width: 800px;
  width: 100%;
}

/* Common card styles */
.card {
  width: 396px;
  height: 565px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Card video styles */
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}


/* Overlay styles */
.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: #000;
}

.overlay2 {
  position: absolute;
  top: 0;
  left: -21px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* text-align: center; */
  z-index: 2;
}

.overlay3 {
  position: absolute;
  top: -125px;
  left: -15px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.overlay4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* text-align: center; */
  z-index: 2;
}

/* Individual card styles */
.card-1 .card-background {
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(224, 226, 234) 100%) !important;
  width: 100%;
    height: 100%;
}

.card-1 .overlay {
  color: #fff; /* Text color for Card 1 */
}

.card-2 .card-background {
  background-image: radial-gradient(306.66% 175.97% at 88.57% 175.94%, rgb(181, 220, 230) 19.13%, rgb(50, 57, 104) 37.46%, rgb(9, 11, 23) 81.84%, rgb(33, 33, 33) 100%), linear-gradient(rgba(61, 61, 61, 0.2) 0%, rgba(143, 143, 143, 0.2) 100%) !important; /* Dark background color for Card 2 */
  width: 100%;
    height: 100%;
}

.card-2 .overlay {
  color: #fff; /* Text color for Card 2 */
}

.card-3 .card-background {
  background-image: radial-gradient(306.66% 175.97% at 88.57% 175.94%, rgb(181, 220, 230) 19.13%, rgb(50, 57, 104) 37.46%, rgb(9, 11, 23) 81.84%, rgb(33, 33, 33) 100%), linear-gradient(rgba(61, 61, 61, 0.2) 0%, rgba(143, 143, 143, 0.2) 100%) !important;
  width: 100%;
    height: 100%;
}

.card-3 .overlay {
  color: #000; /* Text color for Card 3 */
}

.card-4 .card-background {
  background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(224, 226, 234) 100%) !important; /* Dark background color for Card 4 */
}

.card-4 .overlay {
  color: #fff; /* Text color for Card 4 */
}

/* Text styling */
.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
    height: auto;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 1.2rem;
  }
}



/* Pre-Footer Section */
.pre-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}
.pre-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.pre-footer-left {
  flex: 1;
  min-width: 300px;
}
.pre-footer-left h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.pre-footer-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.pre-footer-btn:hover {
  background-color: #ddd;
}
.pre-footer-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.pre-footer-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Footer Section */
.custom-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo-section {
  flex: 1;
  min-width: 250px;
}
.footer-logo-section img {
  margin-bottom: 10px;
}
.footer-logo-section p {
  font-size: 1.2rem;
}
.footer-logo-section .maybe {
  opacity: 0.6;
}
.footer-column {
  flex: 1;
  min-width: 150px;
  margin-top: 20px;
}
.footer-heading {
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-column a:hover {
  color: #fff;
}



/* 50 Animation */
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,900');

.wrapper{
  padding:0px 15px;
}
.wrapper div{
  margin-top:-20px;
}
.wrapper div:first-child{
  margin-top:0;
}
.wrapper div span{  
  /* background-repeat: no-repeat; */
  background-position: -17px center;

  display:block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 800px;
  text-transform:uppercase;
  -webkit-transition: all 0.2s ease;
	-moz-transition:    all 0.2s ease;
	-o-transition:      all 0.2s ease;
	-ms-transition:     all 0.2s ease;
	transition:         all 0.2s ease;
}


.wrapper div#cities span{
  background-image: url('https://unsplash.it/300/200?image=411');
}



.wrapper div span:hover{
  cursor:pointer;
  background-position:0px center;  
  -ms-transform: translateX(10px);
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.wrapper div#mountains span:hover{
  background-position:0px -75px;  

}

/* Contact US and Footer */
.contact-section {
  background-color: #000;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(110, 84, 253, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
  z-index: 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-size: 72px;
  margin-bottom: 30px;
  line-height: 1.1;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(to right, #b96ff1, #668cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtext {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-card {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(110, 84, 253, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(110, 84, 253, 0.2), rgba(186, 174, 253, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: #6e54fd;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-form {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: none;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #6e54fd;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -15px;
  font-size: 12px;
  color: #6e54fd;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #6e54fd, #b96ff1);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  box-shadow: 0 10px 20px rgba(110, 84, 253, 0.4);
  transform: translateY(-2px);
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

:root {
  --navbar-color: #fff;
  --footer-bg-color: #111;
  --footer-text-color: #fff;
  --footer-link-color: rgba(255, 255, 255, 0.6);
  --footer-link-hover-color: #6e54fd;
  --footer-social-color: rgba(255, 255, 255, 0.6);
  --footer-social-hover-color: #6e54fd;
}

.site-footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(110, 84, 253, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
  z-index: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 50px;
  text-align: center;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  background: linear-gradient(to right, #b96ff1, #668cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: 18px;
  color: var(--footer-link-color);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--footer-link-hover-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--footer-link-color);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--footer-social-color);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--footer-social-hover-color);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


