body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  header, footer {
    background-color: #333;
    color: #fff;
    padding: 1em;
  }
  
  header a, footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .container-fluid {
    padding: 0;
  }
  
  h1, h2 {
    color: #4CAF50;
  }
  
  .product-item, .service-item {
    border: 1px solid #444;
    padding: 1.5em;
    margin-bottom: 1.5em;
    border-radius: 8px;
    background-color: #2a2a2a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero {
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a;
  }
  
  #hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  .about-us, .products, .services, .roadmap, .careers, .contact {
    padding: 2em 0;
    text-align: center;
  }
  
  .product-grid, .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .product-card, .service-card {
    flex: 1 1 300px;
    margin: 10px;
    max-width: 350px;
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }
  
  .timeline-item {
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  
  .timeline-content {
    background-color: #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    width: calc(100% - 30px);
  }
  
  .timeline-content h3 {
    color: #4CAF50;
    margin: 0 0 10px;
  }
  
  .timeline-content p {
    margin: 0;
  }
  
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #4CAF50;
    z-index: 1;
  }
  
  .timeline-item.first .timeline-line {
    display: none;
  }
  
  .timeline-item:last-child .timeline-line {
    display: none;
  }
  
  .navbar {
    background-color: #1a1a1a;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-link {
    color: #f4f4f4;
    padding: 15px 20px;
    transition: background-color 0.3s;
  }
  
  .nav-link:hover {
    background-color: #4CAF50;
    color: #fff;
    border-radius: 5px;
  }
  
  .navbar-toggler {
    border-color: #4CAF50;
  }
  
  .navbar-toggler-icon {
    background-color: #4CAF50;
  }
  
  .about-us {
    padding: 3em 1em;
    text-align: center;
    background-color: #2a2a2a;
    color: #f4f4f4;
  }
  
  .about-us h2 {
    color: #4CAF50;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
  }
  
  .about-us p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0.5em;
  }
  
  .about-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2em;
  }
  
  .icon {
    padding: 1em;
    background-color: #3a3a3a;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .icon:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    text-align: center;
  }
  
  .card-content h3 {
    margin-top: 10px;
    color: #4CAF50;
  }
  
  .card-content p {
    color: #f4f4f4;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-content {
        padding: 10px;
    }

    .about-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-grid, .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .product-card, .service-card {
        max-width: 90%;
    }
  }

  @media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero-content {
        font-size: 0.9rem;
    }
  }

  .products {
    padding: 3em 1em;
    background-color: #2a2a2a;
    color: #f4f4f4;
    text-align: center;
  }

  .products h2 {
    color: #4CAF50;
    margin-bottom: 1.5em;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
  }

  .product-card {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 1.5em;
    margin: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    width: 300px;
    text-align: center;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card h3 {
    color: #4CAF50;
    margin: 0.5em 0;
  }

  .product-card p {
    color: #f4f4f4;
    margin: 0.5em 0;
  }

  .explore-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 0.5em 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
  }

  .explore-btn:hover {
    background-color: #45a049;
  }

  /* Swiper styles */
  .swiper-button-next,
  .swiper-button-prev {
    color: #4CAF50;
  }

  .swiper-pagination-bullet {
    background: #4CAF50;
  }

  .swiper-container {
    width: 100%;
    height: auto;
  }

  .swiper-wrapper {
    display: flex;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        width: 90%;
    }
  }

  @media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        width: 100%;
    }
  }

  .services {
    padding: 2em 0;
    text-align: center;
    background-color: #2a2a2a;
    color: #f4f4f4;
  }

  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2em;
  }

  .service-card {
    background-color: #3a3a3a;
    border-radius: 8px;
    padding: 1.5em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    max-width: 300px;
    flex: 1 1 300px;
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-card h3 {
    color: #4CAF50;
    margin-bottom: 0.5em;
  }

  .service-card p {
    color: #f4f4f4;
    line-height: 1.5;
  }

  .roadmap {
    padding: 2em 0;
    text-align: center;
    background-color: #2a2a2a;
    color: #f4f4f4;
  }

  .roadmap h2 {
    color: #4CAF50;
    margin-bottom: 1em;
  }

  .roadmap p {
    max-width: 800px;
    margin: 0 auto 1.5em;
    line-height: 1.6;
  }

  .contact {
    padding: 2em 0;
    text-align: center;
    background-color: #2a2a2a;
    color: #f4f4f4;
  }

  .contact h2 {
    color: #4CAF50;
    margin-bottom: 1em;
  }

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #3a3a3a;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .form-group {
    margin-bottom: 1.5em;
    text-align: left;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #f4f4f4;
    transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #81c784;
    outline: none;
  }
  .btn {
    color: #fff;
    background-color: #388e3c;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  .btn:hover {
    background-color: #388e3c;
    transform: scale(1.05);
  }

  .btn:active {
    transform: scale(0.95);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 90%;
    }
  }
