    /* Color Variables */
    :root {
        --primary-color: #1e3a8a;
        --secondary-color: #2563eb;
        --accent-color: #3b82f6;
        --text-color: #334155;
        --light-text: #64748b;
        --background-color: #f8fafc;
        --white: #ffffff;
        --shadow: rgba(0, 0, 0, 0.1);
        --success-color: #059669;
        --warning-color: #d97706;
        --info-color: #0891b2;
        --purple-color: #7c3aed;
        --green-color: #16a34a;
        --orange-color: #ea580c;
        --pink-color: #db2777;
    }

    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Code Protection - Disable Selection */
    * {
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* Disable text selection on specific elements */
    body, html, div, span, p, h1, h2, h3, h4, h5, h6 {
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }

    /* Allow selection only on input fields */
    input, textarea {
        -webkit-user-select: text !important;
        -moz-user-select: text !important;
        -ms-user-select: text !important;
        user-select: text !important;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
        padding-top: 70px !important; /* Add padding to account for fixed navbar */
        margin: 0 !important;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Custom Cursor */
    .cursor {
        width: 20px;
        height: 20px;
        border: 2px solid #2563eb;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: all 0.1s ease;
        transform: translate(-50%, -50%);
    }

    .cursor-follower {
        width: 8px;
        height: 8px;
        background: #2563eb;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: all 0.15s ease;
        transform: translate(-50%, -50%);
    }

    /* Navigation */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 9999 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        /* Ensure it stays at top */
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
    }

    .nav-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        margin-top: 30px;
        height: 180px;
        width: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .logo-img:hover {
        transform: scale(1.05);
    }

    .nav-logo h2 {
        color: #1e3a8a;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: #1e3a8a;
        transform: translateY(-2px);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background: #1e3a8a;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: -70px; /* Offset the body padding */
        padding-top: 70px; /* Add padding to account for navbar */
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
        /* Different background image for Home page - Medical Reports */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
            url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1576091160550-2173dba0efed?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(68, 63, 63, 0.5);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1.2s ease 0.5s forwards;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1.2s ease 0.8s forwards;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1.2s ease 1.1s forwards;
    }

    .btn {
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: #1e3a8a;
        color: white;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    }

    .btn-primary:hover {
        background: #1e40af;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: white;
        color: #1e3a8a;
        transform: translateY(-3px);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
        border: 2px solid white;
        border-top: none;
        border-right: none;
        transform: rotate(-45deg);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
        40% { transform: translateY(-10px) rotate(-45deg); }
        60% { transform: translateY(-5px) rotate(-45deg); }
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
        opacity: 0;
        transform: translateY(50px);
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #475569;
        max-width: 600px;
        margin: 0 auto;
    }

    /* About Section */
    .about {
        padding: 100px 0;
        background: #f8fafc;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .about-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(50px);
    }

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .about-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .about-card:nth-child(1) .about-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .about-card:nth-child(2) .about-icon {
        background: linear-gradient(135deg, var(--success-color), var(--green-color));
    }

    .about-card:nth-child(3) .about-icon {
        background: linear-gradient(135deg, var(--warning-color), var(--orange-color));
    }

    .about-card:nth-child(4) .about-icon {
        background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
    }

    .about-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #1e3a8a;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        opacity: 0;
        transform: translateY(50px);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: #1e3a8a;
        margin-bottom: 0.5rem;
    }

    .stat-item:nth-child(1) .stat-number { color: var(--primary-color); }
    .stat-item:nth-child(2) .stat-number { color: var(--success-color); }
    .stat-item:nth-child(3) .stat-number { color: var(--warning-color); }
    .stat-item:nth-child(4) .stat-number { color: var(--purple-color); }

    .stat-label {
        font-size: 1.1rem;
        color: #475569;
        font-weight: 500;
    }

    /* Services Section */
    .services {
        padding: 100px 0;
        background: white;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .service-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        opacity: 0;
        transform: translateY(50px);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: #1e3a8a;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        color: white;
    }

    .service-card:nth-child(1) .service-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .service-card:nth-child(2) .service-icon {
        background: linear-gradient(135deg, var(--success-color), var(--green-color));
    }

    .service-card:nth-child(3) .service-icon {
        background: linear-gradient(135deg, var(--warning-color), var(--orange-color));
    }

    .service-card:nth-child(4) .service-icon {
        background: linear-gradient(135deg, var(--purple-color), var(--pink-color));
    }

    .service-card:nth-child(5) .service-icon {
        background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    }

    .service-card:nth-child(6) .service-icon {
        background: linear-gradient(135deg, var(--green-color), var(--success-color));
    }

    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #1e3a8a;
    }

    .service-card p {
        color: #475569;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .service-link {
        color: #1e3a8a;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        color: #1e40af;
        transform: translateX(5px);
    }

    /* Why Choose Us Section */
    .why-choose {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .why-choose-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .features-list {
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(-50px);
    }

    .feature-item i {
        color: #10b981;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 1.1rem;
        color: #334155;
    }

    .uk-map {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .map-container {
        position: relative;
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.8);
    }

    .map-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid #3b82f6;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }

    .map-marker {
        font-size: 3rem;
        color: white;
        z-index: 2;
    }

    .map-text {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        color: #1e3a8a;
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 100px 0;
        background: white;
    }

    .testimonials-carousel {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-slide {
        display: none;
        text-align: center;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.5s ease;
    }

    .testimonial-slide.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-content {
        background: #f8fafc;
        padding: 3rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial-text {
        font-size: 1.2rem;
        font-style: italic;
        color: #334155;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .testimonial-author {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .author-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 0.5rem;
    }

    .author-info p {
        color: #475569;
        font-size: 0.9rem;
    }

    .carousel-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
    }

    .carousel-btn {
        background: #1e3a8a;
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        pointer-events: all;
    }

    .carousel-btn:hover {
        background: #1e40af;
        transform: scale(1.1);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #1e3a8a;
        transform: scale(1.2);
    }

    /* Contact Section */
    .contact {
        padding: 100px 0;
        background: #f8fafc;
        /* Background image for contact section */
        background-image: 
            linear-gradient(rgba(248, 250, 252, 0.85), rgba(248, 250, 252, 0.85)),
            url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
    }

    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
        z-index: 1;
    }

    .contact .container {
        position: relative;
        z-index: 2;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .contact-info {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        padding: 2.5rem;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 3;
    }

    .contact-info p {
        font-size: 1.1rem;
        color: #475569;
        margin-bottom: 2rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #334155;
    }

    .contact-item i {
        color: #1e3a8a;
        font-size: 1.2rem;
        width: 20px;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        z-index: 3;
    }

    .form-group {
        position: relative;
        margin-bottom: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.2rem 1rem 1rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
        position: relative;
        z-index: 1;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #1e3a8a;
        box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

    .form-group label {
        position: absolute;
        top: -0.5rem;
        left: 0.5rem;
        color: #1e3a8a;
        transition: all 0.3s ease;
        pointer-events: none;
        background: white;
        padding: 0 0.5rem;
        font-size: 0.8rem;
        font-weight: 500;
        z-index: 2;
    }

    .form-group input:focus + label,
    .form-group input:valid + label,
    .form-group select:focus + label,
    .form-group select:valid + label,
    .form-group textarea:focus + label,
    .form-group textarea:valid + label {
        top: -0.5rem;
        left: 0.5rem;
        font-size: 0.8rem;
        color: #1e3a8a;
        background: white;
        z-index: 2;
    }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        color: white;
        padding: 3rem 0 1rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        color: white;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: white;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #334155;
        color: #cbd5e1;
    }

    /* Animations */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }
        50% {
            opacity: 0.8;
            transform: translateY(-5px) scale(1.02);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Page-Specific Styles */

    /* About Page Styles */
    .about-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
        color: white;
        text-align: center;
        margin-top: -70px; /* Offset the body padding */
        padding-top: 120px; /* Add padding to account for navbar */
        /* About page - Medical professionals team working */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
            url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1559757158-b11bfd5f41a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .services-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
        color: white;
        text-align: center;
        margin-top: -70px; /* Offset the body padding */
        padding-top: 120px; /* Add padding to account for navbar */
        /* Services page - Medical diagnostic equipment */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
            url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1559757158-b11bfd5f41a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .contact-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
        color: white;
        text-align: center;
        margin-top: -70px; /* Offset the body padding */
        padding-top: 120px; /* Add padding to account for navbar */
        /* Different background image for Contact page - Medical Contact */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
            url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
            url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .about-hero h1, .services-hero h1, .contact-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .about-hero p, .services-hero p, .contact-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .company-story {
        padding: 100px 0;
        background: white;
    }

    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .story-text h2 {
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-bottom: 2rem;
    }

    .story-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 1.5rem;
    }

    .story-image {
        display: flex;
        justify-content: center;
    }

    .image-placeholder {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }

    .image-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .image-placeholder span {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .mission-values {
        padding: 100px 0;
        background: #f8fafc;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .value-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(50px);
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .value-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .value-card h3 {
        font-size: 1.5rem;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .value-card p {
        color: #475569;
        line-height: 1.6;
    }

    .team {
        padding: 100px 0;
        background: white;
    }

    .team-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .team-description {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .team-description p {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .quality-assurance {
        padding: 100px 0;
        background: #f8fafc;
    }

    .qa-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .qa-text h2 {
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-bottom: 2rem;
    }

    .qa-text p {
        font-size: 1.1rem;
        color: #475569;
        margin-bottom: 2rem;
    }

    .qa-list {
        list-style: none;
        padding: 0;
    }

    .qa-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: #334155;
    }

    .qa-list i {
        color: #10b981;
        font-size: 1.2rem;
    }

    .qa-certifications h3 {
        font-size: 1.8rem;
        color: #1e3a8a;
        margin-bottom: 2rem;
    }

    .cert-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .cert-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .cert-item i {
        color: #1e3a8a;
        font-size: 1.5rem;
    }

    .cert-item span {
        font-weight: 600;
        color: #334155;
    }

    /* Services Page Styles */
    .services-overview {
        padding: 100px 0;
        background: white;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .service-features li {
        padding: 0.5rem 0;
        color: #475569;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #10b981;
        font-weight: bold;
    }

    .service-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .turnaround {
        background: #dbeafe;
        color: #1e3a8a;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .price {
        color: #1e3a8a;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .process-section {
        padding: 100px 0;
        background: #f8fafc;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .process-step {
        text-align: center;
        opacity: 0;
        transform: translateY(50px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .step-content p {
        color: #475569;
        line-height: 1.6;
    }

    .specializations {
        padding: 100px 0;
        background: white;
    }

    .specialization-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .specialization-item {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 2.5rem 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(50px);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .specialization-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1e3a8a, #2563eb, #3b82f6);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .specialization-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
        border-color: #2563eb;
    }

    .specialization-item:hover::before {
        transform: scaleX(1);
    }

    .specialization-item i {
        font-size: 3rem;
        color: #1e3a8a;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
        display: block;
    }

    .specialization-item:nth-child(1) i { color: var(--primary-color); }
    .specialization-item:nth-child(2) i { color: var(--purple-color); }
    .specialization-item:nth-child(3) i { color: var(--success-color); }
    .specialization-item:nth-child(4) i { color: var(--info-color); }
    .specialization-item:nth-child(5) i { color: var(--warning-color); }
    .specialization-item:nth-child(6) i { color: var(--pink-color); }
    .specialization-item:nth-child(7) i { color: var(--orange-color); }
    .specialization-item:nth-child(8) i { color: var(--green-color); }
    .specialization-item:nth-child(9) i { color: var(--purple-color); }
    .specialization-item:nth-child(10) i { color: var(--info-color); }

    .specialization-item:hover i {
        transform: scale(1.1);
    }

    .specialization-item span {
        font-weight: 700;
        color: #1e293b;
        font-size: 1.2rem;
        transition: color 0.3s ease;
        letter-spacing: 0.5px;
    }

    .specialization-item:hover span {
        color: #1e3a8a;
    }

    /* Contact Page Styles */
    .contact-info-section {
        padding: 100px 0;
        background: white;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-details-card {
        background: #f8fafc;
        padding: 3rem;
        border-radius: 15px;
    }

    .contact-details-card h2 {
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .contact-details-card p {
        font-size: 1.1rem;
        color: #475569;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-method {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .method-content h3 {
        font-size: 1.3rem;
        color: #1e3a8a;
        margin-bottom: 0.5rem;
    }

    .method-content p {
        font-size: 1.1rem;
        color: #334155;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .method-content span {
        color: #6b7280;
        font-size: 0.9rem;
    }

    .contact-form-card {
        background: white;
        padding: 3rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .contact-form-card h2 {
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-bottom: 1rem;
    }

    .contact-form-card p {
        font-size: 1.1rem;
        color: #475569;
        margin-bottom: 2rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .checkbox-group input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

    .checkbox-group label {
        position: static;
        font-size: 0.9rem;
        color: #475569;
        line-height: 1.5;
    }

    .privacy-link {
        color: #1e3a8a;
        text-decoration: none;
    }

    .privacy-link:hover {
        text-decoration: underline;
    }

    .btn-full {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .map-section {
        padding: 100px 0;
        background: #f8fafc;
    }

    .faq-section {
        padding: 100px 0;
        background: white;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px);
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        color: #1e3a8a;
        margin: 0;
    }

    .faq-question i {
        color: #1e3a8a;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
        max-height: 200px;
    }

    .faq-answer p {
        color: #475569;
        line-height: 1.6;
        margin: 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        color: white;
        text-align: center;
        /* Background image for CTA section */
        background-image: 
            url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80'),
            url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
        background-size: 100% auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(37, 99, 235, 0.3) 100%);
        z-index: 1;
    }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Force navbar to stay sticky - Additional rules */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    /* Ensure navbar content stays visible */
    .navbar * {
        position: relative;
        z-index: 10000;
    }

    /* Override any conflicting styles */
    nav.navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    /* Force sticky class */
    .navbar.force-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    /* Ultimate navbar sticky rule */
    nav.navbar.force-sticky {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
    }

    /* SEO Content Section */
    .seo-content {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .seo-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .seo-text h2 {
        font-size: 2.5rem;
        color: #1e40af;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .seo-text h3 {
        font-size: 1.8rem;
        color: #334155;
        margin: 30px 0 20px 0;
        font-weight: 600;
    }

    .seo-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 20px;
    }

    .seo-text ul {
        list-style: none;
        padding: 0;
    }

    .seo-text li {
        margin-bottom: 15px;
        padding-left: 25px;
        position: relative;
        line-height: 1.6;
        color: #475569;
    }

    .seo-text li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #1e40af;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .seo-keywords h3 {
        font-size: 1.5rem;
        color: #1e40af;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .keyword-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .keyword-tag {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .keyword-tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: white;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 2rem 0;
        }
        
        .logo-img {
            height: 45px;
        }
        
        .nav-logo h2 {
            font-size: 1.3rem;
        }

        .nav-menu.active {
            left: 0;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .about-grid {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .why-choose-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        max-width: 100%;
        height: 300px;
        margin: 2rem auto;
    }

        .seo-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .seo-text h2 {
            font-size: 2rem;
        }

        .seo-text h3 {
            font-size: 1.5rem;
        }

        .stats-container {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }

        .stat-number {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .about-card,
        .service-card {
            padding: 1.5rem;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .testimonial-content {
            padding: 2rem;
        }
    }
