* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #fff;
  }

  .body_width {

margin: auto;

max-width: 1200px;

padding: 20px;

}
  
  .hero {
    background: url('/assets/images/design/image_2.png') no-repeat center center;
    background-size: cover;
    padding: 50px 0px;
    padding-top: 80px;
    padding-bottom: 0;
    max-width: 100% !important;
  }
  
  .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 120px 20px;
  }
  
  .hero-text {
    /* flex: 1; */
    width: 56%;
  }.hero-image {
    width: 43%;
}
  .hero-text .btn-primary {
    width: 345px;
    text-align: center;
    margin: auto;
    display: block;
    margin-left: 0;
}
  .hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10pt;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    margin-top: 20px;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    width: 100%;
  }
  .importance {
    background-color: #f2f8fb;
    padding: 80px 0;
  }
  
  .importance h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #002f6c;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  .importance-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
  }
  
  .importance-image img {
    max-width: 450px;
    width: 100%;
  }
  
  .importance-reasons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    flex: 1;
  }
  
  .reason-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 6px solid #0055cc;
  }
  
  .reason-box.highlight {
    background: #0055cc;
    color: #fff;
    border-left: none;
  }
  
  .reason-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .reason-box p {
    font-size: 14px;
    line-height: 1.5;
  }

  .intro-section {
    background-color: #f6fbfd;
    /* padding: 80px 0; */
  }
  
  .intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
  }
  .intro-image {
    max-width: calc(100% - 561px);
    width: 100%;
}
  .intro-image img {
    /* max-width: 400px; */
    width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #eaf6ff 30%, transparent 70%);
  }
  
  .intro-text {
    flex: 1;
    max-width: 561px;
  }
  
  .intro-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #002f6c;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }
  
  .intro-box {
    background: linear-gradient(to right, #0056d2, #2e65f3);
    border-radius: 20px;
    padding: 30px;
    color: white;
    max-width: 500px;
  }
  
  .intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  
  .intro-box ul li {
    padding: 8px 0;
    position: relative;
  }
  .intro-box ul li img {
    margin-bottom: 1px;
    margin-right: 7px;
}

  
  .intro-button {
    display: inline-block;
    background: linear-gradient(to right, #ffc300, #ff7a00);
    color: #fff;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    max-width: 345px;
    width: 100%;
    text-align: center;
    margin: auto;
    display: block;
  }
  
  .intro-button:hover {
    background: linear-gradient(to right, #ffb700, #ff6a00);
  }

  /* Common */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f2f7fc;
    margin: 0;
    padding: 0;
  }
  
  section {
    padding: 10px 20px;
    margin: auto;
  }
  
  /* Solutions */
  .solutions h2 {
    text-align: center;
    font-size: 29px;
    color: #001f54;
    margin-bottom: 40px;
  }
  
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .solution-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #2451AF 0%, #3673F9 100%);
  }
  
  .solution-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .solution-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
  }
  
  .solution-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  /* Values */
section.values {
    margin-top: 30px;
}
  .values h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #001f54;
  }
  
  .values h2 span {
    /* color: #0056ff; */
  }
  
  .values .desc {
    font-size: 15px;
    max-width: 600px;
    margin-bottom: 60px;
    color: #0F2F5C;
  }
  
  .values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  
  .value-list {
    list-style: none;
    padding: 0;
    flex: 1;
    min-width: 250px;
  }
  
  .value-list li {
    color: #fff;
    margin-bottom: 15px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    background: linear-gradient(90deg, #0152B2 0%, #B2E3F5 100%);
  }
  .value-list li img {
    margin-bottom: -2px;
    margin-right: 5px;
}
  .value-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .value-image img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .steps {
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    background: url(/assets/images/design/image_2.png) no-repeat center center;
    background-size: cover;
  }
  
  .steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .step-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
    .step-box {
      background: #eaf6ff;
      color: #000;
      padding: 20px;
      border-radius: 12px;
      width: calc((100% - 40px)/3);
    }

.step-box:nth-child(4) {
  width: 40%;
}
.step-box:nth-child(5) {
  width: calc(60% - 20px);
}
    .step-box h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #0050c8;
      display: flex;
      align-items: center;
      text-align: left;
    }
.step-box h3 img {
    margin-right: 10px;
}

.step-box h3 span {
    font-size: 40px;
    color: #f8b734;
    margin-right: 4px;
}
  .step-box ul {
    list-style: none;
}

.step-box ul img {
    margin-right: 10px;
    margin-top: 4px;
}

.step-box ul li {
    margin-bottom: 7px;
    text-align: left;
    display: flex;
    align-items: flex-start;
}  .industries {
      padding: 40px 20px;
      text-align: center;
    }

    .industries h2 {
      margin-bottom: 30px;
      font-size: 24px;
      color: #000;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .industry {
      text-align: center;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      position: relative;
      z-index: 1;
    }
    .industry:hover {
      transform: translateY(-5px);
    }
    .industry img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      z-index: 0;
    }
    .industry p {
      padding: 10px 0;
      font-weight: bold;
      z-index: 2;
      position: absolute;
      width: 100%;
      bottom: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 46.63%, #FFFFFF 100%);
      margin-bottom: 0;
      COLOR: #000;
    }
 
    .prestarter {
      background-image: url(/assets/images/design_2/Mask_group.png);
      background-repeat: round;
      border-radius: 20px;
      color: white;
      display: flex;
      flex-wrap: wrap;
      padding: 40px !important;
      gap: 20px;
      margin-top: 40px;
    }

    .prestarter-content {
      max-width: 429px;
    }

    .prestarter h2 {
      font-size: 28px;
      margin-bottom: 10px;
      color: #fff;
      text-align: left;
    }

    .prestarter .price {
      font-size: 26px;
      color: #ffc107;
      margin: 10px 0;
      margin-left: auto;
      font-weight: 700;
    }.prestarter .price span {
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}

.prestarter-content .badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    text-align: center;
    border-radius: .25rem;
    background: url(/assets/images/design_2/uu_dai.png);
    width: 110px;
    background-size: cover;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}
    .list_prestarter {
      background: white;
      color: black;
      padding: 17px;
      border-radius: 10px;
      margin: 20px 0;
      list-style: none;
    }


.list_prestarter ul li {
    list-style: none;
    font-size: 16px;
    text-align: left;
}

.list_prestarter ul li img {
    margin-right: 10px;
}

.list_prestarter p {
    font-size: 20px;
    text-align: left;
}.d-flex.space-between.align-items-center {
    display: flex;
    align-items: center;
}.btn-yellow {
    background: #ffc107;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-right: auto;
    width: 183px;
}.btn-yellow:hover {
    text-decoration: none;
    color: unset;
}
  .testimonials-section {
    padding: 60px 20px;
    background: #f3fbff;
    text-align: center;
    font-family: sans-serif;
  }
  
  .testimonials-section h2 {
    font-size: 24px;
    color: #002b5c;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .btn-tab {
    background: none;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin: 15px 5px;
  }
  
  .btn-tab.active {
    background: #007bff;
    color: #fff;
  }
  
  /* Slider */
  .slider {
    position: relative;
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
  }
  
  .slide-wrapper {
    overflow: hidden;
    flex: 1;
  }
  
  .slide {
    display: none;
    align-items: center;
    gap: 20px;
    transition: opacity 0.5s ease;
  }
  
  .slide.active {
    display: flex;
  }
  
  .slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .info {
    text-align: left;
    max-width: 600px;
  }
  
  .info h3 {
    margin: 0;
    font-size: 18px;
  }
  
  .info .subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
  }
  
  blockquote {
    font-size: 16px;
    font-style: italic;
    color: #333;
  }
  
  .slide-btn {
    background: #fff;
    border: 1px solid #000000;
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 10px;
    color: #000;
    position: absolute;
  }button.slide-btn.next {
    right: -75px;
}

button.slide-btn.prev {
    left: -75px;
}

  
  .quote-icon {
    font-size: 105px;
    color: #ccc;
    margin-left: auto;
    margin-top: auto;
    position: absolute;
    right: 0;
    top: -24px;
  }
  
  /* Testimonial cards */
  .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .card {
    background: #fff;
    border: 2px solid #cce0ff;
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 34px;
  }
  
  .card h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #000;
    position: relative;
  }
  
  .stars {
    color: gold;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 14px;
    color: #444;
    flex: 1;
  }

.card_img img {
    width: 100%;
    border-radius: 20px;
}

  .faq {
    background: #f7fdff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .faq h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #002b5c;
  }
  
  .faq-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .faq-right {
    width: 59%;
}

img.faq-image {
    zoom: 1.1;
}
  .faq-item {
    background: #d6eaff;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .faq-question {
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
  }
  
  .faq-answer {
    padding: 15px 20px;
    display: none;
    background: #f0f8ff;
    color: #333;
  }

    .register-section {
      color: white;
      padding: 50px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      background: url(/assets/images/design/image_2.png) no-repeat center center;
      background-size: cover;
    }.d-flex.justify-content-center.flex-wrap {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.register-section .d-flex{
  gap: 50px;
}
    .register-info {
      max-width: 400px;
      text-align: center;
    }

    .register-form {
      background: white;
      color: black;
      padding: 20px;
      border-radius: 15px;
      max-width: 400px;
      width: 100%;
      margin-top: 53px;
    }

    .register-form h3 {
      margin-bottom: 20px;
      font-size: 20px;
      text-align: center;
    }

    .register-form input,
    .register-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .register-form button {
      background: #ffc107;
      border: none;
      padding: 10px;
      width: 183px;
      border-radius: 8px;
      font-weight: bold;
      color: #fff;
      margin: auto;
      margin-top: 8px;
      display: block;
    }.register-info p {
    background: #3673F9;
    border-radius: 15px;
    padding: 11px ;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin: 20px auto 10px;
    max-width: 355px;
}

.register-info h2 {
    font-size: 28px;
}
 
  @media only screen and (max-width: 600px) { 
    .menu {
      display: none;
      gap: 20px;
    }
    .btn-primary {
      display: none;
    }
    .container { 
      padding: 10px;
    }
    .hero-text h1 {
      font-size: 34px;
    }
    .intro-text h2 {
      font-size: 18px;
    }img.faq-image {
    zoom: 0;
    width: 100%;
}

.faq-right {
    width: 100%;
}

.industry-grid {
    grid-template-columns: repeat(2, 1fr);
}

.step-box {
    width: 100% !important;
}

button.slide-btn.next {
    right: -50px;
    color: #000;
}

button.slide-btn.prev {
    left: -50px;
    color: #000;
}

.slide .quote-icon {
    top: 0;
    font-size: 200px;
    line-height: 1.2;
    right: 20px;
}

.prestarter {
    padding: 10px !important;
}

.btn-yellow {
    margin: auto;
}

.prestarter-content .badge {
    width: 95px;
    height: 61px;
    font-size: 15px;
}

.prestarter .price span {
    margin: 0;
}

.prestarter .price {
    font-size: 24px;
}

.intro-image {
    max-width: unset;
    order: 2;
}

.hero-text {
    padding: 20px 0;
    width: 100%;
}section {
    padding: 0;
}

section.steps {
    padding: 60px 0;
}

section.industries {
    padding: 40px 0;
}

section.testimonials-section {
    padding: 20px;
}

.body_width.testimonial-cards {
    padding: 0;
}

section.faq {
    padding: 60px 0;
}

section.register-section {
    padding: 50px 0;
}.hero-image {
    width: 100%;
}.hero-content {
    padding: 20px;
}.slide.active {
    flex-direction: column;
}.slide img {
    width: 150px;
    height: 150px;
    margin-left: 0;
    display: block;
    margin-right: auto;
}

.info h3 {
    color: #0F2F5C;
    font-size: 19px;
    font-weight: 600;
}

blockquote {
    border: unset;
    padding: 20px 0;
    font-size: 14px;
}

.slider {
    max-width: 85%;
}

.slide-btn {
    font-size: 15px;
    padding: 4px 10px;
}
  }