:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --primary-color: #0047ab;
    /* Deeper Professional Blue */
    --secondary-color: #007bff;
    --accent-color: #00b4d8;
    /* Bright Teal */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor Removed */
#cursor-follower {
    display: none;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Custom CSS Loader - Medical Pulse */
.medical-loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.loader-logo {
    width: 60px;
    height: auto;
    z-index: 2;
    animation: logoBreathe 2s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: pulseRipple 2s linear infinite;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

.loading-bar-container {
    width: 140px;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform-origin: left;
    animation: loadProgress 2s ease-in-out infinite;
}

@keyframes logoBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulseRipple {
    0% {
        transform: scale(0.5);
        opacity: 0;
        border-width: 4px;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes loadProgress {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    max-width: none;
    height: 72px;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s var(--easing);
    background: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Initial Bottom Shadow */
}

/* Floating Capsule State (triggered by JS) */
.header.scrolled {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s var(--easing);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.6rem 1.8rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 50px;
    font-family: var(--font-main);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-button:hover {
    color: var(--primary-color);
    background: transparent;
}

.primary-btn {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secondary-btn:hover {
    background: var(--text-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Center text */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    /* Lighter overlay to show video */
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    /* Sit on top of overlay */
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #444;
    margin: 0 auto 3rem auto;
    font-weight: 500;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Removed old split visual styles */
.hero-visual {
    display: none;
}

/* About Section */
.about {
    padding: 5rem 4rem;
    background-color: #f9f9f9;
}

.section-header {
    margin-bottom: 3rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s var(--easing), box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Floating Footer */
.floating-footer {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 300px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatUp 1s var(--easing) forwards;
}

.footer-link {
    color: #555;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes floatUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Forced 3 columns as requested */
    gap: 2rem;
}

.insight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-content {
    padding: 2rem;
}

.insight-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
    display: none;
    /* JS toggles this */
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full Footer */
/* Modern Footer Styles */
.modern-footer {
    background: #001529;
    color: white;
    position: relative;
    z-index: 10;
    font-family: var(--font-main);
}

.footer-newsletter {
    background: var(--primary-color);
    padding: 3rem 0;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: var(--font-main);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #001529;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--text-color);
}

.footer-main {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    color: #a0a0a0;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    background: #000f1f;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bottom-links {
    display: flex;
    gap: 2rem;
}

.bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: white;
}

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #f0f7ff, #ffffff);
    position: relative;
}

.mission-box {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 20px;
    margin: -50px auto 4rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.contact-info {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, rgba(0, 71, 171, 0.05), transparent 40%);
}

.contact-form-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.form-box {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-field {
    width: 100%;
    padding: 1rem;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.input-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-field:focus~.input-label,
.input-field:not(:placeholder-shown)~.input-label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: white;
    padding: 0 0.5rem;
    color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
}

.mobile-only {
    display: none;
}

/* Responsive Styles Update */
@media (max-width: 768px) {

    /* Header Reset for Mobile */
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        padding: 1rem 1.5rem;
        justify-content: space-between;
        max-width: 100%;
        background: transparent;
        border-radius: 0;
        border: none;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        /* Slight shadow for visibility */
    }

    .header.scrolled {
        width: 92%;
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
        padding: 0.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .mobile-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -150%;
        /* Hidden off-screen right */
        left: auto;
        /* Reset left */
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1000;
        transition: right 0.4s var(--easing);
        /* Animate 'right' property */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transform: none;
        /* Ensure no conflicting transforms */
        border-radius: 0;
    }

    .nav.active {
        right: 0;
        /* Slide in to 0 */
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--text-color);
    }

    .mobile-only {
        display: inline-block;
        margin-top: 1rem;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info {
        padding: 4rem 2rem;
    }

    .contact-form-wrapper {
        padding: 3rem 1rem;
    }

    /* Restoring Media Query Continuity */
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 0 2rem;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 5rem;
        /* Space for fixed header/video */
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller font on mobile */
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: 100vw;
        height: 100vw;
        right: 0;
        opacity: 0.4;
        pointer-events: none;
    }

    .about {
        padding: 4rem 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
    }

    /* Process Grid Mobile */
    .timeline-item {
        flex-direction: column;
        text-align: center !important;
    }

    .timeline-content {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 2rem;
    }

    .timeline-number {
        margin: 0 auto 1rem !important;
    }

    .main-footer {
        padding: 4rem 2rem 2rem !important;
    }
}

/* Form Button Hover Fix */
.contact-form-wrapper .primary-btn:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
}

/* Form Button Hover Fix */
.contact-form-wrapper .primary-btn:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.3);
}

/* Pulse animation to draw attention */
@keyframes buttonScan {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 71, 171, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 71, 171, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 71, 171, 0);
    }
}

.scroll-to-top.visible {
    animation: buttonScan 2s infinite;
}

/* Floating Info Bar */
.floating-info-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 23, 42, 0.7);
    /* Dark semi-transparent */
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    z-index: 998;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-info-bar:hover {
    transform: translateY(-5px);
}

.info-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-text {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

.info-separator {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
}

.social-links-float {
    display: flex;
    gap: 12px;
}

.social-links-float a {
    color: white;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.social-links-float a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-info-bar {
        display: none;
    }
}