section {
    width: 100%;
    height: 100%;
    position: relative;
}

section.horizontal {
    overflow-x: hidden;
}

section.horizontal .pin-wrap,
section.horizontal .animation-wrap {
    display: flex;
    position: relative;
    z-index: 1;
}

section.horizontal .item {
    position: relative;
    padding: 80px 60px;
    flex: 0 0 500px;
    height: calc(120vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: #dff4ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.item-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #03355c;
}

.item-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.item-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #03355c;
}

.item-icon {
    color: #03355c;
}

.item-title {
    color: #03355c;
}

.item-description {
    color: #03355c;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-tag {
    background: #b6e7fe;
    color: #03355c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #03355c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #03355c;
    color: #ffffff;
}