/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Wrapper */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cta-button:hover {
    background: #5e14b8;
}

/* Services Section */
.services-section {
    text-align: center;
    max-width: 1000px;
    padding: 50px 20px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 30px;
}

.services-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0f172a;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card .icon {
    font-size: 32px;
    color: #7d22e7;
    display: block;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
    margin: 10px 0;
}

.service-card p {
    font-size: 14px;
    color: #4b5563;
}

.cta-section {
    position: relative;
    background: url('../img/breadcrumb_bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the last value (0.5) for opacity */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content p {
    margin-top: 12px;
}

.cta-button {
    margin-top: 20px;
    display: inline-block;
    background: white;
    /* Button background color */
    color: #7d22e7;
    /* Text color */
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    /* Rounded edges */
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #e0d4fc;
    /* Light purple on hover */
    color: #5e14b8;
}

@media screen and (max-width: 768px) {
    .header, .footer {
        text-align: center;
        padding: 10px;
    }
    .form-container {
        width: 100%;
        padding: 20px;
    }
    .service-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}
