* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: calc(1.325rem + .9vw);
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

a:hover {
    opacity: .85;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.display-3 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 700;
    line-height: 1.1;
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 700;
    line-height: 1.1;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.form-label {
    margin-bottom: .5rem;
    display: inline-block;
    font-weight: 500;
}

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: .825rem 1.1875rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #dfe3e8;
    border-radius: .5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #7c3aed;
    box-shadow: 0 0 0 0.25rem rgba(124, 58, 237, 0.15);
}

.form-select {
    padding-right: 3rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #dfe3e8;
    appearance: none;
    border-radius: .25rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.form-check-input:checked {
    background-color: #7c3aed;
    border-color: #7c3aed;
}

.form-check-label {
    cursor: pointer;
    font-size: .95rem;
}

.btn {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: .825rem 1.5rem;
    font-size: 1rem;
    border-radius: .5rem;
    transition: all .3s ease;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: .625rem;
}

.btn-action-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-action-primary:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    color: #fff;
    opacity: 1;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #7c3aed;
    border-color: #fff;
}

.text-primary-custom {
    color: #7c3aed;
}

.text-success-custom {
    color: #10b981;
}

.text-warning-custom {
    color: #f59e0b;
}

.text-info-custom {
    color: #06b6d4;
}

.bg-primary-custom {
    background-color: #7c3aed;
}

.bg-success-custom {
    background-color: #10b981;
}

.bg-warning-custom {
    background-color: #f59e0b;
}

.bg-info-custom {
    background-color: #06b6d4;
}

.bg-primary-light {
    background-color: rgba(124, 58, 237, 0.1);
}

.bg-success-light {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-warning-light {
    background-color: rgba(245, 158, 11, 0.1);
}

.bg-info-light {
    background-color: rgba(6, 182, 212, 0.1);
}

.bg-light {
    background-color: #f8fafc;
}

.bg-white {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #1e293b;
}

.text-light {
    color: #cbd5e1;
}

.text-white {
    color: #ffffff;
}

.text-muted {
    color: #64748b;
}

.text-dark {
    color: #1e293b;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(168, 85, 247, 0.95) 100%), url('../imgui/imgef3.webp') center/cover no-repeat;
    position: relative;
}

.mx-auto{
    margin-left: auto;
    margin-right:auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.bg-accent-gradient {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.service-card {
    transition: transform .3s ease, box-shadow .3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(1) {
    border-top-color: #7c3aed;
}

.service-card:nth-child(2) {
    border-top-color: #10b981;
}

.service-card:nth-child(3) {
    border-top-color: #f59e0b;
}

.icon-wrapper {
    transition: transform .3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded-3 {
    border-radius: .75rem;
}

.rounded-4 {
    border-radius: 1rem;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-decoration-none {
    text-decoration: none;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.g-4 > * {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
}

.g-6 > * {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 2rem;
}

.g-8 > * {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 2.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-15 {
    margin-bottom: 4rem;
}

.mt-8 {
    margin-top: 2rem;
}

.me-2 {
    margin-right: .5rem;
}

.me-3 {
    margin-right: .75rem;
}

.me-4 {
    margin-right: 1rem;
}

.ms-lg-8 {
    margin-left: 0;
}

.pt-8 {
    padding-top: 2rem;
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-15 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.p-3 {
    padding: .75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.fs-1 {
    font-size: 1.5rem;
}

.fs-2 {
    font-size: 1.375rem;
}

.fs-3 {
    font-size: 1.25rem;
}

.fs-4 {
    font-size: 1.125rem;
}

.fs-5 {
    font-size: 1rem;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.opacity-85 {
    opacity: .85;
}

.opacity-90 {
    opacity: .9;
}

.border-top {
    border-top: 1px solid;
}

.border-secondary {
    border-color: #475569;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .p-md-12 {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .py-lg-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .py-lg-25 {
        padding-top: 6.5rem;
        padding-bottom: 6.5rem;
    }

    .ms-lg-8 {
        margin-left: 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .display-3 {
        font-size: 4.5rem;
    }

    .display-4 {
        font-size: 3.5rem;
    }

    .display-5 {
        font-size: 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 991px) {
    .order-2 {
        order: 2;
    }

    .order-1 {
        order: 1;
    }
}