* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  background-size: cover;
  color: #fff;
}

/* Navbar */

#navbar {
  display: flex;
  justify-content: space-between;
  height: 70px;
  padding: 10px 30px;
  align-items: center;
  gap: 50px;
  border-radius: 10px;
  background: #030a17b2;
  backdrop-filter: blur(3px);
  margin: 20px 50px;
  position: fixed;
  width: calc(100% - 100px);
  z-index: 100;
}

@media (max-width: 1024px) {
  #navbar {
    width: 50%;
    left: 0;
    align-items: center;
    right: auto;
    padding: 10px 20px;
    margin: 20px auto;
  }
}

#navbar .logo img {
  max-width: 250px;
}

#navbar ul {
  margin-bottom: 0px !important;
}
#navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  font-weight: 700;
  align-items: center;
}

#navbar .nav-links li {
  position: relative;
}

#navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  margin-top: 4px;
  transition: color 0.3s ease, background 0.3s ease;
}

#navbar .nav-links a:hover {
  color: rgba(0, 118, 252);
}

#navbar .nav-links a.active {
  color: rgba(0, 118, 252);
  pointer-events: none;
}

#navbar .nav-buttons {
  display: flex;
  gap: 10px;
}

#navbar .btn.demo {
  width: auto;
  height: auto;
  padding: 8px 20px;
  border-radius: 7px;
  border: none;
  background: rgba(0, 118, 252, 0.8);
  box-shadow: none;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-left: auto;
  font-weight: 700;
}

#navbar .btn.demo:hover {
  background: rgba(0, 118, 252, 1);
}

/* Highlight active link in blue */
#navbar .nav-links a.active {
  color: rgba(0, 118, 252, 1) !important;
  pointer-events: none;
}

/* #navbar .btn.login {
  width: auto;
  height: auto;
  padding: 8px 20px;
  border-radius: 7px;
  border: 2px solid #0075fa;
  background: none;
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  background: linear-gradient(
    94deg,
    rgba(0, 0, 0, 0.8) 1.27%,
    rgba(0, 0, 0, 0.48) 24.08%,
    rgba(0, 0, 0, 0.48) 49.51%,
    rgba(0, 0, 0, 0.54) 74.17%,
    rgba(0, 0, 0, 0.4) 96.69%
  );
  margin-left: 0;
  font-weight: 700;
}

#navbar .btn.login:hover {
  background: #0075fa;
  color: #fff;
} */

/* Hero Section */
#welcome-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0px;
  position: relative;
  background: url('videos/main_page_stars.mp4') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

.thumbnail {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}

.thumbnail img {
  width: 804px;
  height: 688px;
  margin-left: 50px;
  object-fit: cover;
  display: block;
}

#welcome-section .content {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

#welcome-section .content h1 {
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 130px;
  margin-left: 50px;
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#welcome-section .content h1 span {
  color: #38c2ff;
}

#welcome-section .buttons {
  display: flex;
  margin-top: 20px;
  gap: 10px;
  align-items: center;
  margin-left: 60px;
}

#welcome-section .buttons .btn {
  padding: 15px 25px;

  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 10px;
}

#welcome-section .btn.primary {
  background: #0051ff;
  color: #fff;
}

#welcome-section .btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #0051ff;
}

/* Products Section */
#products-section {
  height: 100vh;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.products-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.products-text {
  flex: 1;
  padding-right: 20px;
}

.products-text h2 {
  font-size: 60px;
  color: #222222;
  margin-bottom: 10px;
  font-weight: 700;
}

.products-text .sub-heading {
  font-size: 24px;
  color: black;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: normal !important;
}

.products-text p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: normal !important;
}

.app-buttons img {
  width: 350px;
  margin-right: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.app-buttons img:hover {
  transform: scale(1.1);
}

.products-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-image img {
  width: 632px;
  height: 792px;
  border-radius: 10px;
  margin-top: 150px;
}

/* Media Queries */
@media (max-width: 768px) {
  #navbar {
    flex-wrap: wrap;
  }
}

.hero-image img {
  max-width: 80%;
  margin-top: 20px;
  position: relative;
  right: 0;
  bottom: 0;
}

/* Network Control Center Section */
#network-control-center {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.network-control-center-container {
  position: relative;
  z-index: 2;
  display: flex;
  /* flex-wrap: wrap;
  flex-direction: row; */
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  width: 100%;
  margin-left: -150px;

  gap: 20px;
  color: #fff;
}

.network-control-center-text {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px;
  width: 680px;
  height: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.network-control-center-text h2 {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.network-control-center-text h4 {
  font-size: 24px;
  color: #fff;
  margin: auto;
  font-weight: 700;
}

.network-control-center-text p {
  font-size: 18px;
  line-height: 1.4;
  color: #cfcfcf;
}

.ncc-image img {
  max-width: 100%;
  width: 491px;
  height: 485px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 95px;
}

/* Media Queries */
@media (max-width: 768px) {
  #navbar {
    flex-wrap: wrap;
  }
}

/* Solutions section */
.solutions-section {
  height: 100vh;
  background: white;
  padding: 50px;
}

.solutions-section .content-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.text-content {
  width: 50%;
}

.text-content h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 5px;
  font-weight: 700;
}

.solutions-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.solution-card {
  color: rgb(80, 78, 78);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgb(208, 201, 201);
  width: 413px;
  height: 190px;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.solutions-cards .solution-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  background-color: #030a17;
}

.solutions-default-text {
  display: block;
  transition: opacity 0.3s ease-in-out;
  z-index: 100;
}

.solution-card:hover .solutions-default-text {
  display: none;
}

.card-content .hover-text-solutions p {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  color: white;
  opacity: 1;
  padding: 30px;
  text-align: left;
  transition: opacity 0.3s ease-in-out;
  font-size: 18px;
  font-weight: 400;
}

.solution-card:hover .hover-text-solutions {
  opacity: 1;
  display: block;
}

.hover-text-solutions p {
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.solution-card .card-number {
  position: relative;
  font-size: 100px;
  font-weight: bold;
  color: #007bff;
  margin-left: -50px;
  text-align: left;
  margin-right: 150px;
  margin-top: 180px;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-number-01 {
  left: 60px;
}

.hover-text-solutions1 p {
  margin-top: -30px;
}

.card-number-02 {
  position: absolute;
  top: 20px;
  left: 50px;
}

.hover-text-solutions2 p {
  margin-top: -20px;
}

.card-number-03 {
  position: absolute;
  right: 30px;
  left: 50px;
}

.hover-text-solutions3 p {
  margin-top: -20px;
}

.card-number-04 {
  position: absolute;
  top: 20px;
  left: 50px;
}

.hover-text-solutions4 p {
  margin-top: -20px;
}

.card1-text {
  margin-top: -20px;
}

.card2-text {
  margin-top: -20px;
}

.card3-text {
  margin-top: -20px;
}

.card4-text {
  margin-top: -20px;
}
.solution-card .card-content .card-text {
  font-size: 34px;
  color: rgb(47, 46, 46);
  font-weight: 700;
  text-align: left;
  flex: 1;
  margin-bottom: 100px;
  margin-left: 150px;
  position: relative;
  top: -100px;
}

.solutions-image img {
  width: 500px;
  height: 500px;
  margin-right: 20px;
  margin-top: 80px;
}

.button-container {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}

.explore-button-solutions {
  background-color: white;
  color: black;
  padding: 15px 30px;
  border: 1px solid #0051ff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: -40px;
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .text-content,
  .solutions-cards {
    width: 100%;
  }

  .solutions-cards {
    grid-template-columns: 1fr;
  }
}

/* Confidential Consortium Section */
#consortium {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.consortium-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  color: #fff;
  backdrop-filter: blur(3px);
  margin-top: 90px;
}

.consortium-text {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  width: 50%;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.consortium-text h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  padding: 15px;
}

.consortium-text h4 {
  font-size: 24px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
  padding: 15px;
}

.consortium p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cfcfcf;
  padding: 15px;
}

.consortium-button {
  display: inline-block;
  padding: 15px 40px;
  margin-top: 20px;
  border-radius: 10px;
  background: linear-gradient(
    94.08deg,
    rgba(0, 0, 0, 0.8) 1.27%,
    rgba(0, 0, 0, 0.48) 24.08%,
    rgba(0, 0, 0, 0.48) 49.51%,
    rgba(0, 0, 0, 0.536) 74.17%,
    rgba(0, 0, 0, 0.4) 96.69%
  );
  border: 2px solid;
  border-image-source: linear-gradient(
    266.69deg,
    rgba(0, 117, 250, 0.95) 2.47%,
    rgba(108, 205, 188, 0.95) 50.44%,
    rgba(0, 117, 250, 0.95) 99.58%
  );
  border-image-slice: 1;
  color: white;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  margin-left: 15px;
}

.consortium-button a {
  text-decoration: none;
  color: white;
  text-align: center;
  padding-right: -30px;
}

.consortium-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.consortium-image img {
  width: 560px;
  height: 560px;
  object-fit: cover;
  margin-left: -70px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -50px;
  margin-left: -525px;
  margin-right: 200px;
  margin-bottom: 50px;
}

.icon {
  width: 99px;
  height: 89px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.icon img {
  width: 99px;
  height: 89px;
  object-fit: cover;
}

/* .icon.active,
.icon:hover {
  filter: brightness(1.5) hue-rotate(45deg);
  transform: scale(1.2);
} */

/* Digital Identity section */
.digital-identity-section {
  height: 100vh;
  background: white;
  padding: 50px;
}

.content-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.text-content {
  width: 50%;
  display: block;
}

.text-content h2 {
  font-size: 60px;
  color: black;
  margin-bottom: 5px;
}

.text-content h3 {
  color: black;
  font-size: 34px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 400;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #645e5e;
  padding: 15px 0;
  text-align: justify !important;
  text-justify: inter-word;
  display: block !important;
}

.di-cards {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 45%;
}

.digital-identity-card {
  color: rgb(80, 78, 78);
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgb(208, 201, 201);
  padding: 20px;
  text-align: center;
  width: 320px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.digital-identity-card:hover {
  background-color: #030a17;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}

.card-content.default-text {
  opacity: 1;
}

.digital-identity-card:hover .card-content.default-text {
  opacity: 0;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: left;
  justify-content: left;
  color: white;
  opacity: 0;
  padding: 10px;
  text-align: left;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.digital-identity-card:hover .hover-text {
  opacity: 1;
}

.card-number {
  font-size: 70px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
  text-align: left;
  margin-right: 200px;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card3 {
  margin-left: 30px;
}

.card2 {
  margin-top: 20px;
}

.card4 {
  margin-top: 40px;
}

.card-content.default-text h3 {
  font-size: 24px;
  color: rgba(25, 37, 58, 1);
  font-weight: 700;
  text-align: left;
  flex: 1;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .text-content,
  .di-cards {
    width: 100%;
  }

  .di-cards {
    grid-template-columns: 1fr;
  }
}

/* News Section */
.news-updates {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-right: 30px;
  padding-left: 30px;
}

.hero-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.news-updates .headings {
  text-align: left;
  padding: 50px;
  margin-top: 10px;
  position: relative;
}

.news-updates .headings p {
  color: white;
  font-size: 34px;
  margin-bottom: 20px;
  text-align: left;
}

.news-updates .headings h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: left;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  margin-top: -20px;
  padding: 0px;
}

.scroll-buttons {
  display: flex;
  gap: 23px;
  position: absolute;
  top: 100px;
  right: 30px;
}

.scroll-buttons img {
  cursor: pointer;
}

.article-section {
  display: flex;
  gap: 20px;
  margin-top: -20px;
  overflow-x: auto;
  padding-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.article-section::-webkit-scrollbar {
  display: none;
}

.article-section::-webkit-scrollbar-thumb {
  display: none;
}

.article-card1,
.article-card2,
.article-card3 {
  background-color: rgba(5, 3, 42, 0.7);
  border: 2px solid #0075fa;
  padding: 30px;
  border-radius: 10px;
  width: 611px;
  height: 416px;
  backdrop-filter: blur(1px);
  margin-left: 50px;
  position: relative;
  box-sizing: border-box;
  gap: 15px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-image-slice: 1;
}

.article-card1 {
  margin-right: 5px;
}

.article-card2 {
  margin-left: 5px;
}

.article-card3 {
  margin-left: 7px;
}

.article-card1 h1,
.article-card2 h1,
.article-card3 h1,
.article-card1 h3,
.article-card2 h3,
.article-card3 h3 {
  margin: 30px 0;
  text-align: left;
}

.article-card1 h3,
.article-card2 h3,
.article-card3 h3 {
  font-size: 43px;
  font-weight: 700;
}

.article-card1 p,
.article-card2 p,
.article-card3 p,
.article-card1 h3,
.article-card2 h3,
.article-card3 h3 {
  text-align: left;
  color: white;
}

.article-card1 .date,
.article-card2 .date,
.article-card3 .date {
  position: absolute;
  top: 300px;
  left: 30px;
  margin-top: 50px;
  margin-left: 40px;
  font-weight: 700;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.calendar-image img {
  margin-top: -10px;
}

.calendar-image3 img {
  margin-top: 23px;
}

.news-updates-image {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: right;
  top: 20px;
  right: 20px;
}

.article-card1 p,
.article-card2 p,
.article-card3 p {
  font-size: 20px;
}

.nu1 {
  margin-left: 280px;
  margin-top: -250px;
}

.nu1-asean {
  margin-left: 300px;
  margin-top: -250px;
}

.nu1-zero-trust {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-left: 270px;
  margin-top: -250px;
}

.explore-button {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 20px 64px;
  border: 1px solid #0051ff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 50px;
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .news-section {
    flex-direction: column;
  }

  .news-card1,
  .news-card2 {
    width: 100%;
  }
}

/* Software as a Service section */
.saas {
  height: 100vh;
  background: white;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 0;
}

.saas h1,
.saas h2 {
  text-align: center;
  margin-bottom: 10px;
  margin-left: 30px;
}

.saas h1 {
  font-size: 60px;
  color: #000;
  text-align: left;
  font-weight: 700;
}

.saas h2 {
  font-size: 25px;
  color: #19253a;
  text-align: left;
  margin-bottom: 40px;
  margin-left: 28px;
}

.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.cards::-webkit-scrollbar {
  display: none;
}

.cards::-webkit-scrollbar-thumb {
  display: none;
}

.auth,
.mobile,
.library {
  background-color: #1c1b1b;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 30px;
  width: 611px;
  height: 416px;
  margin-left: 50px;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  border-radius: 10px;
  gap: 15px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.auth {
  margin-left: 30px;
  margin-right: 20px;
}

.mobile {
  margin-left: -5px;
  margin-right: 20px;
}

.library {
  margin-left: -5px;
}

.auth .main-text,
.mobile .main-text,
.library .main-text {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  text-align: left;
  background: linear-gradient(
    90deg,
    #0075fa 0.14%,
    #6dcebc 20.42%,
    #4296cc 41.28%,
    #0075fa 64.03%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  margin-left: -3px;
  padding: 0px;
  z-index: 2;
}

.auth .sub-heading,
.mobile .sub-heading,
.library .sub-heading {
  font-size: 24px;
  line-height: 1.5;
  z-index: 1;
}

.auth .fingerprint-icon {
  position: absolute;
  bottom: 130px;
  right: 30px;
  margin-bottom: -30px;
  margin-top: 50px;
}

.auth .fingerprint-icon img {
  width: 265px;
  height: 265px;
  opacity: 0.5;
}

.mobile .mobile-icon {
  position: absolute;
  bottom: 110px;
  right: 30px;
  margin-bottom: -30px;
}

.mobile .mobile-icon img {
  width: 265px;
  height: 265px;
  opacity: 0.5;
  margin-left: 60px;
}

.library .library-icon {
  position: absolute;
  bottom: 110px;
  right: 30px;
  margin-bottom: -30px;
  z-index: 0;
}

.library .library-icon img {
  width: 265px;
  height: 265px;
  opacity: 0.5;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}

/* As Seen In section */
.as-seen-in {
  background-color: #fff;
  height: auto;
  margin-top: 110px;
  text-align: center;
}

.as-seen-in h3 {
  margin-bottom: 10px;
  color: rgb(47, 46, 46);
  text-align: center;
  font-weight: 700;
}

.as-seen-in img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}

/* As Seen In section */
.as-seen-in {
  background-color: #fff;
  height: auto;
  margin-top: 110px;
  text-align: center;
}

.as-seen-in h3 {
  margin-bottom: 10px;
  color: rgb(47, 46, 46);
  text-align: center;
  font-weight: 700;
}

.as-seen-in img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 50px;
}
/* footer */
.footer {
  background-color: #010114;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-column {
  flex: 1;
  margin: 10px;
}

.footer-column h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}

.footer-column-subscribe {
  margin-top: -50px;
  margin-bottom: 30px;
}

.footer-column.subscribe p {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.footer img {
  max-width: 250px;
  margin-bottom: 30px;
}
.footer p,
.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.footer p {
  line-height: 1.5;
}

.footer a:hover {
  text-decoration: underline;
}

/* .email {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: -30px;
}

.subscribe input[type='email'] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #242a4e;
  color: white;
  flex: 1;
  min-width: 200px;
}

.subscribe input[type='email']::placeholder {
  color: rgb(171, 168, 168);
}

.email button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 30px;
}

.email button img {
  width: 45px;
  height: 45px;
  height: auto;
} */

/* .subscribe button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #ffffff;
  cursor: pointer;
} */

.number {
  font-weight: 400 !important;
}

/* .social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  color: #ffffff;
  font-size: 20px;
}
.copyright {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
} */

/* Media Queries */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }
}
