﻿:root {
    --primary: #0088cc;
    --primary-dark: #006699;
    --secondary: #00b5ad;
    --accent: #00d68f;
    --dark: #1a2b3d;
    --light: #f8fafc;
    --text: #4a5568;
    --gradient: linear-gradient(135deg,#0088cc 0,#00b5ad 100%);
    --gradient-2: linear-gradient(135deg,#00b5ad 0,#00d68f 100%)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Inter,sans-serif;
    color: var(--text);
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark)
}

p {
    font-size: 16px;
    line-height: 1.6
}

.navbar {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: all .3s ease;
    padding: 15px 0
}

.navbar-brand {
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
    display: flex;
    align-items: center
}

    .navbar-brand i {
        margin-right: 10px;
        font-size: 32px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--text);
    transition: all .3s ease;
    position: relative
}

    .navbar-nav .nav-link:hover {
        color: var(--primary)
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gradient);
        transition: width .3s ease
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%
    }

.btn-primary-custom {
    background: var(--gradient);
    border: 0;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,136,204,.3)
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,136,204,.4)
    }

.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%);
    position: relative;
    overflow: hidden
}

    .page-header h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .page-header p {
        font-size: 20px;
        color: var(--text);
        max-width: 700px
    }

.company-story {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.story-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden
}

    .story-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

.year-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 36px
}

.values-section {
    padding: 80px 0;
    background: white
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    text-align: center
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .3s ease;
    margin-bottom: 30px
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.team-image {
    height: 280px;
    overflow: hidden
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease
    }

.team-card:hover .team-image img {
    transform: scale(1.1)
}

.team-info {
    padding: 25px;
    text-align: center
}

    .team-info h4 {
        margin-bottom: 5px
    }

    .team-info p {
        margin-bottom: 15px;
        color: var(--text)
    }

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px
}

    .team-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(0,136,204,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all .3s ease
    }

        .team-social a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px)
        }

.timeline-section {
    padding: 80px 0;
    background: white
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background: var(--gradient);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px
    }

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%
}

    .timeline-container::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        right: -10px;
        background: white;
        border: 4px solid var(--primary);
        top: 20px;
        border-radius: 50%;
        z-index: 1
    }

.timeline-left {
    left: 0
}

.timeline-right {
    left: 50%
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent
}

.timeline-right::after {
    left: -10px
}

.timeline-content {
    padding: 20px 30px;
    background: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

    .timeline-content h4 {
        margin-bottom: 10px;
        color: var(--primary)
    }

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px
}

.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.cert-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    text-align: center
}

    .cert-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.cert-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gradient);
    color: white;
    font-size: 36px
}

.clients-section {
    padding: 80px 0;
    background: white
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease
}

    .client-logo:hover {
        filter: grayscale(0%);
        opacity: 1
    }

.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center
}

    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
        color: white
    }

    .cta-section p {
        font-size: 20px;
        margin-bottom: 30px;
        color: rgba(255,255,255,.9)
    }

.btn-white {
    background: white;
    color: var(--primary);
    border: 0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.1)
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,.15)
    }

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px
}

.footer-logo {
    font-weight: 800;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

    .footer-logo i {
        margin-right: 10px;
        font-size: 32px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px
}

    .footer-links h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient)
    }

.footer-links ul {
    list-style: none;
    padding: 0
}

    .footer-links ul li {
        margin-bottom: 10px
    }

        .footer-links ul li a {
            color: rgba(255,255,255,.7);
            text-decoration: none;
            transition: all .3s ease
        }

            .footer-links ul li a:hover {
                color: white;
                padding-left: 5px
            }

.social-icons {
    display: flex;
    margin-top: 20px
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: white;
        transition: all .3s ease
    }

        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-3px)
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7)
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 99
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible
    }

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,136,204,.3)
    }

.about-gallery {
    padding: 80px 0;
    background: #f8fbfd;
    text-align: center
}

    .about-gallery h2 {
        font-size: 36px;
        margin-bottom: 10px;
        color: #0a2540
    }

.gallery-subtitle {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px
}

    .gallery-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        transition: transform .4s ease,box-shadow .4s ease;
        cursor: pointer
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,.15)
        }

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(37,211,102,.3)
}

    .whatsapp-widget:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37,211,102,.4)
    }

.dashboard-features {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.dashboard-demo {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.demo-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    overflow: hidden;
    position: relative
}

.demo-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center
}

    .demo-header img {
        height: 30px;
        margin-right: 10px
    }

    .demo-header span {
        font-weight: 600
    }

.demo-content {
    padding: 20px
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px
}

.demo-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .3s ease
}

    .demo-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary)
    }

.demo-tab-content {
    display: none
}

    .demo-tab-content.active {
        display: block
    }

.kpi-card {
    background: rgba(0,136,204,.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px
}

.kpi-details h4 {
    margin-bottom: 5px;
    font-size: 28px;
    color: var(--primary)
}

.kpi-details p {
    margin-bottom: 0;
    font-size: 14px
}

.workflow-diagram {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.workflow-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative
}

    .workflow-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 30px;
        width: 2px;
        height: 40px;
        background: var(--gradient)
    }

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px;
    font-weight: 700
}

.step-details h5 {
    margin-bottom: 5px
}

.step-details p {
    margin-bottom: 0;
    font-size: 14px
}

.staff-table {
    width: 100%;
    border-collapse: collapse
}

    .staff-table th {
        background: var(--gradient);
        color: white;
        padding: 12px 15px;
        text-align: left
    }

    .staff-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee
    }

    .staff-table tr:hover {
        background: rgba(0,136,204,.05)
    }

.status-badge {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600
}

.status-active {
    background: rgba(0,214,143,.1);
    color: var(--accent)
}

.status-inactive {
    background: rgba(231,76,60,.1);
    color: #e74c3c
}

.billing-summary {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.billing-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee
}

    .billing-row:last-child {
        border-bottom: none;
        font-weight: 700;
        font-size: 18px;
        color: var(--primary);
        padding-top: 15px
    }

.chart-container {
    height: 300px;
    margin-top: 20px
}

.analytics-section {
    padding: 80px 0;
    background: white
}

.analytics-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .analytics-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.analytics-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px
}

.portal-features {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.portal-demo {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,102,204,.05) 0,rgba(0,119,204,.05) 100%)
}

.demo-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    overflow: hidden;
    position: relative
}

.demo-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center
}

    .demo-header img {
        height: 30px;
        margin-right: 10px
    }

    .demo-header span {
        font-weight: 600
    }

.demo-content {
    padding: 20px
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px
}

.demo-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .3s ease
}

    .demo-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary)
    }

.demo-tab-content {
    display: none
}

    .demo-tab-content.active {
        display: block
    }

.order-card {
    background: rgba(0,102,204,.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.order-time {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}

    .order-time .time {
        font-size: 24px;
        font-weight: 700
    }

    .order-time .duration {
        font-size: 12px
    }

.order-details h5 {
    margin-bottom: 5px
}

.order-details p {
    margin-bottom: 0;
    font-size: 14px
}

.client-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    display: flex;
    align-items: center
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,102,204,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px
}

.client-details h5 {
    margin-bottom: 5px
}

.client-details p {
    margin-bottom: 0;
    font-size: 14px
}

.invoice-form {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.form-group {
    margin-bottom: 20px
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block
    }

.form-control {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    font-size: 16px;
    transition: all .3s ease
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(0,102,204,.1)
    }

.product-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

    .product-row .form-control {
        margin-right: 10px
    }

.btn-remove {
    background: #e74c3c;
    color: white;
    border: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.btn-add {
    background: var(--accent);
    color: white;
    border: 0;
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px
}

.dashboard-section {
    padding: 80px 0;
    background: white
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .dashboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.dashboard-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px
}

.dashboard-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px
}

.dashboard-label {
    font-size: 16px;
    color: var(--text)
}

.chart-container {
    height: 300px;
    margin-top: 20px
}

.blog-section {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.blog-image {
    height: 220px;
    overflow: hidden
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05)
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text)
}

    .blog-meta .author {
        display: flex;
        align-items: center;
        margin-right: 15px
    }

        .blog-meta .author img {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 5px
        }

    .blog-meta .date {
        display: flex;
        align-items: center
    }

        .blog-meta .date i {
            margin-right: 5px;
            color: var(--primary)
        }

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    transition: all .3s ease
}

.blog-card:hover .blog-title {
    color: var(--primary)
}

.blog-excerpt {
    margin-bottom: 20px;
    flex-grow: 1
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.blog-tag {
    padding: 5px 12px;
    background: rgba(0,136,204,.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

    .read-more:hover {
        color: var(--primary-dark)
    }

    .read-more i {
        margin-left: 5px;
        transition: all .3s ease
    }

    .read-more:hover i {
        transform: translateX(3px)
    }

.blog-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text)
}

    .blog-stats span {
        display: flex;
        align-items: center
    }

    .blog-stats i {
        margin-right: 5px
    }

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 60px
}

.pagination {
    display: flex;
    gap: 5px
}

    .pagination li {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: white;
        border: 1px solid #e2e8f0;
        color: var(--text);
        font-weight: 600;
        cursor: pointer;
        transition: all .3s ease
    }

        .pagination li:hover {
            background: rgba(0,136,204,.1);
            color: var(--primary)
        }

        .pagination li.active {
            background: var(--gradient);
            color: white;
            border-color: transparent
        }

.contact-section {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

.form-group {
    margin-bottom: 25px
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block
    }

.form-control {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    font-size: 16px;
    transition: all .3s ease
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(0,136,204,.1)
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0
    }

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    display: flex;
    align-items: center
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px;
    flex-shrink: 0
}

.info-content h4 {
    margin-bottom: 10px
}

.info-content p {
    margin-bottom: 0
}

.portal-features {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.portal-demo {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.demo-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    overflow: hidden;
    position: relative
}

.demo-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center
}

    .demo-header img {
        height: 30px;
        margin-right: 10px
    }

    .demo-header span {
        font-weight: 600
    }

.demo-content {
    padding: 20px
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px
}

.demo-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .3s ease
}

    .demo-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary)
    }

.demo-tab-content {
    display: none
}

    .demo-tab-content.active {
        display: block
    }

.appointment-card {
    background: rgba(0,136,204,.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.appointment-time {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}

    .appointment-time .time {
        font-size: 24px;
        font-weight: 700
    }

    .appointment-time .duration {
        font-size: 12px
    }

.appointment-details h5 {
    margin-bottom: 5px
}

.appointment-details p {
    margin-bottom: 0;
    font-size: 14px
}

.patient-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    display: flex;
    align-items: center
}

.patient-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,136,204,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px
}

.patient-details h5 {
    margin-bottom: 5px
}

.patient-details p {
    margin-bottom: 0;
    font-size: 14px
}

.prescription-form {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.form-group {
    margin-bottom: 20px
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block
    }

.form-control {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    font-size: 16px;
    transition: all .3s ease
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(0,136,204,.1)
    }

.medicine-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

    .medicine-row .form-control {
        margin-right: 10px
    }

.btn-remove {
    background: #e74c3c;
    color: white;
    border: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.btn-add {
    background: var(--accent);
    color: white;
    border: 0;
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px
}

.dashboard-section {
    padding: 80px 0;
    background: white
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .dashboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.dashboard-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 24px
}

.dashboard-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px
}

.dashboard-label {
    font-size: 16px;
    color: var(--text)
}

.chart-container {
    height: 300px;
    margin-top: 20px
}

.features-overview {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-details {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 40px;
    transition: all .3s ease
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-header {
    background: var(--gradient);
    color: white;
    padding: 30px;
    position: relative
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    color: white;
    font-size: 30px;
    margin-bottom: 20px
}

.feature-content {
    padding: 30px
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

    .feature-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
        display: flex;
        align-items: center
    }

        .feature-list li:last-child {
            border-bottom: none
        }

        .feature-list li i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 18px
        }

.feature-image {
    height: 300px;
    overflow: hidden
}

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease
    }

.feature-card:hover .feature-image img {
    transform: scale(1.05)
}

.feature-tabs {
    padding: 80px 0;
    background: white
}

.nav-tabs {
    border: 0;
    margin-bottom: 30px;
    justify-content: center
}

    .nav-tabs .nav-link {
        border: 0;
        background: transparent;
        color: var(--text);
        font-weight: 600;
        padding: 12px 25px;
        margin: 0 5px;
        border-radius: 50px;
        transition: all .3s ease
    }

        .nav-tabs .nav-link:hover {
            background: rgba(0,136,204,.1);
            color: var(--primary)
        }

        .nav-tabs .nav-link.active {
            background: var(--gradient);
            color: white
        }

.tab-content {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%);
    position: relative;
    overflow: hidden
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text)
}

.hero-image {
    position: relative;
    height: 500px
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    padding: 20px;
    transition: all .3s ease;
    animation: float 6s ease-in-out infinite
}

    .floating-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15)
    }

.floating-card-1 {
    top: 20px;
    left: 0;
    width: 250px;
    animation-delay: 0s
}

.floating-card-2 {
    top: 100px;
    right: 0;
    width: 220px;
    animation-delay: 1s
}

.floating-card-3 {
    bottom: 20px;
    left: 50px;
    width: 280px;
    animation-delay: 2s
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0px)
    }
}

.features-overview {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .3s ease;
    height: 100%;
    position: relative;
    overflow: hidden
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: all .3s ease
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px
}

.stat-label {
    font-size: 18px;
    color: var(--text)
}

.testimonials-section {
    padding: 80px 0;
    background: white
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 30px;
    position: relative
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 80px;
        color: rgba(0,136,204,.1);
        font-family: Georgia,serif
    }

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover
}

.author-info h5 {
    margin: 0;
    font-size: 18px;
    color: var(--dark)
}

.gallery-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg,#0ea5e9,#0284c7);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: transform .3s ease
}

    .gallery-card img {
        width: 22px;
        height: 22px
    }

    .gallery-card:hover {
        transform: translateY(-2px)
    }

.author-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text)
}

.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s ease
}

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1
    }

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s ease
}

    .loader.hidden {
        opacity: 0;
        pointer-events: none
    }

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0,136,204,.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.demo-modal .modal-content {
    border-radius: 15px;
    border: 0;
    overflow: hidden
}

.demo-modal .modal-header {
    background: var(--gradient);
    color: white;
    border: 0
}

.demo-modal .modal-title {
    font-weight: 700
}

.demo-modal .btn-close {
    filter: brightness(0) invert(1)
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    font-size: 16px;
    transition: all .3s ease
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(0,136,204,.1)
    }

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px
}

.portal-features {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient)
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.portal-demo {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.demo-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    overflow: hidden;
    position: relative
}

.demo-header {
    background: var(--gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center
}

    .demo-header img {
        height: 30px;
        margin-right: 10px
    }

    .demo-header span {
        font-weight: 600
    }

.demo-content {
    padding: 20px
}

.demo-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px
}

.demo-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all .3s ease
}

    .demo-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary)
    }

.demo-tab-content {
    display: none
}

    .demo-tab-content.active {
        display: block
    }

.appointment-card {
    background: rgba(0,136,204,.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center
}

.appointment-date {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}

    .appointment-date .day {
        font-size: 24px;
        font-weight: 700
    }

    .appointment-date .month {
        font-size: 12px
    }

.appointment-details h5 {
    margin-bottom: 5px
}

.appointment-details p {
    margin-bottom: 0;
    font-size: 14px
}

.report-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    display: flex;
    align-items: center
}

.report-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,136,204,.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px
}

.report-details h5 {
    margin-bottom: 5px
}

.report-details p {
    margin-bottom: 0;
    font-size: 14px
}

.bill-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    border-left: 4px solid var(--primary)
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

    .bill-header h5 {
        margin-bottom: 0
    }

    .bill-header .status {
        padding: 5px 10px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600
    }

.status.paid {
    background: rgba(0,214,143,.1);
    color: var(--accent)
}

.status.pending {
    background: rgba(255,193,7,.1);
    color: #ffc107
}

.bill-details {
    display: flex;
    justify-content: space-between;
    font-size: 14px
}

.profile-section {
    padding: 80px 0;
    background: white
}

.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    overflow: hidden
}

.profile-header {
    background: var(--gradient);
    color: white;
    padding: 30px;
    text-align: center
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary)
}

.profile-body {
    padding: 30px
}

.form-group {
    margin-bottom: 20px
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block
    }

.form-control {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    font-size: 16px;
    transition: all .3s ease
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .25rem rgba(0,136,204,.1)
    }

.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.security-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease;
    text-align: center
}

    .security-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.security-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gradient);
    color: white;
    font-size: 36px
}

.pricing-section {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

    .pricing-card.featured {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0,136,204,.2)
    }

        .pricing-card.featured .pricing-header {
            background: var(--gradient);
            color: white
        }

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

    .pricing-header h3 {
        font-size: 28px;
        margin-bottom: 10px
    }

    .pricing-header .price {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 10px
    }

        .pricing-header .price span {
            font-size: 18px;
            font-weight: 400
        }

    .pricing-header .price-text {
        font-size: 16px;
        color: var(--text)
    }

.pricing-card.featured .pricing-header .price-text {
    color: rgba(255,255,255,.9)
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1
}

    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,.05);
        display: flex;
        align-items: center
    }

        .pricing-features li:last-child {
            border-bottom: none
        }

        .pricing-features li i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 18px
        }

.pricing-footer {
    padding: 0 30px 30px
}

.btn-pricing {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-pricing-primary {
    background: var(--gradient);
    border: 0;
    color: white
}

    .btn-pricing-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,136,204,.4)
    }

.btn-pricing-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

    .btn-pricing-outline:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px)
    }

.addons-section {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.addon-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
    transition: all .3s ease
}

    .addon-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.addon-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gradient);
    color: white;
    font-size: 30px
}

.addon-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px
}

.faq-section {
    padding: 80px 0;
    background: white
}

.accordion-item {
    border: 0;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.accordion-button {
    background: white;
    color: var(--dark);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none
}

    .accordion-button:not(.collapsed) {
        background: var(--gradient);
        color: white
    }

    .accordion-button:focus {
        box-shadow: none
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230088cc'%3e%3cpath fill-rule=evenodd d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule=evenodd d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
    }

.accordion-body {
    padding: 20px 25px
}

.solution-tabs {
    padding: 80px 0;
    background: white
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 42px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px
        }

.nav-pills {
    border: 0;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap
}

    .nav-pills .nav-link {
        border: 0;
        background: transparent;
        color: var(--text);
        font-weight: 600;
        padding: 12px 25px;
        margin: 5px;
        border-radius: 50px;
        transition: all .3s ease
    }

        .nav-pills .nav-link:hover {
            background: rgba(0,136,204,.1);
            color: var(--primary)
        }

        .nav-pills .nav-link.active {
            background: var(--gradient);
            color: white
        }

.tab-content {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

.solution-details {
    padding: 80px 0;
    background: linear-gradient(135deg,rgba(0,136,204,.05) 0,rgba(0,181,173,.05) 100%)
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    margin-bottom: 40px;
    transition: all .3s ease
}

    .solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1)
    }

.solution-header {
    background: var(--gradient);
    color: white;
    padding: 30px;
    position: relative
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    color: white;
    font-size: 30px;
    margin-bottom: 20px
}

.solution-content {
    padding: 30px
}

.pain-points {
    background: rgba(0,136,204,.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px
}

    .pain-points h4 {
        color: var(--primary);
        margin-bottom: 15px
    }

    .pain-points ul {
        list-style: none;
        padding: 0
    }

        .pain-points ul li {
            padding: 8px 0;
            display: flex;
            align-items: center
        }

            .pain-points ul li i {
                color: #e74c3c;
                margin-right: 15px;
                font-size: 18px
            }

.solution-benefits {
    margin-bottom: 30px
}

    .solution-benefits h4 {
        color: var(--accent);
        margin-bottom: 15px
    }

    .solution-benefits ul {
        list-style: none;
        padding: 0
    }

        .solution-benefits ul li {
            padding: 8px 0;
            display: flex;
            align-items: center
        }

            .solution-benefits ul li i {
                color: var(--accent);
                margin-right: 15px;
                font-size: 18px
            }

.solution-image {
    height: 300px;
    overflow: hidden
}

    .solution-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all .3s ease
    }

.solution-card:hover .solution-image img {
    transform: scale(1.05)
}

@media (max-width:992px) {
    .blog-card {
        margin-bottom: 30px
    }

    .pricing-card.featured {
        transform: scale(1)
    }
}

@media (max-width:768px) {
    .page-header h1 {
        font-size: 36px
    }

    .page-header p {
        font-size: 18px
    }

    .section-title h2 {
        font-size: 32px
    }

    .timeline::after {
        left: 31px
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px
    }

        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent
        }

    .timeline-left::after, .timeline-right::after {
        left: 21px
    }

    .timeline-right {
        left: 0
    }

    .cta-section h2 {
        font-size: 32px
    }

    .nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 14px;
        margin: 2px
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .blog-stats {
        margin-top: 10px
    }

    .info-card {
        margin-bottom: 20px
    }

    .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
        margin: 0 2px
    }

    .pricing-header .price {
        font-size: 36px
    }

    .stat-number {
        font-size: 36px
    }

    .hero-image {
        height: 400px;
        margin-top: 40px
    }

    .floating-card {
        position: relative;
        margin-bottom: 20px;
        animation: none
    }

    .floating-card-1, .floating-card-2, .floating-card-3 {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%
    }
}
