        :root {
            --primary: #0a74da;
            --secondary: #0db58e;
            --dark: #1a1f36;
            --muted: #5f6b7a;
            --light: #f6f9fc;
            --white: #ffffff;
            --footer-bg: #0d1b2a;
            --footer-light: #1b2b3a;
            --gradient: linear-gradient(135deg, #0a74da 0%, #0db58e 100%);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 14px 32px;
            font-weight: 600;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(10, 116, 218, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 116, 218, 0.4);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .text-secondary {
            color: var(--secondary) !important;
        }
        
        .bg-light {
            background-color: var(--light) !important;
        }
        
        /* Enhanced Hero Section */
        .hero-section {
            background: linear-gradient(rgba(10, 116, 218, 0.8), rgba(13, 181, 142, 0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
            color: white;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
            backdrop-filter: blur(10px);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
            }
            50% {
                box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
            }
            100% {
                box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
            }
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 90%;
        }
        
        .hero-features {
            margin: 2rem 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            font-weight: 500;
            color: white;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.8rem;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .hero-clients {
            margin-top: 3rem;
        }
        
        .client-title {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .client-logos {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .client-logo {
            height: 30px;
            opacity: 0.8;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .client-logo:hover {
            opacity: 1;
        }
        
        .hero-form-container {
            position: relative;
            z-index: 2;
        }
        
        .form-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .form-header {
            margin-bottom: 1.5rem;
        }
        
        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        .form-subtitle {
            color: var(--muted);
            font-size: 0.95rem;
        }
        
        .form-highlight {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(13, 181, 142, 0.3);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
        }
        
        .feature-card {
            border-radius: 15px;
            padding: 30px 25px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e6ebf1;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            background: rgba(13, 181, 142, 0.1);
            color: var(--secondary);
            font-size: 1.8rem;
        }
        
        .testimonial-card {
            border-left: 4px solid var(--primary);
            background-color: var(--light);
            padding: 25px;
            margin-bottom: 20px;
            border-radius: 0 10px 10px 0;
        }
        
        .trust-badge {
            background-color: white;
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #e6ebf1;
            transition: transform 0.3s;
        }
        
        .trust-badge:hover {
            transform: translateY(-5px);
        }
        
        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 15px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .stats-section {
            background-color: var(--light);
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
        }
        
        .demo-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background: white;
        }
        
        .demo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .demo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .demo-card:hover img {
            transform: scale(1.05);
        }
        
        .demo-card .card-body {
            padding: 25px;
        }
        
        .floating-badge {
            position: absolute;
            top: -12px;
            left: -12px;
            z-index: 1;
        }
        
        /* WhatsApp Floating Button - MOVED TO LEFT SIDE */
        .whatsapp-float {
            position: fixed;
            left: 20px;
            bottom: 84px;
            z-index: 1041;
        }
        
        .whatsapp-float a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 30px;
            padding: 12px 20px;
            background: #25D366;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Demo Request Modal Styles */
        .demo-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }
        
        .demo-modal .modal-header {
            background: var(--gradient);
            color: white;
            border-bottom: none;
            padding: 1.5rem 2rem;
        }
        
        .demo-modal .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .demo-modal .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }
        
        .demo-modal .modal-body {
            padding: 2rem;
        }
        
        .demo-modal .form-control, .demo-modal .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #e6ebf1;
            transition: all 0.3s ease;
        }
        
        .demo-modal .form-control:focus, .demo-modal .form-select:focus {
            box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.1);
            border-color: var(--primary);
        }
        
        .demo-modal .modal-footer {
            border-top: 1px solid #e6ebf1;
            padding: 1.5rem 2rem;
        }
        
        .demo-type-badge {
            background: rgba(13, 181, 142, 0.1);
            color: var(--secondary);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .checklist li {
            margin: 0.4rem 0;
            list-style-type: none;
            padding-left: 1.5rem;
        }
        
        .checklist li:before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            margin-right: 10px;
            margin-left: -1.5rem;
        }
        
        .logo-wall img {
            height: 38px;
            opacity: 0.8;
            filter: grayscale(100%);
            transition: opacity 0.2s;
        }
        
        .logo-wall img:hover {
            opacity: 1;
        }
        
        .required:after {
            content: "*";
            color: #dc3545;
            margin-left: 4px;
        }
        
        .kpi {
            border-left: 4px solid var(--primary);
            padding-left: 1rem;
        }
        
        .nav-link.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
        
        .faq .accordion-button:not(.collapsed) {
            background: #eef6ff;
            color: var(--dark);
            box-shadow: none;
        }
        
        .faq .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
        /* Enhanced Footer Styles */
        .main-footer {
            background-color: var(--footer-bg);
            color: #fff;
            padding: 80px 0 0;
        }
        
        .footer-heading {
            color: #fff;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #b0b8c5;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-contact li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            color: var(--secondary);
            margin-right: 15px;
            margin-top: 4px;
            width: 20px;
            font-size: 1.1rem;
        }
        
        .footer-about p {
            color: #b0b8c5;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .footer-newsletter p {
            color: #b0b8c5;
            margin-bottom: 20px;
        }
        
        .footer-newsletter .input-group {
            background: var(--footer-light);
            border-radius: 30px;
            padding: 5px;
            overflow: hidden;
        }
        
        .footer-newsletter .form-control {
            background: transparent;
            border: none;
            color: #fff;
            padding: 12px 20px;
        }
        
        .footer-newsletter .form-control:focus {
            box-shadow: none;
            background: transparent;
        }
        
        .footer-newsletter .form-control::placeholder {
            color: #8a94a6;
        }
        
        .footer-newsletter .btn {
            border-radius: 30px;
            padding: 12px 25px;
            font-weight: 600;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--footer-light);
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            background: var(--footer-light);
            padding: 30px 0;
            margin-top: 80px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .footer-bottom-links a {
            color: #b0b8c5;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-bottom-links a:hover {
            color: var(--secondary);
        }
        
        .payment-methods {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .payment-methods i {
            font-size: 2rem;
            color: #b0b8c5;
            transition: color 0.3s ease;
        }
        
        .payment-methods i:hover {
            color: var(--secondary);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(10, 116, 218, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--secondary);
            transform: translateY(-5px);
            color: white;
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-section {
                padding: 100px 0 80px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
                text-align: center;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                max-width: 100%;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .client-logos {
                justify-content: center;
            }
            
            .fixed-cta .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            
            .whatsapp-float {
                bottom: 120px;
                left: 10px;
            }
            
            .whatsapp-float a {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
            
            .footer-bottom-links {
                justify-content: center;
                margin-top: 15px;
            }
            
            .payment-methods {
                justify-content: center;
                margin-top: 15px;
            }
            
            .demo-modal .modal-body {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .form-card {
                padding: 1.5rem;
            }
            
            .whatsapp-float a span {
                display: none;
            }
            
            .whatsapp-float a {
                padding: 12px;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                justify-content: center;
            }
        }
		
		.navbar-brand .brand-text { color: var(--primary); letter-spacing: .2px; }
.navbar-brand img { display: block; height: 75px; width: auto; }
/* Optional: hide brand text on xs screens */
/* .navbar-brand .brand-text { display:none; } @media (min-width:576px){ .navbar-brand .brand-text{ display:inline; } } */


/* Footer brand styling */
.footer-about .footer-brand .brand-logo {
  display: block;
  height: 75px;         /* desktop base size */
  width: auto;
  object-fit: contain;
}

.footer-about .footer-brand .brand-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 1.075rem;
}

/* Scale logo down a touch on small screens */
@media (max-width: 575.98px) {
  .footer-about .footer-brand .brand-logo { height: 34px; }
  .footer-about .footer-brand .brand-text { font-size: 1rem; }
}

/* Optional: auto-switch logo for light/dark themes if you have both variants */
@media (prefers-color-scheme: light) {
  /* for light footers, switch to dark logo */
  .footer-about .footer-brand .brand-logo[data-dark="true"] {
    content: url("assets/img/medsite-logo-dark.png");
  }
}