body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #0E121E;
      color: #FFFFFF;
    }

    /* hero section */

    .hero {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 10px;
      background: radial-gradient(circle at right, #0E121E 40%, #13202C);
    }

    .hero-content {
     width: 85%;
    }

    .hero-welcome {
      font-size: 16px;
      color: #00FFE4;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 700;
      margin: 0 0 20px;
      line-height: 1.2;
    }

    .hero-typing {
      font-size: 20px;
      font-weight: bold;
      color: #00FFE4;
      white-space: nowrap;
      overflow: hidden;
/*      border-right: 3px solid #00FFE4;*/
      width: auto;
/*      animation: typing 4s steps(40, end) forwards, blink 0.8s step-end infinite;*/
      margin-bottom: 24px;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    .hero-desc {
      font-size: 16px;
      color: #B0BAC9;
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background-color: #00FFE4;
      color: #000;
    }

    .btn-secondary {
      background-color: transparent;
      border: 1px solid #B0BAC9;
      color: #FFFFFF;
    }

    .btn-primary:hover {
      background-color: #00dac4;
    }

    .btn-secondary:hover {
      border-color: #00FFE4;
      color: #00FFE4;
    }

    @media (max-width: 600px) {
      .hero-title {
        font-size: 36px;
      }

      .hero-typing {
        font-size: 16px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
    }

    /* our services section */

    .services-section {
      text-align: center;
      padding: 4rem 1rem;
      background-color: #0b1222;
    }

    .services-section h2 {
      font-size: 2rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }

    .services-section h2::after {
      content: '';
      display: block;
      width: 60%;
      height: 3px;
      background-color: #64f4ac;
      margin: 0.5rem auto 0;
    }

    .services-section p.subtitle {
      color: #b0b9c9;
      font-size: 1rem;
      margin-top: 1rem;
      margin-bottom: 3rem;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background-color: #0e1629;
      border-radius: 10px;
      padding: 1.5rem;
      width: 260px;
      box-sizing: border-box;
      text-align: left;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-card .icon {
      font-size: 1.5rem;
      color: #64f4ac;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 0.5rem;
    }

    .service-card p {
      color: #b0b9c9;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .service-card a {
      color: #64f4ac;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .view-all-btn {
      margin-top: 3rem;
    }

    .view-all-btn button {
      background-color: transparent;
      border: 1px solid #64f4ac;
      color: #64f4ac;
      padding: 0.75rem 2rem;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .view-all-btn button:hover {
      background-color: #64f4ac;
      color: #0b1222;
    }

    @media (max-width: 768px) {
      .services-grid {
        flex-direction: column;
        align-items: center;
      }

      .service-card {
        width: 90%;
      }

      .services-section h2 {
        font-size: 1.5rem;
      }
    }

    /* feature projects section */
    .hom_feature_projects_section {
      padding: 60px 20px;
      text-align: center;
    }

    .hom_feature_projects_section h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hom_feature_projects_section h2 span {
      border-bottom: 3px solid #14b8a6;
    }

    .hom_feature_projects_section p {
      color: #94a3b8;
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .hom_feature_projects_container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .hom_feature_projects_card {
      background-color: #1e293b;
      border-radius: 10px;
      overflow: hidden;
      max-width: 320px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .hom_feature_projects_card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .hom_feature_projects_card_content {
      padding: 20px;
    }

    .hom_feature_projects_tag {
      display: inline-block;
      background-color: #0f172a;
      color: #ffffff;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 12px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .hom_feature_projects_title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hom_feature_projects_description {
      font-size: 14px;
      color: #94a3b8;
      margin-bottom: 15px;
    }

    .hom_feature_projects_card a {
      font-size: 14px;
      color: #14b8a6;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .hom_feature_projects_card a::after {
      content: ' →';
      margin-left: 4px;
    }

    .hom_feature_projects_btn_wrapper {
      margin-top: 40px;
    }

    .hom_feature_projects_btn_wrapper a {
      color: #14b8a6;
      border: 1px solid #14b8a6;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s, color 0.3s;
    }

    .hom_feature_projects_btn_wrapper a:hover {
      background-color: #14b8a6;
      color: #0f172a;
    }

    @media (max-width: 768px) {
      .hom_feature_projects_container {
        flex-direction: column;
        align-items: center;
      }

      .hom_feature_projects_card {
        width: 100%;
        max-width: 90%;
      }

      .hom_feature_projects_section h2 {
        font-size: 26px;
      }

      .hom_feature_projects_section p {
        font-size: 14px;
      }
    }

    /* get in touch section  */

    .contact-section {
      background-color: #0B1D37;
      padding: 5rem 1.25rem;
      text-align: center;
    }

    .contact-heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.4;
      color: #FFFFFF;
    }

    .contact-subtext {
      font-size: 16px;
      color: #B0BAC9;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-button {
      background-color: #79FFE1;
      color: #000000;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-button:hover {
      background-color: #5ff5d4;
    }

    @media (max-width: 480px) {
      .contact-heading {
        font-size: 22px;
      }

      .contact-subtext {
        font-size: 14px;
      }

      .contact-button {
        width: 100%;
      }
    }