﻿.heros {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, #1f8ccc, transparent 95%) 100%);
    overflow: hidden;
}

    .heros::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("img/abstract-bg-3.webp") center/cover;
        opacity: 0.08;
        z-index: 0;
    }

    .heros .container {
        position: relative;
        z-index: 1;
    }

    .heros .hero-content {
        padding: 2rem 0;
    }

        .heros .hero-content .trust-badges {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

            .heros .hero-content .trust-badges .badge-item {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.5rem 1rem;
                background: color-mix(in srgb, #1f8ccc, transparent 90%);
                border-radius: 50px;
                color: #1f8ccc;
                font-size: 0.875rem;
                font-weight: 500;
            }

                .heros .hero-content .trust-badges .badge-item i {
                    font-size: 1rem;
                }

@media (max-width: 576px) {
    .heros .hero-content .trust-badges {
        gap: 0.75rem;
    }

        .heros .hero-content .trust-badges .badge-item {
            font-size: 0.75rem;
            padding: 0.4rem 0.8rem;
        }
}

.heros .hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #112344;
}

    .heros .hero-content h1 .highlights {
        color: #01a0a8;
        position: relative;
    }

        .heros .hero-content h1 .highlights::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #01a0a8;
            border-radius: 2px;
        }

@media (max-width: 992px) {
    .heros .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .heros .hero-content h1 {
        font-size: 2rem;
    }
}

.heros .hero-content h3 {
    font-weight: 500;
    margin-bottom: 30px;
}

.heros .hero-content .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, #3c4049, transparent 20%);
    margin-bottom: 2rem;
    max-width: 500px;
}

.heros .hero-content .hero-stats {
    display: flex;
    gap: 2rem;
}

    .heros .hero-content .hero-stats .stat-item {
        text-align: left;
    }

        .heros .hero-content .hero-stats .stat-item h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f8ccc;
            margin: 0;
            line-height: 1;
        }

        .heros .hero-content .hero-stats .stat-item p {
            color: color-mix(in srgb, #3c4049, transparent 30%);
            margin: 0.25rem 0 0 0;
            font-size: 1rem;
            font-weight: 500;
            color: #000;
        }

@media (max-width: 576px) {
    .heros .hero-content .hero-stats {
        gap: 1rem;
    }

        .heros .hero-content .hero-stats .stat-item h3 {
            font-size: 1.5rem;
        }
}

.heros .hero-content .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

    .heros .hero-content .hero-actions .btn {
        padding: 1rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

        .heros .hero-content .hero-actions .btn.btn-primary {
            background: #1f8ccc;
            color: #ffffff;
        }

            .heros .hero-content .hero-actions .btn.btn-primary:hover {
                background: color-mix(in srgb, #1f8ccc, black 10%);
                transform: translateY(-2px);
            }

        .heros .hero-content .hero-actions .btn.btn-outline {
            color: #1f8ccc;
            border-color: #1f8ccc;
            background: transparent;
        }

            .heros .hero-content .hero-actions .btn.btn-outline:hover {
                background: #1f8ccc;
                color: #ffffff;
            }

@media (max-width: 576px) {
    .heros .hero-content .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .heros .hero-content .hero-actions .btn {
            text-align: center;
            justify-content: center;
        }
}

.heros .hero-content .emergency-contact {
    display: inline-block;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: color-mix(in srgb, #ffffff, transparent 50%);
    border: 1px solid color-mix(in srgb, #1f8ccc, transparent 80%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

    .heros .hero-content .emergency-contact .emergency-icon {
        width: 50px;
        height: 50px;
        background: #1f8ccc;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
    }

    .heros .hero-content .emergency-contact .emergency-info small {
        display: block;
        color: #3c4049;
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .heros .hero-content .emergency-contact .emergency-info strong {
        color: #112344;
        font-size: 1.125rem;
        font-weight: 600;
    }

.heros .hero-visual {
    position: relative;
    height: 600px;
}

    .heros .hero-visual .main-image {
        position: relative;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px color-mix(in srgb, #3c4049, transparent 85%);
    }

        .heros .hero-visual .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .heros .hero-visual .main-image .floating-card {
            position: absolute;
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 15px 40px color-mix(in srgb, #3c4049, transparent 85%);
            backdrop-filter: blur(10px);
            border: 1px solid color-mix(in srgb, #3c4049, transparent 90%);
        }

            .heros .hero-visual .main-image .floating-card.appointment-card {
                top: 20px;
                right: 20px;
                display: flex;
                align-items: center;
                gap: 1rem;
                min-width: 200px;
            }

                .heros .hero-visual .main-image .floating-card.appointment-card .card-icon {
                    width: 50px;
                    height: 50px;
                    background: color-mix(in srgb, #1f8ccc, transparent 90%);
                    color: #1f8ccc;
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.25rem;
                }

                .heros .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
                    margin: 0 0 0.25rem 0;
                    color: #112344;
                    font-weight: 600;
                    font-size: 0.875rem;
                }

                .heros .hero-visual .main-image .floating-card.appointment-card .card-content p {
                    margin: 0 0 0.25rem 0;
                    color: #3c4049;
                    font-weight: 600;
                    font-size: 1rem;
                }

                .heros .hero-visual .main-image .floating-card.appointment-card .card-content small {
                    color: color-mix(in srgb, #3c4049, transparent 40%);
                    font-size: 0.75rem;
                }

            .heros .hero-visual .main-image .floating-card.rating-card {
                bottom: 20px;
                left: 20px;
                text-align: center;
                min-width: 140px;
            }

                .heros .hero-visual .main-image .floating-card.rating-card .rating-stars {
                    color: #ffc107;
                    margin-bottom: 0.5rem;
                }

                    .heros .hero-visual .main-image .floating-card.rating-card .rating-stars i {
                        font-size: 1rem;
                    }

                .heros .hero-visual .main-image .floating-card.rating-card h6 {
                    margin: 0 0 0.25rem 0;
                    color: #112344;
                    font-weight: 700;
                    font-size: 1.125rem;
                }

                .heros .hero-visual .main-image .floating-card.rating-card small {
                    color: color-mix(in srgb, #3c4049, transparent 40%);
                    font-size: 0.75rem;
                }

@media (max-width: 768px) {
    .heros .hero-visual .main-image .floating-card.appointment-card {
        right: 10px;
        top: 10px;
        padding: 1rem;
        min-width: 160px;
    }

    .heros .hero-visual .main-image .floating-card.rating-card {
        left: 10px;
        bottom: 10px;
        padding: 1rem;
        min-width: 120px;
    }
}

.heros .hero-visual .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

    .heros .hero-visual .background-elements .element {
        position: absolute;
        border-radius: 50%;
        background: #1f8ccc;
        opacity: 0.1;
    }

        .heros .hero-visual .background-elements .element.element-1 {
            width: 200px;
            height: 200px;
            top: -50px;
            left: -50px;
            animation: float1 6s ease-in-out infinite;
        }

        .heros .hero-visual .background-elements .element.element-2 {
            width: 150px;
            height: 150px;
            bottom: -30px;
            right: -30px;
            animation: float2 8s ease-in-out infinite;
        }

        .heros .hero-visual .background-elements .element.element-3 {
            width: 100px;
            height: 100px;
            top: 50%;
            left: -25px;
            transform: translateY(-50%);
            animation: float3 7s ease-in-out infinite;
        }

@media (max-width: 992px) {
    .heros .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
}

@keyframes float1 {

    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float2 {

    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-180deg);
    }
}

@keyframes float3 {

    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-70%) rotate(180deg);
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.aboutus .about-content h3 {
    font-weight: 700;
    font-size: 26px;
}

.aboutus .about-content ul {
    list-style: none;
    padding: 0;
}

    .aboutus .about-content ul li {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

        .aboutus .about-content ul li:first-child {
            margin-top: 35px;
        }

.aboutus .about-content img {
    background: #ffffff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-right: 15px;
    color: #00a19e;
    border-radius: 50px;
    padding: 10px;
}

.aboutus .about-content ul i {
    background: #ffffff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-right: 15px;
    color: #00a19e;
    border-radius: 50px;
}

.aboutus .about-content ul h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom:0px;
}

.aboutus .about-content ul p {
    font-size: 15px;
}

.aboutus .about-content p:last-child {
    margin-bottom: 0;
}


.aboutus img {
    border-radius: 20px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px color-mix(in srgb, #00a19e, transparent 90%);
}

.features .nav-tabs {
    border: 0;
    gap: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .features .nav-tabs {
        flex-direction: column;
        gap: 15px;
    }
}

.features .nav-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 992px) {
    .features .nav-item {
        flex: none;
    }
}

.features .nav-link {
    background: color-mix(in srgb, #ffffff, #00a19e 3%);
    border: 1px solid color-mix(in srgb, #00a19e, transparent 85%);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 80px;
    cursor: pointer;
}

    .features .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #00a19e, color-mix(in srgb, #00a19e, #193838 20%));
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }

@media (max-width: 768px) {
    .features .nav-link {
        padding: 20px 15px;
        min-height: 70px;
    }
}

.features .nav-link .tab-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a19e, color-mix(in srgb, #00a19e, #193838 20%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-weight: 700;
}

    .features .nav-link .tab-icon i {
        font-size: 24px;
        color: #ffffff;
    }

@media (max-width: 768px) {
    .features .nav-link .tab-icon {
        width: 40px;
        height: 40px;
    }

        .features .nav-link .tab-icon i {
            font-size: 20px;
        }
}

.features .nav-link .tab-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

    .features .nav-link .tab-content h5 {
        margin: 0 0 4px 0;
        font-size: 16px;
        font-weight: 600;
        color: #193838;
        transition: color 0.4s ease;
    }

@media (max-width: 768px) {
    .features .nav-link .tab-content h5 {
        font-size: 14px;
    }
}

.features .nav-link .tab-content span {
    font-size: 13px;
    color: color-mix(in srgb, #00a19e, transparent 30%);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .features .nav-link .tab-content span {
        font-size: 12px;
    }
}

.features .nav-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 15px 40px color-mix(in srgb, #00a19e, transparent 70%);
}

    .features .nav-link:hover::before {
        opacity: 1;
    }

    .features .nav-link:hover .tab-icon {
        background: #ffffff;
        box-shadow: 0 8px 25px color-mix(in srgb, #00a19e, transparent 80%);
    }

        .features .nav-link:hover .tab-icon i {
            color: #00a19e;
        }

    .features .nav-link:hover .tab-content h5,
    .features .nav-link:hover .tab-content span {
        color: #fff;
    }

.features .nav-link.active {
    border-color: #00a19e;
    box-shadow: 0 15px 40px color-mix(in srgb, #00a19e, transparent 70%);
}

    .features .nav-link.active::before {
        opacity: 1;
    }

.features .nav-link:hover .tab-icon {
    background: #ffffff;
    color: #00a19e;
}

.features .nav-link.active .tab-icon {
    background: #ffffff;
    color: #00a19e;
}

    .features .nav-link.active .tab-icon i {
        color: #00a19e;
    }

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
    color: #ffffff;
}

.features .tab-content .tab-pane {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .features .tab-content .tab-pane {
        padding: 20px 0;
    }
}

.features .content-wrapper {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .features .content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.features .content-wrapper .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a19e, color-mix(in srgb, #00a19e, #193838 20%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px color-mix(in srgb, #00a19e, transparent 70%);
}

    .features .content-wrapper .icon-badge i {
        font-size: 30px;
        color: #ffffff;
    }

.features .content-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: #193838;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .features .content-wrapper h3 {
        font-size: 24px;
    }
}

.features .content-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
    gap: 15px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.features .content-wrapper .feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .features .content-wrapper .feature-grid .feature-item i {
        font-size: 16px;
        color: #00a19e;
        flex-shrink: 0;
    }

    .features .content-wrapper .feature-grid .feature-item span {
        font-size: 14px;
        color: #444444;
        line-height: 1.4;
    }

.features .content-wrapper .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .stats-row {
        gap: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item {
    text-align: left;
}

    .features .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: #00a19e;
        margin-bottom: 5px;
    }

@media (max-width: 576px) {
    .features .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, #00a19e, transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
    background: linear-gradient(135deg, #00a19e, color-mix(in srgb, #00a19e, #193838 20%));
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px color-mix(in srgb, #00a19e, transparent 70%);
}

    .features .content-wrapper .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px color-mix(in srgb, #00a19e, transparent 60%);
        color: #ffffff;
    }

        .features .content-wrapper .btn-primary:hover i {
            transform: translateX(5px);
        }

    .features .content-wrapper .btn-primary i {
        transition: transform 0.3s ease;
    }

.features .visual-content {
    position: relative;
}

    .features .visual-content .main-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px color-mix(in srgb, #00a19e, transparent 85%);
    }

        .features .visual-content .main-image img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
        }

        .features .visual-content .main-image:hover img {
            transform: scale(1.05);
        }

    .features .visual-content .floating-card {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: #ffffff;
        padding: 20px 25px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 15px 40px color-mix(in srgb, #00a19e, transparent 80%);
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.8s ease 0.6s forwards;
    }

@media (max-width: 576px) {
    .features .visual-content .floating-card {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
        gap: 10px;
    }
}

.features .visual-content .floating-card i {
    font-size: 28px;
    color: #00a19e;
}

@media (max-width: 576px) {
    .features .visual-content .floating-card i {
        font-size: 24px;
    }
}

.features .visual-content .floating-card .card-content span {
    display: block;
    font-size: 12px;
    color: color-mix(in srgb, #00a19e, transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #193838;
}

@media (max-width: 576px) {
    .features .visual-content .floating-card .card-content strong {
        font-size: 14px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*--------------------------------------------------------------
# profile Section
--------------------------------------------------------------*/
.profile .content {
    background-color: color-mix(in srgb, #4154f1, transparent 95%);
    padding: 40px;
}

    .profile .content h3 {
        font-size: 14px;
        font-weight: 700;
        color: #4154f1;
        text-transform: uppercase;
    }

    .profile .content h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .profile .content p {
        margin: 15px 0 30px 0;
        line-height: 24px;
    }

    .profile .content .btn-read-more {
        color: #ffffff;
        background: #4154f1;
        line-height: 0;
        padding: 15px 40px;
        border-radius: 4px;
        transition: 0.5s;
        box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    }

        .profile .content .btn-read-more span {
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .profile .content .btn-read-more i {
            margin-left: 5px;
            font-size: 18px;
            transition: 0.3s;
        }

        .profile .content .btn-read-more:hover i {
            transform: translateX(5px);
        }

.profile img {
    border-radius: 20px;
}

.quotes {
    padding: 100px 60px;
    background: #00A0A8;
    color: #fff;
    border-radius: 10px;
}
