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

body {
  background: white;
  background-size: cover;
  color: black;
}

/* 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 .nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  font-weight: 700;
}

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

#navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 20px;
  margin-top: 10px;

  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);
}

/* Hero Section */
.hero2 {
  position: relative;
  width: 100%;
  height: 50vh; /* Occupies 50% of the viewport height */
  overflow: hidden;
}

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

.text-content {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  color: white;
}

.text-content h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  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;
  text-align: left;
  margin-left: 30px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
  margin-left: 30px;
}

/* Welcome Section */
.welcome2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding: 20px;
  text-align: center;
}

.welcome2 .line1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  margin-left: -900px;
}

.welcome2 p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: black;
  text-align: left;
  margin-left: 700px;
  margin-top: -100px;
}

/* Certifications Section */
.certification {
  text-align: left;
  margin-top: -130px;
}

.certification h1 {
  margin-top: 230px;
  margin-left: 50px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 50px;
}

.certification h2 {
  margin-left: 55px;
}

/* Features Container */
.features {
  display: flex;
  margin-top: 60px;
  gap: 20px;
  margin-left: 50px;
  margin-bottom: 100px;
}

/* Feature Box */
.feature-box {
  position: relative;
  background-color: white;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 25px 35px;
  width: 420px;
  height: 320px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Static Content */
.box-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.feature-box:hover .box-static {
  opacity: 0;
}

/* Hover Content */
.box-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #19253a;
  color: #ffffff;
  font-size: 24px;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.box-hover p {
  font-size: 24px;
}

.feature-box:hover .box-hover {
  opacity: 1;
}

/* Image Styling */
.feature-box img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.feature-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: -1px;
  text-align: left;
}

.feature-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Button Styling */
.box-hover button {
  margin-top: 15px;
  padding: 24px 64px;
  background-color: #19253a;
  color: #ffffff;
  border: 2px solid transparent;
  border-image-source: linear-gradient(
    180deg,
    #0070e2 0%,
    #68c7be 30%,
    #147fec 73.5%,
    #0b7ef3 100%
  );
  border-image-slice: 1;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.box-hover p {
  color: white;
  font-size: 12px;
  text-align: left;
}

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

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

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

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

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

.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(10px);
  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: 30px;
  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: 0px;
  font-weight: 700;
  color: #0076fc;
  font-size: 20px;
  text-decoration: underline;
}

.news-section-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: -100px;
  width: 220px;
  height: 220px;
}

.nu1-asean {
  margin-left: 300px;
  margin-top: -200px;
  width: 220px;
  height: 220px;
}

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

.view-button {
  background-color: transparent;
  color: white;
  padding: 20px 64px;
  border: 1px solid #0051ff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 3px;
  margin-bottom: 60px;
  margin-left: 50px;
}

/* In The News section */
.in-the-news {
  height: auto;
  min-height: 100vh;
  background: white;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 0;
}

.in-the-news h1,
.in-the-news h3 {
  text-align: center;
  margin-bottom: 10px;
  margin-left: 30px;
}

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

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

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

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

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

.privacy,
.counterfeit,
.data-security {
  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;
}

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

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

.data-security {
  margin-left: -5px;
}

.privacy .privacy-heading,
.counterfeit .counterfeit-heading,
.data-security .data-security-heading {
  font-size: 2rem;
  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;
  padding: 0px;
  z-index: 2;
}

.privacy-text,
.counterfeit-text,
.data-security-text {
  font-size: 18px;
  line-height: 1.5;
  z-index: 1;
}

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

.privacy .fingerprint-icon img {
  width: 150px;
  height: 150px;
  opacity: 0.5;
}

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

.counterfeit .fingerprint-icon img {
  width: 150px;
  height: 150px;
  opacity: 0.5;
}

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

.data-security .fingerprint-icon img {
  width: 150px;
  height: 150px;
  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;
  }
}

/* footer */
.footer {
  background-color: #010114;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 100px;
}
.footer-column {
  flex: 1;
  margin: 10px;
}

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

.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 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;
}

.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;
  }
}

#navbar ul {
  margin-bottom: 0px !important;
}
