#services-technologies-wrapper {
    background-image: url('/static/images/double-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: #fff;
}

/* Services Section Styles */
#services {
    margin-bottom: 50px;
    /* Add spacing between Services and Technologies sections */
}

#services .section-title {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    /* Center the section title */
}


.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.service-card {
    background: #fff;
    color: #000;
    border: 5px solid #0487D9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    color: #023859;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 10px;
}

/* CTA Button on Cards */
.service-cta {
    background-color: #0487D9;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #026bb3;
}

.value-tag {
    font-size: 0.8em;
    color: #0487D9;
    font-weight: normal;
}

.service-trust {
    margin: 15px 0;
}

.limited-offer {
    font-size: 0.9em;
    color: #d63031;
    font-weight: 500;
}

/* Feature List */
.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0487D9;
    font-weight: bold;
}

/* CTA Section */
.cta {
    margin-top: 40px;
    text-align: center;
}

.cta h3 {
    font-family: "Raleway", sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
}

.cta-button {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
}

@media (min-width: 830px) and (max-width: 1100px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1101px) {
    .services-container.five-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
    }
}






