/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-856 {
        text-align: center;
        padding: clamp(10rem, 16.82vw, 10.25rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
        background: linear-gradient(135deg, #0F0020 0%, #2E1065 50%, #5B21B6 100%);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    #hero-856 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
    }

    #hero-856 .cs-content {
        max-width: 39.375rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #hero-856 .cs-topper {
        font-size: 1rem;
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--secondaryLight);
        margin-bottom: 0.25rem;
        display: block;
    }

    #hero-856 .cs-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.15em;
        text-align: center;
        max-width: 23ch;
        margin: 0 0 1rem 0;
        color: #fff;
        position: relative;
        font-family: var(--headerFont);
    }

    #hero-856 .cs-text {
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        line-height: 1.6em;
        text-align: center;
        width: 100%;
        max-width: 33.1875rem;
        margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
        color: rgba(255, 255, 255, 0.85);
    }

    #hero-856 .cs-button-solid {
        font-size: 1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #1a1a1a;
        min-width: 9.375rem;
        padding: 0 2rem;
        background-color: var(--secondary);
        border-radius: 2rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: background-color 0.3s, transform 0.3s;
    }

    #hero-856 .cs-button-solid:hover {
        background-color: #F59E0B;
        transform: scale(1.02);
    }

    #hero-856 .cs-picture {
        width: 100%;
        height: clamp(15rem, 25vw, 44.5rem);
        overflow: hidden;
        display: block;
        position: relative;
    }

    #hero-856 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    #hero-856 .cs-wave {
        width: 150%;
        height: auto;
        display: block;
        position: absolute;
        left: 50%;
        bottom: -1px;
        transform: translateX(-50%);
        z-index: -1;
    }

    #hero-856 .cs-wave path {
        fill: #ffffff;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-856 {
        text-align: left;
    }

    #hero-856 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }

    #hero-856 .cs-content {
        width: 45%;
        flex: none;
        align-items: flex-start;
    }

    #hero-856 .cs-title,
    #hero-856 .cs-text {
        text-align: left;
    }

    #hero-856 .cs-picture {
        height: clamp(38.9375rem, 60vw, 50.875rem);
        transform: scale(1.4) translateX(-3%);
    }

    #hero-856 .cs-wave {
        width: 100%;
        left: 0;
        transform: scaleX(-1);
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-856 .cs-wave path {
        fill: var(--dark);
    }

    body.dark-mode #hero-856 .cs-button-solid {
        background-color: var(--secondary);
        color: #1a1a1a;
    }

    body.dark-mode #hero-856 .cs-button-solid:hover {
        background-color: #F59E0B;
    }
}


/*-- -------------------------- -->
<---        Why Choose          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-296 {
        padding: var(--sectionPadding);
        background-color: #fff;
    }

    #services-296 .cs-container {
        width: 100%;
        max-width: 43.75rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #services-296 .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #services-296 .cs-title {
        max-width: 30ch;
    }

    #services-296 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(1rem, 1.5vw, 1.25rem);
    }

    #services-296 .cs-item {
        list-style: none;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 2rem;
        background-color: #fff;
        border-radius: 1rem;
        border: 1px solid #F3F0FF;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    #services-296 .cs-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(91, 33, 182, 0.15);
        cursor: pointer;
    }

    /* Remove old image overlay hover effect */
    #services-296 .cs-image {
        display: none;
    }

    #services-296 .cs-link {
        text-decoration: none;
    }

    #services-296 .cs-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.5rem;
        background-color: rgba(91, 33, 182, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    #services-296 .cs-icon {
        width: auto;
        height: 1.5rem;
        display: block;
    }

    #services-296 .cs-h3 {
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        color: #111827;
        font-weight: 700;
    }

    #services-296 .cs-item-text {
        font-size: 1rem;
        line-height: 1.6em;
        margin: 0;
        color: #6B7280;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-296 .cs-card-group {
        justify-content: space-between;
        align-items: stretch;
        flex-direction: row;
        flex-wrap: wrap;
    }

    #services-296 .cs-item {
        width: 48.6%;
    }
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #services-296 .cs-container {
        max-width: 90rem;
    }

    #services-296 .cs-card-group {
        justify-content: center;
    }

    #services-296 .cs-item {
        width: clamp(23.84%, 22.5vw, 23.95%);
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-296 {
        background-color: var(--dark);
    }

    body.dark-mode #services-296 .cs-topper {
        color: var(--secondaryLight);
    }

    body.dark-mode #services-296 .cs-title,
    body.dark-mode #services-296 .cs-text,
    body.dark-mode #services-296 .cs-h3,
    body.dark-mode #services-296 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #services-296 .cs-item {
        background-color: var(--accent);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    body.dark-mode #services-296 .cs-item:hover {
        background-color: var(--medium);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    body.dark-mode #services-296 .cs-icon-wrapper {
        background-color: rgba(124, 58, 237, 0.2);
    }

    body.dark-mode #services-296 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }

    body.dark-mode #services-296 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #services-296 .cs-item-text {
        color: rgba(250, 251, 252, 0.75);
    }
}


/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbsr-1363 {
        padding: var(--sectionPadding);
        background-color: #F5F3FF;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    #sbsr-1363 .cs-container {
        width: 100%;
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #sbsr-1363 .cs-content {
        text-align: left;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #sbsr-1363 .cs-title {
        max-width: 26ch;
    }

    #sbsr-1363 .cs-text {
        margin-bottom: 1rem;
    }

    #sbsr-1363 .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }

    #sbsr-1363 .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #sbsr-1363 .cs-item {
        list-style: none;
        padding: clamp(1rem, 3vw, 1.5rem);
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 0.75rem;
        border: 1px solid #E5E7EB;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        transition: box-shadow 0.3s;
    }

    #sbsr-1363 .cs-item:hover {
        box-shadow: 0 4px 12px rgba(91, 33, 182, 0.1);
    }

    #sbsr-1363 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

    #sbsr-1363 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }

    #sbsr-1363 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.6em;
        margin: 0;
        color: var(--bodyTextColor);
    }

    #sbsr-1363 .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    #sbsr-1363 .cs-li {
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.5rem;
    }

    #sbsr-1363 .cs-icon {
        width: 1.5rem;
        height: auto;
        margin-top: 1px;
        display: block;
    }

    #sbsr-1363 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 2rem;
        background: linear-gradient(135deg, #5B21B6, #7C3AED);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: opacity 0.3s, transform 0.3s;
    }

    #sbsr-1363 .cs-button-solid:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

    #sbsr-1363 .cs-image-group {
        width: 100%;
        max-width: 36.5rem;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    #sbsr-1363 .cs-picture,
    #sbsr-1363 .cs-background {
        width: 100%;
        border-radius: 1rem;
        overflow: hidden;
        display: block;
        position: relative;
        box-shadow: 0 8px 32px rgba(91, 33, 182, 0.15);
    }

    #sbsr-1363 .cs-picture img,
    #sbsr-1363 .cs-background img {
        width: 100%;
        height: auto;
        display: block;
    }

    #sbsr-1363 .cs-box {
        padding: 1.5rem;
        background: linear-gradient(135deg, #5B21B6, #3B0764);
        border-radius: 0.75rem;
        color: #fff;
        margin-top: -2rem;
        margin-right: 1rem;
        align-self: flex-end;
        position: relative;
        z-index: 1;
    }

    #sbsr-1363 .cs-box-text {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

    /* Hide old bubble animations */
    #sbsr-1363 .cs-bubbles {
        display: none;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbsr-1363 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: center;
    }

    #sbsr-1363 .cs-content {
        width: 50%;
        flex: none;
        order: 2;
    }

    #sbsr-1363 .cs-image-group {
        width: 47%;
        flex: none;
        order: 1;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbsr-1363 {
        background-color: var(--medium);
    }

    body.dark-mode #sbsr-1363 .cs-topper {
        color: var(--secondaryLight);
    }

    body.dark-mode #sbsr-1363 .cs-title,
    body.dark-mode #sbsr-1363 .cs-text,
    body.dark-mode #sbsr-1363 .cs-li,
    body.dark-mode #sbsr-1363 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #sbsr-1363 .cs-text,
    body.dark-mode #sbsr-1363 .cs-li,
    body.dark-mode #sbsr-1363 .cs-item-text {
        opacity: 0.85;
    }

    body.dark-mode #sbsr-1363 .cs-item {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.12);
    }

    body.dark-mode #sbsr-1363 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #sbsr-1363 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
}


/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1388 {
        padding: var(--sectionPadding);
        background-color: #fff;
        position: relative;
        z-index: 1;
    }

    #contact-1388 .cs-container {
        width: 100%;
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }

    #contact-1388 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #contact-1388 .cs-title {
        max-width: 23ch;
    }

    #contact-1388 .cs-text {
        margin-bottom: 1rem;
    }

    #contact-1388 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }

    #contact-1388 .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }

    #contact-1388 .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }

    #contact-1388 .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }

    #contact-1388 .cs-header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        display: block;
    }

    #contact-1388 .cs-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: var(--bodyTextColor);
        display: block;
        position: relative;
    }

    #contact-1388 .cs-link:hover {
        text-decoration: underline;
    }

    #contact-1388 .cs-icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        background-color: #F5F3FF;
        border: 1px solid #E9D5FF;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;
        transition: transform 0.3s;
    }

    #contact-1388 .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
        filter: invert(20%) sepia(90%) saturate(1500%) hue-rotate(250deg);
    }

    #contact-1388 .cs-form {
        width: 100%;
        max-width: 39.375rem;
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        box-sizing: border-box;
        background-color: #fff;
        border: 1px solid #E5E7EB;
        border-radius: 1rem;
        box-shadow: 0 4px 24px rgba(91, 33, 182, 0.06);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    #contact-1388 .cs-h3 {
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
    }

    #contact-1388 .cs-label {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }

    #contact-1388 .cs-input {
        font-size: 1rem;
        font-family: var(--bodyFont);
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.25rem;
        color: var(--headerColor);
        background-color: #fff;
        border-radius: 0.5rem;
        border: 1.5px solid #E5E7EB;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }

    #contact-1388 .cs-input:focus {
        outline: none;
        border-color: #5B21B6;
    }

    #contact-1388 .cs-input::placeholder {
        color: #9CA3AF;
        opacity: 1;
    }

    #contact-1388 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1rem;
        margin-bottom: 0.75rem;
        font-family: var(--bodyFont);
    }

    #contact-1388 .cs-button-solid {
        font-size: 1rem;
        font-family: var(--bodyFont);
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: 0;
        color: #fff;
        width: 100%;
        padding: 0 2rem;
        border-radius: 0.5rem;
        background: linear-gradient(135deg, #5B21B6, #7C3AED);
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: opacity 0.3s, transform 0.3s;
        text-align: center;
    }

    #contact-1388 .cs-button-solid:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    #contact-1388 .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
        cursor: pointer;
    }

    #contact-1388 .cs-submit:hover {
        cursor: pointer;
    }

    /* Removes the up/down arrows on number input fields */
    #cs-form-1388 input[type="number"]::-webkit-outer-spin-button,
    #cs-form-1388 input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    #cs-form-1388 input[type="number"] {
        -moz-appearance: textfield;
    }

    #cs-form-1388 textarea {
        resize: none;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1388 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }

    #contact-1388 .cs-content {
        width: 47%;
        flex: none;
    }

    #contact-1388 .cs-submit {
        width: auto;
    }

    #contact-1388 .cs-button-solid {
        width: auto;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1388 .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }

    #contact-1388 .cs-submit {
        width: auto;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #contact-1388 {
        background-color: var(--dark);
    }

    body.dark-mode #contact-1388 .cs-topper {
        color: var(--secondaryLight);
    }

    body.dark-mode #contact-1388 .cs-title,
    body.dark-mode #contact-1388 .cs-text,
    body.dark-mode #contact-1388 .cs-header,
    body.dark-mode #contact-1388 .cs-link,
    body.dark-mode #contact-1388 .cs-label,
    body.dark-mode #contact-1388 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #contact-1388 .cs-icon-wrapper {
        background-color: rgba(124, 58, 237, 0.2);
        border-color: rgba(124, 58, 237, 0.3);
    }

    body.dark-mode #contact-1388 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }

    body.dark-mode #contact-1388 .cs-form {
        background-color: var(--medium);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    }

    body.dark-mode #contact-1388 .cs-input {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        color: #fff;
    }

    body.dark-mode #contact-1388 .cs-input:focus {
        border-color: var(--primaryLight);
    }

    body.dark-mode #contact-1388 .cs-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    body.dark-mode #contact-1388 .cs-label {
        color: rgba(250, 251, 252, 0.85);
    }
}
