html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
    
    body {
      margin: 0;
      font-family: 'Ubuntu Mono', monospace;
      background-color: #0d1117;
      color: #c9d1d9;
    }

header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
    header {
      background-color: #161b22;
      padding: 15px 30px;
      border-radius: 20px;
      max-width: 1100px;
      margin: 20px auto;
      display: flex;    
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 1px;
      z-index: 1000;
      width: auto;
      align-items: center;
      border: #30363d 1px solid;
      transition: top 0.3s ease;
      
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo img {
      height: 32px;
    }

    nav ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    nav ul li a {
      text-decoration: none;
      padding: 10px 14px;
      background-color: #21262d;
      color: #c9d1d9;
      border-radius: 20px;
      font-size: 17px;
      transition: background 0.3s;
    }

    nav ul li a:hover {
        border: 0px solid #58a6ff;
  background-color: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
    }

    .settings-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #21262d;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c9d1d9;
      font-size: 16px;
      cursor: pointer;
    }
    .settings-container {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

#settingsIcon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

/* Spinning animation class */
.spin {
  animation: spin 1s linear infinite;
}

/* Keyframes for spinning */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.settings-menu {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background-color: #161b22;
  color: #c9d1d9;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 15px;
  min-width: 180px;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.settings-menu label,
.settings-menu div {
  display: flex;
  margin-bottom: 10px;
}
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 0 20px;
    }

    .hero h2 {
      color: #58a6ff;
      font-size: 3rem;
      margin-bottom: 12px;
    }

    .hero p {
      font-size: 1.4rem;
      margin-bottom: 30px;
      color: #c9d1d9;
    }

    .btn {
      background-color: #58a6ff;
      color: #0d1117;
      padding: 12px 24px;
      border-radius: 20px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn:hover {
      background-color: #4091e6;
    }

    footer {
      background-color: #161b22;
      text-align: center;
      padding: 20px;
    }

    @media (max-width: 875px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  #settingsIcon {
    display: none;
  }
  .settings-icon {
    display: none;
  }
}
------------
.msp-carousel-section {
  background-color: #0d1117;
  padding: 60px 20px;
  text-align: center;
  padding: 10%;
  border-top: #30363d 1px solid;
}

.carousel-title {
  font-size: 2rem;
  color: #58a6ff;
  margin-bottom: 40px;
  text-align: center;
}

.carousel-wrapper {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 10%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-group {
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
}

.service-card {
  background-color: #161b22;
  border-radius: 20px;
  padding: 25px;
  width: 30%;
  box-sizing: border-box;
  color: #c9d1d9;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin: 0 10px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #58a6ff;
  margin-bottom: 10px;
}

.carousel-dots {
  margin-top: 25px;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #21262d;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #58a6ff;
}

@media (max-width: 900px) {
  .carousel-group {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 80%;
    margin: 10px 0;
  }
}
    /* Insustry Section */

.industries-section {
  padding: 80px 20px;
  background-color: #0d1117;
  text-align: center;
  border-top: #30363d 1px solid;
}

.industries-section h2 {
  color: #58a6ff;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Ubuntu Mono', monospace;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr); /* stack 2 columns on tablets */
  }
}

@media (max-width: 500px) {
  .industry-grid {
    grid-template-columns: 1fr; /* stack 1 column on phones */
  }
}

.industry-card {
  background-color: #161b22;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #c9d1d9;
  font-family: 'Ubuntu Mono', monospace;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  background-color: #1f2933;
}

.industry-card .icon {
  margin-bottom: 10px;
}

.why-helptek {
  background: linear-gradient(to bottom, #0d1117, #0d1117 70%, #161b22);
  padding: 80px 20px;
  text-align: center;
  color: #c9d1d9;
}

.why-helptek h2 {
  font-size: 2rem;
  color: #58a6ff;
  margin-bottom: 40px;
  font-family: 'Ubuntu Mono', monospace;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.reason {
  background-color: #161b22;
  border-radius: 20px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.1);
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.2);
}

.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.reason h3 {
  color: #58a6ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Ubuntu Mono', monospace;
}

.reason p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer */
.custom-footer {
  background-color: #161b22;
  border-radius: 30px;
  margin: 60px auto 20px;
  padding: 30px;
  max-width: 1100px;
  color: #c9d1d9;
  font-family: 'Ubuntu Mono', monospace;
  text-align: left;
  padding-bottom: 5px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
} 

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 220px;
}

.footer-left img {
  width: auto;
  height: 45px;
}

.footer-left h3 {
  margin: 0;
  font-size: 20px;
  color: #58a6ff;
}

.footer-left p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #c9d1d9;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 220px;
}

.footer-links a {
  text-decoration: none;
  color: #c9d1d9;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #58a6ff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #58a6ff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #8b949e;
}

.footer-bottom a {
  color: #8b949e;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    padding-right: 12px;
  }

  .footer-left {
    justify-content: center;
  }
}

.social-icon {
  color: #c9d1d9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #58a6ff;
  transform: scale(1.15) rotate(5deg);
}

.instagram-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}
 body {
      font-family: 'Ubuntu Mono', monospace;
      background-color: #0d1117;
      color: #c9d1d9;
      margin: 0;
      padding: 40px 20px;
      text-align: left;
    }

    h1 {
      text-align: center;
      color: #58a6ff;
      font-size: 2.5rem;
      margin-bottom: 30px;
      margin-top: 100px;
    }

    .toggle-wrapper {
      text-align: center;
      margin-bottom: 30px;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .plan {
      background-color: #161b22;
      border: 1px solid #30363d;
      border-radius: 20px;
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .plan:hover {
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(88, 166, 255, 0.2);
    }

    .badge {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #58a6ff;
      color: #0d1117;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
    }

    .plan h2 {
      font-size: 1.5rem;
      color: #58a6ff;
    }

    .price {
      font-size: 2rem;
      margin: 10px 0;
      color: #c9d1d9;
    }

    .features {
      margin: 20px 0;
      list-style: none;
      padding: 0;
    }

    .features li {
      margin-bottom: 10px;
    }

    .features li::before {
      content: "✔";
      margin-right: 10px;
      color: #58a6ff;
    }

    .plan button {
      background-color: #58a6ff;
      border: none;
      color: #0d1117;
      padding: 12px 20px;
      border-radius: 20px;
      font-weight: bold;
      font-family: 'Ubuntu Mono', monospace;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .plan button:hover {
      background-color: #4091e6;
    }

    .toggle-switch {
      background: #21262d;
      padding: 10px 20px;
      border-radius: 30px;
      display: inline-block;
    }

    .toggle-switch label {
      color: #c9d1d9;
      margin: 0 10px;
      cursor: pointer;
    }

    input[type="radio"] {
      display: none;
    }

    input[type="radio"]:checked + label {
      color: #58a6ff;
      font-weight: bold;
    }

    @media (max-width: 500px) {
      .price {
        font-size: 1.5rem;
      }
    }