body {
    margin-top: 20px;
}

.feature-box-1 {
    padding: 32px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    margin: 15px 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: ease all 0.35s;
    top: 0;
}

.feature-box-1 * {
    transition: ease all 0.35s;
}

.feature-box-1 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #9A00CC;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 27px;
}

.feature-box-1 .icon i {
    line-height: 70px;
}

.feature-box-1 h5 {
    color: #20247b;
    font-weight: 600;
}

.feature-box-1 p {
    margin: 0;
}

.feature-box-1:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    border-radius: 10px;
    width: 0;
    background: #7A00A3;
    z-index: -1;
    transition: ease all 0.35s;
}

.feature-box-1:hover {
    top: -5px;
}

.feature-box-1:hover h5 {
    color: #ffffff;
}

.feature-box-1:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-box-1:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 0;
    right: auto;
}

.section {
    padding-top: 100px;
    padding-bottom: 0 !important;
    position: relative;
}

.section-title {
    padding-bottom: 45px;
}

.section-title h2 {
    font-weight: 700;
    color: #02225A;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #fc5356;
    padding-left: 15px;
}

body{margin-top:20px;}
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}


.partners-logo-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.partner-logo-wrap {
    height: 100px;
    width: 100%;
}

.partner-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row.justify-content-md-center.blue-line-row {
    padding-top: 50px;
}

@media screen and (max-width: 767px) {
    .partners-logo-container {
        grid-template-columns: 1fr; 
    }
    .partner-logo-wrap.extra-partners-logo-wrap {
        display: none;
    }
}

.design-team {
    padding-bottom: 50px !important;
}

.clickable {
    cursor: pointer;
  }

  .btn-primary {
    background-color: #7200A8 !important; /* Tamsesnė violetinė */
    color: white !important;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #5A0085 !important; /* Dar tamsesnė violetinė užvedus pelę */
}

.feature-box-1 {
    min-height: 350px; /* Ensures all boxes are the same size */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding: 20px; /* General padding */
}

.feature-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding-left: 10px; /* Adds slight space from the left edge */
}