
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #0d0d0d;
      color: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }


    /* Popup basic style */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 1s ease forwards;
}

/* Popup inner content */
.popup-content {
  position: relative;
  background: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 10px;
  max-width: 90%; /* Naya: container max width */
  max-height: 90%; /* Naya: container max height */
  overflow: auto;
  animation: scaleUp 0.5s ease forwards;
}

/* Image inside popup */
.popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

/* Fade in animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Scale up animation */
@keyframes scaleUp {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* Navbar Styles */
.navbar {
  background: #000; /* Black background */
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden; /* Ensures bubbles don't overflow the container */
}

/* Logo Styles */
.logo img {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Nav Links Styles */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2; /* Ensure nav links stay on top */
}

/* Hover Effect for Nav Links */
.nav-links > li {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Hover effect for text */
.nav-links > li > a {
  font-weight: 500;
  color: #fff;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Bubble Effect */
.nav-links > li:hover > a {
  color: #00D8FF;
  transform: scale(1.1);
}

.nav-links > li:hover > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #00D8FF;
  border-radius: 50%;
  animation: bubble 1s ease-out infinite;
}

/* Bubble animation */
@keyframes bubble {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 30px;
    height: 30px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
}

/* Dropdown Styles */
.nav-links li:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #001f3f;
  padding: 0.5rem 0;
  border-radius: 6px;
  min-width: 200px;
  z-index: 1000;
}

.dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ccc;
}

.dropdown a:hover {
  background-color: #003366;
  color: #00D8FF;
}

/* For Mobile View */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #001f3f;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 220px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Dropdown Fix */
  .nav-links > li .dropdown {
    position: relative;
  }
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* Contact Button */
.contact-btn {
  padding: 0.4rem 0.8rem;
  border: 1px solid #00D8FF;
  border-radius: 4px;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  background-color: #00D8FF;
  color: #000;
}

/* Add bubble effect to the entire navbar */
.navbar:hover::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #00D8FF;
  border-radius: 50%;
  animation: bubble 1s ease-out infinite;
}









    .slider {
  background-color: #000000;
  padding: 3rem 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.slider .slide {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  max-width: 800px;
  margin: auto;
}

.slider .slide.active {
  display: block;
  opacity: 1;
}

.slider h2 {
  font-size: 2rem;
  color: #00D8FF;
  margin-bottom: 1rem;
}

.slider p {
  color: #ccc;
  font-size: 1.1rem;
}

    .section-title {
      text-align: center;
      font-size: 1.8rem;
      margin: 3rem 0 1rem;
      color: #00D8FF;
    }



    .slider-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #00D8FF;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.slider-button:hover {
  background-color: #00cce0;
}



    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 0 2rem 3rem;
    }

    .card {
      background-color: #1c1c1c;
      border: 1px solid #00D8FF;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 255, 209, 0.2);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-title {
      padding: 1rem;
      font-weight: bold;
      color: #00D8FF;
    }



    .industries-section {
  background-color: #000;
  padding: 4rem 2rem;
  color: white;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.industries-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-box {
  display: flex;
  align-items: center;
  background: #0d0d0d;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  gap: 1rem;
  transition: all 0.3s ease;
}

.industry-box:hover {
  border-color: #00D8FF;
  transform: scale(1.02);
}

.industry-box img {
  width: 40px;
  height: 40px;
}

.industry-box span {
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  text-align: left;
}

.talk-business-btn {
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  background-color: #00D8FF;
  color: black;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00bcd4;
}



    body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.achievements-section {
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  gap: 40px;
}

.achievements-text {
  flex: 1;
  min-width: 300px;
}

.achievements-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.achievements-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #aaa;
}

.btn {
  background: #00c7b7;
  padding: 12px 20px;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

.achievements-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 1;
  justify-content: space-between;
}

.stat-box h4 {
  color: #00c7b7;
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box p {
  color: #fff;
  font-size: 14px;
}

.leadership-section {
  text-align: center;
  padding: 60px 20px;
}

.leadership-section h3 {
  font-size: 30px;
  margin-bottom: 40px;
}

.leadership-slider {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.leader {
  max-width: 250px;
  text-align: center;
}

.leader img {
  width: 100%;
  border-radius: 10px;
}

.leader h4 {
  margin-top: 15px;
  font-size: 20px;
}

.leader h4 span {
  color: #00c7b7;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #000;
  padding: 60px 20px;
}

.form-container {
  flex: 1;
  min-width: 300px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-container input,
.form-container textarea,
.form-container select {
  padding: 10px;
  border-radius: 5px;
  border: none;
}

.form-container button {
  background: #00c7b7;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.info-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 280px;
}

.info-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

.info-box h4 {
  color: #00c7b7;
  margin-bottom: 10px;
}

.learn-btn {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .achievements-stats,
  .leadership-slider,
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
}




/* === SECTION BASE === */
.services-section {
  background: #000000;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* === GRID LAYOUT === */
.services-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* === SIDEBAR MENU === */
.services-menu {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.services-menu button {
  padding: 14px 20px;
  border: none;
  border-radius: 40px;
  background: #ffffff;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px #ddd;
  color: #333;
  white-space: nowrap;
}

.services-menu button.active,
.services-menu button:hover {
  background: #0057ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
}

/* === MAIN CONTENT === */
.services-content {
  flex: 2.5;
  min-width: 300px;
}

.services-content h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
}

.services-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
}

/* === SERVICE CARDS === */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #030303;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 87, 255, 0.1);
}

.card h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

.card p {
  color: #666;
  font-size: 14px;
}

/* === VIEW MORE BUTTON === */
.view-more {
  margin-top: 30px;
}

.view-more a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #0057ff;
  background: white;
  color: #0057ff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-more a:hover {
  background: #0057ff;
  color: white;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .services-grid {
    flex-direction: column;
  }

  .services-menu {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: #0057ff #eee;
  }

  .services-menu::-webkit-scrollbar {
    height: 6px;
  }

  .services-menu::-webkit-scrollbar-thumb {
    background: #0057ff;
    border-radius: 10px;
  }

  .services-menu button {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
    padding: 12px 18px;
    min-width: max-content;
  }

  .services-content h2 {
    font-size: 22px;
  }

  .services-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-menu {
    gap: 8px;
  }

  .services-menu button {
    font-size: 13px;
    padding: 10px 16px;
  }

  .view-more {
    text-align: center;
  }
}


/* === LAYOUT BASE === */
.service-layout-2 {
  background: #040505;
  padding: 60px 20px 70px;
}

.layout-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 30px; /* added to push content below buttons cleanly */
}

/* === SIDEBAR MENU === */
.sidebar-menu {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.sidebar-menu button {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-menu button span {
  font-size: 18px;
}

.sidebar-menu button:hover,
.sidebar-menu button.active {
  background: #0047ff;
  color: white;
  border-color: #0047ff;
  box-shadow: 0 5px 15px rgba(0, 71, 255, 0.2);
}

/* === MAIN CONTENT === */
.layout-content {
  flex: 2;
  min-width: 300px;
}

.layout-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #ffffff;
}

.layout-content p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* === CARD AREA === */
.card-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 87, 255, 0.15);
}

.service-card h4 {
  margin-bottom: 8px;
  font-size: 17px;
  color: #222;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* === VIEW MORE BUTTON === */
.view-btn {
  margin-top: 35px;
  text-align: left;
}

.view-btn a {
  display: inline-block;
  background: white;
  border: 1px solid #0047ff;
  color: #0047ff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.view-btn a:hover {
  background: #0047ff;
  color: white;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1024px) {
  .layout-content h2 {
    font-size: 24px;
  }

  .card-area {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .layout-grid {
    flex-direction: column;
    gap: 30px;
  }

  .sidebar-menu {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    margin-top: 0;
    scrollbar-width: thin;
    scrollbar-color: #0047ff #eee;
  }

  .sidebar-menu::-webkit-scrollbar {
    height: 6px;
  }

  .sidebar-menu::-webkit-scrollbar-thumb {
    background: #0047ff;
    border-radius: 10px;
  }

  .sidebar-menu button {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 14px;
    padding: 12px 18px;
  }

  .layout-content h2 {
    font-size: 21px;
  }

  .layout-content p {
    font-size: 14px;
  }

  .view-btn {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 18px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  .view-btn a {
    padding: 9px 16px;
    font-size: 14px;
  }

  .layout-content h2 {
    font-size: 20px;
  }

  .layout-content p {
    font-size: 13.5px;
  }
}


/* === LIFECYCLE SECTION === */
.lifecycle-section {
  background-color: #000000;
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.lifecycle-section h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #ffffff;
}

/* === FLOW WRAPPER === */
.lifecycle-flow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #00aaff #222;
}

.lifecycle-flow::-webkit-scrollbar {
  height: 6px;
}
.lifecycle-flow::-webkit-scrollbar-thumb {
  background-color: #00aaff;
  border-radius: 4px;
}

/* === STEP CARD === */
.step-card {
  flex: 0 0 auto;
  background: #ffffff;
  color: #111;
  border-radius: 18px;
  padding: 24px 16px;
  width: 180px;
  min-height: 140px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 170, 255, 0.25);
}

.step-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #00aaff;
}

/* === CURVE ARROW === */
.curve-arrow {
  flex: 0 0 auto;
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curve-arrow svg path {
  stroke: #00aaff;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5, 4;
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 992px) {
  .lifecycle-section h2 {
    font-size: 2rem;
  }

  .step-card {
    width: 160px;
    padding: 20px 14px;
  }

  .step-card .icon {
    font-size: 26px;
  }

  .curve-arrow {
    width: 50px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .lifecycle-section {
    padding: 60px 15px 50px;
  }

  .lifecycle-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .step-card {
    width: 140px;
    padding: 18px 12px;
    font-size: 14px;
  }

  .step-card .icon {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .curve-arrow {
    width: 40px;
    height: 25px;
  }
}


.service-layout-dark {
  background: linear-gradient(135deg, #01064b, #022847, #013750);
  padding: 60px 20px;
  color: #fff;
}

.layout-grid-dark {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 0;
}

.sidebar-dark {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-dark button {
  background: #111;
  border: 1px solid #333;
  padding: 14px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-dark button:hover,
.sidebar-dark button.active {
  background: #0047ff;
  color: #fff;
  border-color: #0047ff;
}

.content-dark {
  flex: 2;
  min-width: 300px;
}

.content-dark h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #fff;
}

.content-dark p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #ccc;
}

.cards-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 10px 30px 10px 10px;

  gap: 20px;
}

.service-card-dark {
  background: #111;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.service-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 71, 255, 0.3);
}

.service-card-dark h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card-dark p {
  color: #aaa;
  font-size: 14px;
}

.read-more-btn {
  margin-top: 30px;
}

.read-more-btn a {
  display: inline-block;
  background: transparent;
  border: 1px solid #0047ff;
  color: #0047ff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.read-more-btn a:hover {
  background: #0047ff;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .layout-grid-dark {
    gap: 30px;
  }

  .sidebar-dark {
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 10px;
  }

  .sidebar-dark button {
    white-space: nowrap;
    flex: none;
  }

  .content-dark h2 {
    font-size: 22px;
  }

  .content-dark p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .service-card-dark {
    padding: 16px;
  }

  .read-more-btn a {
    padding: 8px 16px;
    font-size: 14px;
  }
}



.why-work-section {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.why-work-container {
  max-width: 1200px;
  margin: auto;
}

.why-work-container h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.why-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  color: #ffffff;
}

.why-card h4 span {
  background: #007aff;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
  float: right;
}

.why-card p {
  font-size: 0.95rem;
  color: #cccccc;
}


.project-section {
  background-color: #000000;
  padding: 50px 20px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.project-left {
  flex: 1 1 45%;
  border-radius: 10px;
  min-height: 300px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Example image inside if needed */
.project-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.project-right {
  flex: 1 1 50%;
}

.message-box {
  background-color: #000000;
  color: #fff4f4;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.message-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.message-box h2 span {
  font-weight: 600;
}

.message-box p {
  color: #ffffff;
  font-size: 1rem;
}

.question-box .step {
  background-color: #fffefe;
  color: #111;
  display: inline-block;
  padding: 5px 12px;
  font-weight: bold;
  border-radius: 10px;
  margin-bottom: 10px;
}

.question-box h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.option-item {
  border: 2px solid #000000;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #003477;
  color: #fff;
}

.option-item:hover {
  background-color: #184d81;
}

.option-item input {
  accent-color: #ffffff;
  transform: scale(1.2);
}






.faq-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
}

.faq-label {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 10px;
}

.faq-question {
  cursor: pointer;
  font-size: 1.1rem;
  padding: 15px 20px;
  background-color: rgb(0, 0, 0);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #c5e9f0;
}

.faq-answer {
  padding: 0 20px 15px;
  display: none;
  font-size: 0.95rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .faq-answer {
    padding: 0 16px 12px;
  }
}









    footer {
      text-align: center;
      padding: 2rem;
      background-color: #000;
      color: #888;


      .country-selector {
        text-align: center;
        margin-top: 30px;
    }

    .country-selector select {
        width: 300px;
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
        transition: all 0.3s ease;
    }

    .country-selector select:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    /* Responsive for tablet */
    @media (max-width: 768px) {
        .country-selector select {
            width: 250px;
            font-size: 15px;
        }
    }

    /* Responsive for mobile */
    @media (max-width: 480px) {
        .country-selector select {
            width: 100%;
            font-size: 14px;
        }
    }
  }






    *, *:before, *:after {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    body {
      background: linear-gradient(to right, #0e0466 0%, #597f99 100%);
      font-size: 12px;
    }
    
    body, button, input {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: 1.4px;
    }
    
    .background {
      display: flex;
      min-height: 100vh;
    }
    
    .container {
      flex: 0 1 700px;
      margin: auto;
      padding: 10px;
    }
    
    .screen {
      position: relative;
      background: #0b0047;
      border-radius: 15px;
    }
    
    .screen:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      bottom: 0;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
      z-index: -1;
    }
    
    .screen-header {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      background: #4b4b92;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    
    .screen-header-left {
      margin-right: auto;
    }
    
    .screen-header-button {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-right: 3px;
      border-radius: 8px;
      background: white;
    }
    
    .screen-header-button.close {
      background: #e9e9e9;
    }
    
    .screen-header-button.maximize {
      background: #e8e925;
    }
    
    .screen-header-button.minimize {
      background: #ffffff;
    }
    
    .screen-header-right {
      display: flex;
    }
    
    .screen-header-ellipsis {
      width: 3px;
      height: 3px;
      margin-left: 2px;
      border-radius: 8px;
      background: #ffffff;
    }
    
    .screen-body {
      display: flex;
    }
    
    .screen-body-item {
      flex: 1;
      padding: 50px;
    }
    
    .screen-body-item.left {
      display: flex;
      flex-direction: column;
    }
    
    .app-title {
      display: flex;
      flex-direction: column;
      position: relative;
      color: #ffffff;
      font-size: 26px;
    }
    
    .app-title:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 25px;
      height: 4px;
      background: #ea1d6f;
    }
    
    .app-contact {
      margin-top: auto;
      font-size: 8px;
      color: #ffffff;
    }
    
    .app-form-group {
      margin-bottom: 15px;
    }
    
    .app-form-group.message {
      margin-top: 40px;
    }
    
    .app-form-group.buttons {
      margin-bottom: 0;
      text-align: right;
    }
    
    .app-form-control {
      width: 100%;
      padding: 10px 0;
      background: none;
      border: none;
      border-bottom: 1px solid #ffffff;
      color: #ddd;
      font-size: 14px;
      text-transform: uppercase;
      outline: none;
      transition: border-color .2s;
    }
    
    .app-form-control::placeholder {
      color: #666;
    }
    
    .app-form-control:focus {
      border-bottom-color: #ddd;
    }
    
    .app-form-button {
      background: none;
      border: none;
      color: #aeb3ff;
      font-size: 14px;
      cursor: pointer;
      outline: none;
    }
    
    .app-form-button:hover {
      color: #b9134f;
    }
    
    .credits {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      color: #ffffff;
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 16px;
      font-weight: normal;
    }
    
    .credits-link {
      display: flex;
      align-items: center;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
    }
    
    .dribbble {
      width: 20px;
      height: 20px;
      margin: 0 5px;
    }
    
    @media screen and (max-width: 520px) {
      .screen-body {
        flex-direction: column;
      }
    
      .screen-body-item.left {
        margin-bottom: 30px;
      }
    
      .app-title {
        flex-direction: row;
      }
    
      .app-title span {
        margin-right: 12px;
      }
    
      .app-title:after {
        display: none;
      }
    }
    
    @media screen and (max-width: 600px) {
      .screen-body {
        padding: 40px;
      }
    
      .screen-body-item {
        padding: 0;
      }
    }
    










  


    
  

    

    



/* Reset. */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

/* Panels. */
.splitview {
  position: relative;
  width: 100%;
  min-height: 45vw;
  overflow: hidden;
}

.panel {
  position: absolute;
  width: 100vw;
  min-height: 45vw;
  overflow: hidden;
}

  .panel .content {
      position: absolute;
      width: 100vw;
      min-height: 45vw;
      color: #FFF;
  }

  .panel .description {
      width: 25%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
  }

  .panel img {
      box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
      width: 35%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }


.bottom {
  background-color: rgb(44, 44, 44);
  z-index: 1;
}

  .bottom .description {
      right: 5%;
  }

.top {
  background-color: rgb(14, 4, 119);
  z-index: 2;
  width: 50vw;

  /*-webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);*/
}

  .top .description {
      left: 5%;
  }

/* Handle. */
.handle {
  height: 100%;
  position: absolute;
  display: block;
  background-color: rgb(83, 160, 211);
  width: 5px;
  top: 0;
  left: 50%;
  z-index: 3;
}

/* Skewed. */
.skewed .handle {
  top: 50%;
  transform: rotate(30deg) translateY(-50%);
  height: 200%;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  transform-origin: top;
}

.skewed .top {
  transform: skew(-30deg);
  margin-left: -1000px;
  width: calc(50vw + 1000px);
}

.skewed .top .content {
  transform: skew(30deg);
  margin-left: 1000px;
}

/* Responsive. */
@media (max-width: 900px) {
  body {
      font-size: 75%;
  }
}













@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  color: #444;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__image {
  font-size: 2.7rem;
      color: #2196F3;
}
.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.slider__txt {
  color: #999;
  margin-bottom: 3rem;
  max-width: 300px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}














:root {
  --dark: rgb(20, 20, 20);
  --yellow: rgb(253, 216, 53);
  --blue: rgb(98, 0, 234);
  
  --c1: rgb(3, 7, 18);
  --c2: rgb(0, 30, 49);
  
  --left-color: var(--c1);
  --right-color: var(--c2);
}

body {  
  background-color: var(--dark);
  margin: 0px;
}

.side {
  display: grid;
  height: 100vh;
  overflow: hidden;
  place-items: center;
  position: absolute;
  width: 100%;
}

.side .title {
  font-family: "Montserrat", sans-serif;
  font-size: 7vw;
  font-weight: 800;
  margin: 0px 10vw;
  width: 80vw;
}

.side .fancy {
  font-size: 1.2em;
  line-height: 0.6em;
}

#left-side {
  background-color: var(--left-color);
  width: 60%;
  z-index: 2;
}

#left-side .title {  
  color: white;  
}

#left-side .fancy {
  color: var(--right-color);
}

#right-side {
  background-color: var(--right-color);
}

#right-side .title {
  color: var(--dark);
}

#right-side .fancy {
  color: white;
}

/* -- YouTube Link Styles -- */

#source-link {
  top: 60px;
}

#source-link > i {
  color: rgb(94, 106, 210);
}

#yt-link {  
  top: 10px;
}

#yt-link > i {
  color: rgb(239, 83, 80);
}

.meta-link {
  align-items: center;
  backdrop-filter: blur(3px);
  background-color: rgba(40, 40, 40, 0.9);
  border-radius: 6px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;  
  display: inline-flex;
  gap: 5px;
  left: 10px;
  padding: 10px 20px;
  position: fixed;
  text-decoration: none;
  transition: background-color 350ms, border-color 350ms;
  z-index: 10000;
}

.meta-link:hover {
  background-color: rgb(40, 40, 40);
}

.meta-link > i, .meta-link > span {
  height: 20px;
  line-height: 20px;
}

.meta-link > span {
  color: white;
  font-family: "Rubik", sans-serif;
  transition: color 600ms;
}























.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
















