* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #0e0c24;
    color: #fff;
  }
  
/* Reuse existing container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Transparent Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(14, 12, 36, 0.4); /* semi-transparent */
  z-index: 10;
}

/* Logo style */
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Navbar menu */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #6c63ff; /* purple */
}

/* Button styles */
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 15px;
  display: inline-block;
}

.btn-yellow {
  background-color: #ffc107;
  color: #000;
}

.btn-dark {
  background-color: #2d2c47;
  color: #fff;
}

/* Video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero overlay content */
.hero-overlay {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 100px; /* push below navbar */
}

.hero-overlay h1, 
.hero-overlay p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.hero-overlay .buttons a {
  margin: 10px;
}

.video-background video {
  filter: blur(8px);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* adjust darkness */
  z-index: 1;
}
  
  .hero {
    background-color: #0e0c24;
    padding: 60px 0;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
  }
  
  .hero-content .text {
    flex: 1;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content h1 .highlight {
    color: #6c63ff;
  }
  
  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .hero-content .buttons .btn {
    margin-right: 10px;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .hero-image img {
    max-width: 100%;
  }
  
  .trusted {
  padding: 40px 20px;
  background-color: #473EAC;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.trusted p {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.trusted .logos {
  display: flex;
  justify-content: space-between; /* spreads logos with equal space between */
  align-items: center;
  flex-wrap: nowrap; /* no wrapping, all logos in one row */
  gap: 20px; /* consistent gap between logos */
  max-width: 1200px; /* optional max width container */
  margin: 0 auto; /* center horizontally */
}

.trusted .logos img {
  max-height: 50px; /* limit logo height for uniformity */
  object-fit: contain;
  flex-shrink: 0; /* prevent shrinking */
}
  
 .swiper {
  padding: 40px 0;
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.swiper-slide.card {
  position: relative;
  z-index: 1;
}

.swiper-slide.card {
  background: #1c1a34;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;

  height: 100%; /* Fill the height of swiper-slide */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 250px; /* Set a consistent card height */
}


.swiper-slide.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.swiper-slide.card p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.swiper-slide.card small {
  font-size: 0.95rem;
  color: #aaa;
}


  .why-choose-us {
    padding: 60px 60px;
    background-color: #0f172a;
    color: white;
    margin: auto;
  }
  
  .why-choose-us h2 {
    font-size: 28px;
    margin-bottom: 40px;
    border-left: 5px solid #6366f1;
    padding-left: 10px;
  }
  
  .choose-row {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  
  
  .choose-img img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
  }
  
  .choose-content {
    flex: 1;
    min-width: 280px;
  }
  
  .choose-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .choose-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #cbd5e1;
  }
  
  .choose-content button {
    background-color: #6366f1;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
  }

  .about-nusa-tech{
    background-color: #0f172a;
    text-align: center;
    padding: 60px 20px;
  }

  .about-nusa-tech h2{
    font-size: 32px;
    margin-bottom: 10px;
  }

  .about-nusa{
    margin-top: 60px;
  }

  
  .pricing-plans {
    background-color: #473EAC;
    text-align: center;
    padding: 60px 20px;
  }
  
  .pricing-plans h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .pricing-plans p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .pricing-card {
    background-color: #2D1E6B;
    padding: 20px 30px;
    border-radius: 10px;
    width: 250px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .pricing-card h2{
    font-size: 22px;
    margin-bottom: 20px;
  }

  .pricing-card p{
    font-size: 16px;
    margin-bottom: 20px;
    color: #473EAC;
  }

  .pricing-card ul{
    font-size: 12px;
    margin-bottom: 10px;
  }
  .btn-book-now{
    background-color: #473EAC;
    color: white;
  }
  
  .stand-out-section {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  }
  .CEO-Section {
    text-align: left;
    padding: 0 40px;
  }
  
  
  .footer {
    background-color: #1f1f1f;
    padding: 40px 40px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    gap: 20px;
  }
  
  .footer-col {
    margin-top: 50px;
    flex: 1 1 100px;
  }
  
  .footer-col h4 {
    color: #473EAC;
    margin-bottom: 15px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col.about {
    flex: 2;
  }
  
  .footer-col.about p em {
    font-style: italic;
  }
  
  .icon {
    margin-right: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid #555;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer-bottom a {
    color: #ccc;
    text-decoration: none;
  }
  
  /* Add to style.css */
/* About Page Styles */
.about-container {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    color: #00FFFF;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* Dark section background */
.contact-hero {
  padding: 100px 20px;
  background-color: #0e0c24;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form card container */
.contact-wrapper {
  max-width: 600px;
  width: 100%;
  background-color: #1a1830;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  text-align: center;
}

/* Heading styling */
.contact-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

/* Inputs, selects, and textarea styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #3b3972;
  border-radius: 8px;
  background-color: #2a2749;
  color: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3d1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button with brand gradient */
.btn.btn-purple {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #473EAC, #6366f1);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}




@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
  
.services-section {
  margin-top: 120px; /* or whatever your header's height is */
  text-align: center;
}


.services-section .container {
  max-width: 1000px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Increase min-width from 320px to 400px */
  gap: 50px; /* More space between cards */
  padding: 0 10px;
}

.service-card {
  background-color: #1a1833;
  border-left: 6px solid #473EAC;
  border-radius: 16px;
  padding: 50px 40px; /* More padding inside */
  box-shadow: 0 8px 30px rgba(71, 62, 172, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(71, 62, 172, 0.3);
  cursor: pointer; /* optional: shows pointer on hover */
}

.service-card h3 {
  font-size: 2rem; /* Larger heading */
  color: #ffffff;
  margin-bottom: 25px;
}

.service-card p {
  font-size: 1.1rem; /* Slightly bigger paragraph */
  color: #d1d5db;
  line-height: 1.8;
}


.about-section {
  min-height: 60vh;
  background-color: #0e0c24;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}
 .about-paragraph {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #d1d5db;
}

.about-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin: 50px 0 20px;
  color: #473EAC;
}

.about-text-block {
  text-align: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
  display: inline-block;
}

.about-list-item {
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

/* Custom bullet */
.about-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #473EAC;
  font-weight: 700;
  font-size: 1.2rem;
  top: 2px;
}

/* Responsive */
@media (max-width: 600px) {
  .about-title {
    font-size: 2.4rem;
  }

  .about-subtitle {
    font-size: 1.6rem;
  }

  .about-list {
    max-width: 100%;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.project-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-video-card video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  filter: blur(5px);
}

.project-video-card:hover video {
  transform: scale(1.05);
}

.project-video-card .overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  width: 100%;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.OurWorks{
  text-align: center;
}

.challenge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.challenge-pair {
  flex: 1 1 45%; /* About half width per pair */
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  min-width: 280px; /* Prevent shrinking too small */
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 250px; /* Or whatever height you want */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* To put text at the bottom */
  color: white;
  padding: 1rem;
  box-sizing: border-box;
  background: black; /* fallback */
}

.card video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card p,
.card small {
  position: relative; /* To be above video */
  z-index: 1;
  margin: 0;
}

.card p {
  font-weight: bold;
  font-size: 1.2rem;
}

.card small {
  font-size: 0.9rem;
  opacity: 0.85;
}


.slider-videos {
    padding: 60px 60px;
    background-color: #0f172a;
    color: white;

  }

.section-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2); /* light line */
  margin: 3rem auto;
  width: 80%;
  z-index: 2;
  position: relative;
}

.section-heading {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

