.conttagline {
    height: fit-content;
    min-height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    color: #fff;
    align-items: start;
    margin-top: 1px;
    background-color: #00000000;
    flex-direction: row;
    position: relative;
    z-index: 2;
  }
  
  .neural-network {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: #00000000;
    overflow: hidden;
  }
  
  .canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  
  /* Container 1 */
  .cont1 {
    width: 65%;
    min-height: fit-content;
    min-width: fit-content;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  .serlist {
    margin: 30px;
    display: flex;
    border-radius: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: fit-content;
    background-image: linear-gradient(135deg, #29323c 10%, #485563 100%);
    padding: 20px;
  }
  
  .headp {
    color: #ffffff;
    font-size: 35px;
    margin-left: 40px;
    transition: color 0.7s ease;
  }
  
  .serlist ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .serlist li {
    font-size: 25px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
    width: fit-content;
    color: #ffffff;
    padding-left: 10px;
    line-height: 1.8;
  }
  /* .serlist li:hover{
      color: #fff;
  } */
  
  .serlist li::before {
    content: "●";
    color: #35d779;
    margin-right: 10px;
    margin-left: 10px;
  }
  .serlist li:hover::before {
    content: "●";
    margin-right: 10px;
  }
  
  .cont2 {
    width: 35%;
    height: fit-content;
    min-height: 570px;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: start;
    position: relative;
    flex-direction: column;
    z-index: 2;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  .headline {
    font-size: 35px;
    margin: 0;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    width: 90%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.7s ease;
  }
  .headline::after {
    content: "";
    display: block;
    margin-top: 10px;
    margin-left: 2px;
    height: 3px;
    width: 40px;
    background: #35d779;
    transition: width 0.3s;
    position: absolute;
    left: 21px;
  }
  .headp::after {
    content: "";
    display: block;
    margin-top: 10px;
    margin-left: 2px;
    height: 3px;
    width: 40px;
    background: #35d779;
    transition: width 0.3s;
    position: absolute;
  }
  .headp:hover {
    color: #35d779;
  }
  .headline:hover {
    color: #35d779;
  }
  .headpara {
    color: #cac8c8;
    font-size: 18px;
    margin-top: 30px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    width: 90%;
    line-height: 1.5;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: lighter;
  }
  
  /* Card */
  .service_wrapper {
    width: 100% !important;
    margin: 0;
    margin-top: 50px;
    padding: 0;
  }
  
  .Gradient_cards_service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
    width: 100%;
    margin-bottom: 100px;
  }
  
  .card {
    max-width: 550px;
    display: flex;
    justify-content: center;
    width: 320px;
    height: 360px;
    padding: 20px;
    color: white;
    background: 
        linear-gradient(#181818, #181818) padding-box,
        linear-gradient(135deg, #35d779,#181818,#181818) border-box;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 1s ease-out;
    position: relative;
}



  
  .card .main-content {
    flex: 1;
    text-align: center;
  }
  
  .card .header i {
    font-size: 150px;
    align-items: center;
  }
  
  .card .heading {
    font-size: 24px;
    margin: 24px 0 16px;
    font-weight: 600;
  }
  
  .card .categories {
    display: flex;
    flex-direction: row;
  }
  
  .card .categories {
    color: #35d779;
    font-size: 16px;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .categories{
    width: fit-content;
    flex-direction: column;
    align-items: start;
    margin:0px auto;
    display: flex;
    
  }
  .card:hover {
    transform:scale(1.02) !important;
  }
  .learnmore {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #35d779;
    color: #000;
    text-decoration: none;
    position: relative;
    margin-left: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    margin-bottom: 20px;
}

.learnmore:hover {
    background-color: #ffffff;
}
.caret {
  margin-left: 30px;
  transition: transform 0.3s ease;
  font-size: 15px;
  
}

.learnmore:hover .caret {
  transform: rotate(180deg);
}

  /* Mobile Layout */
  @media (max-width: 1000px) {
    .serlist li {
      font-size: 20px;
    }
    .headp {
      font-size: 30px;
    }
    .serlist {
      padding: 20px 0px;
    }
    .headpara {
      font-size: 15px;
    }
    .headline {
      margin-top: -20px;
      font-size: 30;
    }
  }
  @media (max-width: 800px) {
    .conttagline {
      flex-direction: column;
      height: fit-content;
    }
    .headline::after {
      left: 31px;
    }
    .cont1 {
      width: 100%;
    }
    .cont2 {
      width: 100%;
      min-width: 100%;
      height: fit-content;
      min-height: fit-content;
    }
    .serlist {
      padding: 20px 20px;
      margin: 30px 20px 30px 30px;
    }
    .headp {
      margin-left: 20px;
    }
    .serlist li {
      margin-left: 10px;
    }
    .headline {
      margin-top: 30px;
      margin-left: 30px;
    }
    .headpara {
      margin-left: 30px;
    }
  }
  
  @media (max-width: 500px) {
    .serlist li {
      font-size: 15px;
      margin-left: 0px;
      margin-right: 10px;
    }
    .headp {
      font-size: 25px;
      margin-left: 10px;
    }
    .serlist {
      padding: 10px 0px 0px 10px;
    }
    .learnmore {
      margin-left: 30px;
  }
  }
  @media (max-width: 400px) {
    .serlist li {
      font-size: 12px;
    }
    .headp {
      font-size: 16px;
    }
  }
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }