/* Ensure nav links are horizontal */
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
body {
    background: #fff;
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    min-height: 100vh;
    padding-top: 76px;
}

.breadcrumb-bar {
    width: 100%;
    background: #f7fbff;
    border-bottom: 2px solid #eaf6ff;
    box-shadow: 0 2px 16px 0 rgba(0,163,255,0.06);
    padding: 10px 32px 8px 32px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}
.breadcrumb-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-list li {
    margin: 0;
    color: #0077b6;
    font-weight: 600;
    font-size: 1rem;
}
.breadcrumb-list a {
    color: #0077b6;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}
.breadcrumb-list a:hover {
    color: #00A3FF;
}
.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    color: #0077b6;
    margin: 0 8px;
    background: linear-gradient(90deg, #0077b6 0%, #00A3FF 100%);
    color: #fff;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 48px;
    padding-right: 48px;
    text-align: center;
    border-radius: 0;
    min-height: 72px;
    box-sizing: border-box;
    justify-content: space-between;
    min-height: 70vh;
    padding: 64px 8vw 32px 8vw;
    background: linear-gradient(120deg, #eaf6ff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 540px;
    z-index: 2;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0077b6;
    margin-bottom: 18px;
    letter-spacing: -1px;
    animation: fadeInUp 1.2s cubic-bezier(.22,1,.36,1);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 32px;
    animation: fadeInUp 1.6s cubic-bezier(.22,1,.36,1);
}
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #00A3FF 0%, #0077b6 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 24px 0 rgba(0,163,255,0.18);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
    will-change: transform, box-shadow;
    animation: fadeInUp 2s cubic-bezier(.22,1,.36,1);
}
.cta-btn:hover {
    transform: scale(1.07) translateY(-4px);
    box-shadow: 0 12px 32px 0 rgba(0,163,255,0.22);
}
.hero-image {
    width: 420px;
    height: 340px;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    border-radius: 32px;
    box-shadow: 0 8px 48px 0 rgba(0,163,255,0.13);
    margin-left: 48px;
    animation: fadeIn 2.2s cubic-bezier(.22,1,.36,1);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 48px 4vw 24px 4vw;
    }
    .hero-image {
        margin-left: 0;
        margin-top: 32px;
        width: 100%;
        max-width: 340px;
        height: 220px;
    }
}

/* Features Section */
.features {
    padding: 56px 8vw 32px 8vw;
    background: #f7fbff;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 36px;
    font-weight: 700;
}
.features-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.feature {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(0,163,255,0.08);
    padding: 14px 6px;
    width: 150px;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
    animation: fadeInUp 1.2s cubic-bezier(.22,1,.36,1);
}
.feature:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: 0 8px 32px 0 rgba(0,163,255,0.18);
}
.feature-icon {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block;
}
.feature h3 {
    font-size: 1.2rem;
    color: #0077b6;
    margin-bottom: 12px;
    font-weight: 700;
}
.feature p {
    color: #444;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .features-list {
        flex-direction: column;
        align-items: center;
    }
    .feature {
        width: 90%;
        margin-bottom: 24px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 56px 8vw 32px 8vw;
    background: #fff;
    text-align: center;
}
.testimonials h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 36px;
    font-weight: 700;
}
.testimonials-list {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial {
    background: #f7fbff;
    border-radius: 24px;
    box-shadow: 0 2px 16px 0 rgba(0,163,255,0.08);
    padding: 32px 24px;
    width: 260px;
    font-style: italic;
    color: #333;
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s cubic-bezier(.22,1,.36,1);
    animation: fadeInUp 1.2s cubic-bezier(.22,1,.36,1);
}
.testimonial span {
    display: block;
    margin-top: 18px;
    font-size: 1rem;
    color: #0077b6;
    font-weight: 600;
}
.testimonial:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 8px 32px 0 rgba(0,163,255,0.18);
}

@media (max-width: 900px) {
    .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        width: 90%;
        margin-bottom: 24px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #0077b6 0%, #00A3FF 100%);
    color: #fff;
    padding: 22px 48px;
    text-align: center;
    border-radius: 0;
    margin-top: 48px;
    min-height: 72px;
    box-sizing: border-box;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}
.footer-social {
    position: absolute;
    right: 200px;
    top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #eaf6ff;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 24px;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 22px;
    padding-bottom: 22px;
    min-height: 72px;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(0,163,255,0.10);
}

.navbar-facebook {
    position: absolute;
    right: 200px;
    top: 8px;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facebook-btn {
    background: #fff;
    color: #1877f3 !important;
    font-weight: 700;
    border: 1.5px solid #fff;
    border-radius: 4px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: none;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    min-width: 0;
    min-height: 0;
    height: 22
}
.facebook-btn:hover {
    background: #1877f3;
    color: #fff !important;
    border-color: #1877f3;
}

.nav-btn {
    position: relative;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #0077b6 0%, #00A3FF 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 2px 16px 0 rgba(0,163,255,0.10), 0 0 0 8px #eaf6ff;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        box-shadow 0.45s cubic-bezier(.22,1,.36,1),
        background 0.4s cubic-bezier(.4,2,.3,1);
    will-change: transform, box-shadow;
    overflow: hidden;
    animation: fadeInUp 2s cubic-bezier(.22,1,.36,1);
}

.nav-btn::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.08);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.nav-btn:hover, .nav-btn:focus {
    transform: scale(1.08) translateY(-6px);
    box-shadow:
        0 16px 48px 0 rgba(0,163,255,0.22),
        0 0 0 16px #eaf6ff;
    background: linear-gradient(90deg, #00A3FF 0%, #0077b6 100%);
    filter: drop-shadow(0 4px 16px rgba(0,163,255,0.18));
    transition:
        transform 0.45s cubic-bezier(.22,1,.36,1),
        box-shadow 0.45s cubic-bezier(.22,1,.36,1),
        background 0.4s cubic-bezier(.4,2,.3,1),
        filter 0.45s cubic-bezier(.22,1,.36,1);
}

.nav-btn:hover::before, .nav-btn:focus::before {
    opacity: 1;
}

.nav-btn:active {
    transform: scale(0.98);
}

/* Bubble Button */
.bubble-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00A3FF 0%, #0077b6 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    padding: 16px 36px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px 0 rgba(0,163,255,0.13);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    outline: none;
}
.bubble-btn:hover {
    background: linear-gradient(90deg, #0077b6 0%, #00A3FF 100%);
    transform: scale(1.05);
}

/* Fixed Bubble Button */
.bubble-btn-fixed {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 9999;
    background: linear-gradient(90deg, #00A3FF 0%, #0077b6 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    padding: 16px 36px;
    box-shadow: 0 4px 24px 0 rgba(0,163,255,0.18);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bubble-btn-fixed:hover {
    background: linear-gradient(90deg, #0077b6 0%, #00A3FF 100%);
    transform: scale(1.05);
}
@media (max-width: 600px) {
    body {
        font-size: 14px;
        padding-top: 56px;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-bottom: 8px;
    }

    .hero {
        flex-direction: column;
        padding: 32px 4vw;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-top: 16px;
    }

    .features-list {
        flex-direction: column;
        gap: 16px;
    }

    .feature {
        width: 100%;
        padding: 16px;
    }

    .testimonials-list {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial {
        width: 100%;
        padding: 16px;
    }

    .footer {
        text-align: center;
        padding: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .breadcrumb-bar {
        padding: 8px 16px;
    }

    .breadcrumb-list {
        flex-direction: column;
        gap: 4px;
    }
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 64px 8vw 32px 8vw;
    background: linear-gradient(120deg, #eaf6ff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
