* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Poppins', sans-serif; */
  font-family: Helvetica, sans-serif;
  overflow-x: hidden;
}

.top-container {
  width: 100%;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header {
  width: 100%;
  padding: 0 40px;
}

.main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 15vh;
  max-width: 1400px;
  margin: 0 auto;
  /* border: 1px solid red; */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 65px;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.header-left img {
  height: 45px;
  width: auto;
}

.nav {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav:hover {
  color: #2563eb;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-right img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.nav-line {
  color: #333;
  font-size: 20px;
}

.get-started {
  color: #5e7ef4;
  font-weight: 400;
}

.header-right button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 7px 15px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  /* font-family: 'Poppins', sans-serif; */
}

.header-right button:hover {
  background: #1d4ed8;
}

/* Responsive Design */

@media (max-width: 1158px) {
  .header-left {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .main {
    justify-content: space-between;
  }


  .menu-icon {
    display: block;
  }


  .pc-comp,
  .gaming-gear,
  .content {
    display: none;
  }

  .nav-line,
  .get-started,
  .header-right button {
    display: none;
  }

  .header-right {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #5e7ef4;
  }

  .pc-comp,
  .gaming-gear,
  .content {
    display: none;
  }

  .header {
    padding: 0 20px;
  }

  .header-left {
    gap: 15px;
  }

  .header-right {
    gap: 15px;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  background: #e5e5e5;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: 45% 55%;
  width: 100%;
  min-height: calc(100vh - 80px);
}

/* Left Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 100px;
  background: #f5f5f7;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.65;
  color: #000;
  margin-bottom: 50px;
  max-width: 600px;
  font-weight: 400;
}

.cta-button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}


.hero-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  width: 100%;
  height: 100%;
}

.hero-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    order: 1;
    padding: 60px 40px;
  }

  .hero-mockup {
    order: 2;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .cta-button {
    padding: 14px 35px;
    font-size: 16px;
  }

  .hero-mockup {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 15px;
  }
}

.video-section {
  background: #f5f5f7;
  /* padding: 100px 40px 150px 40px; */
  padding: 100px;
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 60px;
  align-items: center;
}

/* Left - Video - Made larger to "pop out" */
.video-wrapper {
  position: relative;
  width: 110%;
  padding-bottom: 61.875%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  margin-left: -5%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* Right - Content */
.video-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 10px;
}

.video-content p {
  font-size: 21px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  padding: 10px;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
  white-space: nowrap;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .video-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .video-section {
    padding: 80px 30px 120px 30px;
  }

  .video-content h2 {
    font-size: 42px;
  }

  .video-content p {
    font-size: 18px;
  }

  .button-group {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 30px 100px 30px;
  }

  .video-container {
    gap: 40px;
  }

  .video-content h2 {
    font-size: 36px;
  }

  .video-content p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 40px 20px 80px 20px;
  }

  .video-content h2 {
    font-size: 28px;
  }

  .video-content p {
    font-size: 16px;
  }
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding-top: 40px;
}

.service {
  padding-left: 1rem;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}


.icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #111;
}

p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.apex-section {
  padding: 15rem 0;
  background-color: #fff;
}

.apex-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  /* border: 1px solid red; */
  margin-bottom: -5rem;
}

@media (max-width: 900px) {
  .apex-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: -2rem;
  }

  .stat-box {
    width: 90%;
    margin-right: 0;
    margin-left: 3rem;
  }
}



.apex-title {
  font-size: 3rem;
  font-weight: bold;
  color: #111;
}

.apex-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.stat-box {
  height: 20vh;
  min-width: 400px;
  width: 400px;
  margin-right: 50px;
  border: 2px solid rgb(68, 179, 216);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 1rem 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: blue;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1.2rem;
  color: black;
}

.gradient-box {
  background: linear-gradient(90deg, #0066ff 0%, #00d4ff 100%);
  min-width: 400px;
  height: 150px;
  width: 85vw;
  border-radius: 20px;
  margin: auto;
  padding: 0 1rem;
}

.apex-note {
  text-align: left;
  font-size: 0.8rem;
  color: #000;
  margin-top: 1rem;
  margin-left: 100px;
}

.card-up img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-up {
  margin-top: -70px;
  width: 100%;
  margin: auto;
  /* margin-bottom: 5rem; */
}

.section {
  margin-top: 10rem;
}

.serve-section {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
  padding: 5rem;
}

.serve-content {
  padding: 40px;
}

.serve-label {
  color: #e91e63;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.serve-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 30px;
}

.serve-description {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
}

.serve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serve-list li {
  font-size: 18px;
  color: #000;
  padding-left: 30px;
  position: relative;
}

.serve-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 28px;
  color: #000;
  line-height: 0.8;
}

.serve-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.serve-mockup img {
  border-radius: 30px;
}

.mockup-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

@media (max-width: 1024px) {
  .serve-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .serve-title {
    font-size: 42px;
  }

  .serve-mockup {
    order: -1;
  }
}

@media (max-width: 768px) {
  body {
    padding: 60px 20px;
  }

  .serve-content {
    padding: 20px;
  }

  .serve-title {
    font-size: 36px;
  }

  .serve-description {
    font-size: 18px;
  }

  .serve-list li {
    font-size: 16px;
  }

  .serve-mockup {
    padding: 20px;
  }

  .mockup-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .serve-title {
    font-size: 32px;
  }

  .serve-label {
    font-size: 16px;
  }

  .serve-description {
    font-size: 17px;
  }

  .serve-list li {
    font-size: 15px;
    padding-left: 25px;
  }

}

.logo-slider-section {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 5rem;
}

.logo-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeInSlide 2s ease-out forwards;
}

.logo-item:nth-child(1) {
  animation-delay: 0s;
}

.logo-item:nth-child(2) {
  animation-delay: 2s;
}

.logo-item:nth-child(3) {
  animation-delay: 4s;
}

.logo-item:nth-child(4) {
  animation-delay: 6s;
}

.logo-item:nth-child(5) {
  animation-delay: 8s;
}

.logo-item:nth-child(6) {
  animation-delay: 10s;
}

.logo-item:nth-child(7) {
  animation-delay: 12s;
}

.logo-item:nth-child(8) {
  animation-delay: 14s;
}

.logo-item:nth-child(9) {
  animation-delay: 16s;
}

.logo-item:nth-child(10) {
  animation-delay: 18s;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


@media (max-width: 1024px) {
  .logo-track {
    gap: 60px;
  }

  .logo-item {
    width: 150px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .logo-slider-section {
    padding: 40px 0;
  }

  .logo-track {
    gap: 40px;
  }

  .logo-item {
    width: 120px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo-track {
    gap: 30px;
  }

  .logo-item {
    width: 100px;
    height: 50px;
  }
}

.cards-up img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cards-up {
  margin-top: -70px;
  width: 100%;
  margin: auto;
  margin-bottom: 8rem;
  
}

.footer {
  background: #0033a0;
  padding: 60px 40px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header Section */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.footer-search {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 8px 20px;
  width: 350px;
}

.footer-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #333;
}

.footer-search input::placeholder {
  color: #999;
}

.footer-search button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: white;
  color: #0033a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  background: #e0e0e0;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.7;
}

.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.privacy-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-checkbox label {
  font-size: 13px;
  cursor: pointer;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.footer-legal-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: white;
  text-decoration: underline;
  font-size: 12px;
}

.footer-legal-links a:hover {
  opacity: 0.7;
}

.footer-legal-links span {
  color: white;
  font-size: 12px;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer-search {
    width: 280px;
  }
}

@media (max-width: 880px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-header {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .footer-search {
    width: 100%;
  }

  .social-links {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 748px) {
  .footer {
    padding: 40px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-header {
    margin-bottom: 40px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}