﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: #1E293B;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-right: 300px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #6366F1;
    border-radius: 50%;
    margin-top: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: #6366F1;
    }

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #6366F1;
    color: white;
}

    .btn-primary:hover {
        background: #4F46E5;
        transform: scale(1.02);
    }

.btn-outline {
    background: transparent;
    color: #6366F1;
    border: 1px solid #6366F1;
}

    .btn-outline:hover {
        background: #EEF2FF;
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero {
    padding: 140px 24px 80px;
    background: #F1F5F9;
    overflow: hidden;
}

.hero-container {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 520px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #DCFCE7;
    color: #16A34A;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 32px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 8px 8px 24px;
    margin-bottom: 32px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1E293B;
}

    .search-input::placeholder {
        color: #94A3B8;
    }

.search-btn {
    width: 48px;
    height: 48px;
    background: #6366F1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .search-btn:hover {
        background: #4F46E5;
        transform: scale(1.05);
    }

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #22D3EE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon svg {
        width: 12px;
        height: 12px;
        color: #22D3EE;
    }

.feature-text {
    font-weight: 500;
    color: #1E293B;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 0.8s ease 0.3s forwards;
}

.hero-bg-shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #E0F2FE 0%, #FFD4CC 100%);
    border-radius: 24px;
    z-index: 0;
}

.hero-person {
    position: relative;
    z-index: 1;
    height: 450px;
    object-fit: contain;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 2;
}

    .floating-card.courses {
        left: 0;
        top: 80%;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: float 3s ease-in-out infinite;
    }

    .floating-card.chart {
        right: 0;
        top: 40%;
        animation: float 2.5s ease-in-out infinite 0.5s;
    }

.card-icon {
    width: 40px;
    height: 40px;
    background: #22D3EE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-icon svg {
        width: 20px;
        height: 20px;
        color: white;
    }

.card-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.card-text p {
    font-size: 12px;
    color: #64748B;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
    margin-top: 8px;
}

.chart-bar {
    width: 8px;
    border-radius: 4px 4px 0 0;
}

    .chart-bar.cyan {
        background: #22D3EE;
        height: 40%;
    }

    .chart-bar.indigo {
        background: #818CF8;
        height: 70%;
    }

    .chart-bar.purple {
        background: #A78BFA;
        height: 55%;
    }

    .chart-bar.green {
        background: #4ADE80;
        height: 85%;
    }

/* Trusted Companies */
.trusted {
    padding: 64px 24px;
    background: white;
}

.trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.trusted-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 40px;
}

.companies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.company-logo {
    color: #94A3B8;
    transition: color 0.3s ease;
}

    .company-logo:hover {
        color: #64748B;
    }

/* Popular Courses */
.courses-section {
    padding: 80px 24px;
    background: white;
}

.courses-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease;
}

    .explore-link:hover {
        gap: 8px;
    }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .course-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .course-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.course-image {
    position: relative;
    overflow: hidden;
}

    .course-image img {
        width: 100%;
        height: 192px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.bestseller-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #6366F1;
    color: white;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.course-content {
    padding: 20px;
}

.course-title {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
    line-height: 1.4;
}

.course-card:hover .course-title {
    color: #6366F1;
}

.course-instructor {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 16px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-value {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 14px;
    height: 14px;
}

    .star.filled {
        color: #FBBF24;
        fill: #FBBF24;
    }

    .star.empty {
        color: #E2E8F0;
    }

.course-price {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748B;
}

    .stat svg {
        width: 16px;
        height: 16px;
        color: #818CF8;
    }

/* Meet Our Mentor */
.mentors-section {
    padding: 80px 24px;
    background: #E0F2FE;
}

.mentors-container {
    max-width: 1280px;
    margin: 0 auto;
}

.mentors-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 64px;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.mentor-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

    .mentor-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

.mentor-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.mentor-image {
    width: 224px;
    height: 224px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mentor-card:hover .mentor-image {
    transform: scale(1.05);
}

.linkedin-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #2563EB;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .linkedin-badge:hover {
        background: #2563EB;
        color: white;
    }

    .linkedin-badge svg {
        width: 18px;
        height: 18px;
    }

.mentor-name {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.mentor-title {
    font-size: 16px;
    color: #64748B;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 24px;
    background: white;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

    .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

.quote-icon {
    width: 32px;
    height: 32px;
    color: #C7D2FE;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1E293B;
}

.author-company {
    font-size: 14px;
    color: #64748B;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

    .testimonial-stars .star {
        width: 14px;
        height: 14px;
        color: #FBBF24;
        fill: #FBBF24;
    }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #CBD5E1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pagination-dot.active {
        width: 24px;
        background: #6366F1;
    }

/* Newsletter */
.newsletter-section {
    padding: 80px 24px;
    background: white;
}

.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
}

.newsletter-card {
    background: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
    border-radius: 24px;
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .newsletter-card::before,
    .newsletter-card::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .newsletter-card::before {
        width: 256px;
        height: 256px;
        top: -128px;
        left: -128px;
    }

    .newsletter-card::after {
        width: 384px;
        height: 384px;
        bottom: -192px;
        right: -192px;
    }

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    max-width: 448px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 9999px;
    padding: 8px 8px 8px 24px;
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1E293B;
}

    .newsletter-input::placeholder {
        color: #94A3B8;
    }

.newsletter-btn {
    width: 48px;
    height: 48px;
    background: #6366F1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .newsletter-btn:hover {
        background: #4F46E5;
        transform: scale(1.05);
    }

    .newsletter-btn svg {
        width: 18px;
        height: 18px;
        color: white;
    }

/* Footer */

.footer {
    background-color: #F1F5F9;
    border-top: 1px solid #e5e7eb;
    padding: 60px 40px 10px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    font-style: italic;
    letter-spacing: -0.5px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 24px;
    height: 24px;
    color: #4b5563;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .social-link:hover {
        color: #111827;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

/* Link Columns */
.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .footer-links a {
        color: #6b7280;
        text-decoration: none;
        font-size: 15px;
        transition: color 0.2s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: #111827;
        }

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding-top: 10px;
}

    .footer-bottom p {
        color: #9ca3af;
        font-size: 14px;
    }

/* Responsive Design */
@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 24px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-column h3 {
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 32px 20px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .footer-column h3 {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}



/*.footer {
    padding: 64px 24px 32px;
    background: #E0F2FE;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    opacity: 0;
    transform: translateY(20px);
}

    .footer-brand.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
}*/

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .social-link:hover {
        color: #6366F1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

/*.footer-column {
    opacity: 0;
    transform: translateY(20px);
}

    .footer-column.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #64748B;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #6366F1;
        }

.footer-contact {
    opacity: 0;
    transform: translateY(20px);
}

    .footer-contact.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #64748B;
}

    .contact-item svg {
        width: 20px;
        height: 20px;
        color: #6366F1;
        flex-shrink: 0;
        margin-top: 2px;
    }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #CBD5E1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #64748B;
}

    .footer-copyright a {
        color: #6366F1;
        text-decoration: none;
    }

.footer-legal {
    display: flex;
    gap: 24px;
}

    .footer-legal a {
        font-size: 14px;
        color: #64748B;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-legal a:hover {
            color: #6366F1;
        }*/

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #1E293B;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: #334155;
        transform: scale(1.1);
    }

    .scroll-top svg {
        width: 24px;
        height: 24px;
        color: white;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

    .mobile-menu.active {
        display: block;
    }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

    .mobile-nav-links a {
        color: #64748B;
        text-decoration: none;
        font-weight: 500;
    }

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 60%;
    }

    .features {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-person {
        height: 350px;
    }

    .courses-grid,
    .mentors-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .courses-grid,
    .mentors-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}
