#services {
  background:#ffffff;
  padding:60px 0;
}

#services .section-title {
    font-size:36px;
    font-weight:600;
    color:#333;
    text-align: center;
    margin-bottom: 12px;
}
#services .section-subtitle {
    font-size:16px;
    color:#666;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.service-card {
    background:#fff;
    padding: 40px 35px;
    border: 3px solid #e0e0e0;
    position:relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #00CCCC;
}
.service-card:hover::after {
    display: none;
}

.service-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:25px;
    width: 100%;
}
.service-platform img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}
.service-more-text {
    font-size:15px;
    color:#666;
    font-weight:500;
    margin-left: auto;
}
.service-card h3 {
    font-size:20px;
    color:#333;
    margin-bottom:18px;
    font-weight:600;
}
.service-card p {
    font-size:15px;
    color:#666;
    line-height:1.8;
}
.service-cta {
    text-align:center;
    margin-top:50px;
}
.service-btn {
    display:inline-block;
    padding:14px 36px;
    background:#00CCCC;
    color:#fff;
    border-radius:30px;
    font-size:15px;
    text-decoration:none;
}