﻿/* Services container */
.services-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 1rem;
    font-family: Arial, sans-serif;
}

/* Each service as a card with glass look and glow (no hover or animation) */
.service-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.15), /* Greenish glow */
    0 0 35px 15px rgba(0, 255, 0, 0.1);
    border-radius: 30px; /* Rounded corners between 10px–50px */
    /*    padding: 2rem; */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #222;
    transition: none !important; /* No animations or hover */
}

/* Titles */
.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #a2d39c;
}

/* Button grid layout */
.button-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Ensure buttons full width 80% of card and centered */
.btn-theme .btn-block {
    /*    width: 80% !important;*/
    max-width: 400px;
    /*margin: 0;*/
}

/* For Digital Services buttons, green color overrides */
.digital-services .btn--green {
    background: #16a085; /* Teal shade */
    color: white;
    box-shadow: 0 0 12px 4px rgba(22, 160, 133, 0.55);
    border-radius: 20px;
    transition: none;
}

    .digital-services .btn--green:hover {
        background: #13856e; /* Slightly darker teal if hover desired */
    }
