/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 10px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 40%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}


    .hero .hero-wrapper {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero .hero-title {
        font-size: 48px;
        font-weight: 900;
        color: #000000;
        line-height: 1.1;
        margin-bottom: 25px;
        letter-spacing: -0.02em;
    }

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .hero .hero-title {
        font-size: 28px;
    }
}

.hero .hero-title .typed {
    color: #237b80;
}


.hero .hero-description {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}


.hero .hero-image-showcase {
    position: relative;
}

    .hero .hero-image-showcase .image-wrapper {
        position: relative;
        background: var(--surface-color);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    }

        .hero .hero-image-showcase .image-wrapper img {
            border-radius: 15px;
            width: 100%;
            height: auto;
        }

    .hero .hero-image-showcase .floating-card {
        position: absolute;
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        backdrop-filter: blur(10px);
    }

        .hero .hero-image-showcase .floating-card.card-1 {
            top: 20%;
            left: -60px;
            animation: float 3s ease-in-out infinite;
        }

        .hero .hero-image-showcase .floating-card.card-2 {
            bottom: 15%;
            right: -60px;
            animation: float 3s ease-in-out infinite reverse;
        }

        .hero .hero-image-showcase .floating-card .card-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

            .hero .hero-image-showcase .floating-card .card-content .card-icon {
                background: color-mix(in srgb, var(--accent-color), transparent 90%);
                width: 50px;
                height: 50px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .hero .hero-image-showcase .floating-card .card-content .card-icon i {
                    color: var(--accent-color);
                    font-size: 20px;
                }

            .hero .hero-image-showcase .floating-card .card-content .card-info h4 {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--heading-color);
                margin: 0;
                line-height: 1;
            }

            .hero .hero-image-showcase .floating-card .card-content .card-info p {
                margin: 5px 0 0;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 0.85rem;
                white-space: nowrap;
            }

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
    }

        .hero .floating-card.card-1 {
            left: -30px;
            top: 10%;
        }

        .hero .floating-card.card-2 {
            right: -30px;
            bottom: 10%;
        }

        .hero .hero-actions {
            margin-bottom: 40px;
        }
}

@media (max-width: 768px) {
    .hero .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .hero .hero-actions .action-btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }

    .hero .floating-card {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 20px 0 30px;
    }

        .hero .hero-badge {
            margin-bottom: 20px;
        }

        .hero .hero-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .hero .hero-actions {
            margin-bottom: 30px;
        }
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
    background-color: #edf5f5;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
}

    .hero-2 .content-wrapper {
        position: relative;
        z-index: 3;
        padding: 2rem 0;
    }

@media (max-width: 991px) {
    .hero-2 .content-wrapper {
        text-align: center;
        margin-bottom: 3rem;
    }
}


@media (max-width: 767px) {
    .hero-2 .content-wrapper {
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}


.hero-2 .excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .hero-2 .excellence-badge i {
        font-size: 1rem;
    }

.hero-2 .main-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--default-font);
}

@media (max-width: 991px) {
    .hero-2 .main-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-2 .main-heading {
        font-size: 24px;
    }
}

.hero-2 .description-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .hero-2 .description-section {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-2 .description-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.hero-2 .action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .hero-2 .action-link:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        color: var(--contrast-color);
        transform: scale(1.1);
    }

    .hero-2 .action-link i {
        font-size: 1.25rem;
    }

.hero-2 .description-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
    max-width: 400px;
}

@media (max-width: 576px) {
    .hero-2 .description-text {
        text-align: center;
    }
}

.hero-2 .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

    .hero-2 .pattern-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-2 .image-section {
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .hero-2 .image-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero-2 .hero-image {
    position: relative;
    z-index: 2;
}

    .hero-2 .hero-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

.hero-2 .customer-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    z-index: 3;
    max-width: 280px;
}

@media (max-width: 991px) {
    .hero-2 .customer-stats {
        position: static;
        margin-top: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-2 .customer-stats {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.hero-2 .customer-avatars {
    margin-bottom: 1rem;
}

.hero-2 .avatar-list {
    display: flex;
    align-items: center;
    gap: -0.5rem;
}

.hero-2 .avatar-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--surface-color);
    overflow: hidden;
    margin-left: -0.5rem;
    position: relative;
}

    .hero-2 .avatar-item:first-child {
        margin-left: 0;
    }

    .hero-2 .avatar-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-2 .avatar-item.plus-icon {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hero-2 .avatar-item.plus-icon i {
            font-size: 1.2rem;
            font-weight: bold;
        }

.hero-2 .stats-info {
    text-align: left;
}

.hero-2 .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-2 .stats-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/*@media (max-width: 991px) {
  .hero-2 .row {
    flex-direction: column-reverse;
  }
}*/

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--surface-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

    .cards .card-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .cards .card-item .card-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 1rem;
    }

    .cards .card-item h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .cards .card-item p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        font-size: 0.9rem;
        line-height: 1.6;
    }

.cards .image-wrapper img {
    border-radius: 1rem;
}
