
        /* ===== VARIABLES - Medical Professional Theme ===== */
        :root {
            /* Primary Colors - Trust & Professional */
            --primary: #2a9d8f;        /* Medical Teal */
            --primary-dark: #1f7a6f;    /* Darker Teal */
            --primary-light: #e8f5f3;    /* Light Teal */
            --primary-soft: #d1f0ec;      /* Soft Teal */
            
            /* Secondary Colors - Reliability */
            --secondary: #264653;        /* Deep Navy */
            --secondary-dark: #1a3340;   /* Darker Navy */
            --secondary-light: #3a5a6e;   /* Lighter Navy */
            --secondary-soft: #eef2f5;    /* Soft Navy */
            
            /* Accent Colors - Warmth & Care */
            --accent: #e76f51;           /* Warm Coral */
            --accent-light: #f8e1da;      /* Light Coral */
            
            /* Neutral Colors */
            --text-dark: #1e293b;         /* Headings */
            --text-body: #475569;          /* Body Text */
            --text-light: #64748b;         /* Secondary Text */
            --bg-white: #ffffff;            /* Pure White */
            --bg-light: #f8fafc;           /* Light Background */
            --bg-soft: #f1f5f9;             /* Soft Background */
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
            --gradient-accent: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
            --gradient-light: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            
            /* Shadows */
            --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px rgba(42, 157, 143, 0.1);
            --shadow-lg: 0 20px 40px rgba(38, 70, 83, 0.15);
            --shadow-xl: 0 30px 60px rgba(38, 70, 83, 0.2);
            
            /* Transitions - All SLOW */
            --transition-slow: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-medium: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Border Radius */
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --radius-xl: 40px;
            --radius-full: 50px;
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Poppins', sans-serif;
            background: var(--bg-light);
            color: var(--text-body);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        /* ===== HEADER SECTION ===== */
        .department-header {
            background: var(--gradient-primary);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            animation: gradientShift 8s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .department-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: rotateSlow 30s linear infinite;
        }
        
        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .dept-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            padding: 10px 30px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.2s forwards;
        }
        
        .dept-title {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.4s forwards;
        }
        
        .dept-title span {
            display: block;
            font-size: 24px;
            font-weight: 400;
            margin-top: 10px;
            opacity: 0.9;
        }
        
        .dept-description {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            opacity: 0.95;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.6s forwards;
        }
        
        /* ===== HERO IMAGE SECTION ===== */
        .hero-image-section {
            padding: 80px 0 40px;
        }
        
        .hero-image-container {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: scale(0.95);
            opacity: 0;
            animation: scaleIn 2s ease 0.8s forwards;
        }
        
        @keyframes scaleIn {
            to { transform: scale(1); opacity: 1; }
        }
        
        .hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .hero-image:hover {
            transform: scale(1.1);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(42,157,143,0.2) 0%, rgba(38,70,83,0.4) 100%);
            pointer-events: none;
        }
        
        .stats-overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            transform: translateY(50px);
            opacity: 0;
            animation: slideUp 1.5s ease 1.2s forwards;
        }
        
        @keyframes slideUp {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-body);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 80px 0;
            background: var(--bg-white);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-content {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1.5s ease 1.4s forwards;
        }
        
        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .section-badge {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .about-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .about-title span {
            color: var(--primary);
            display: block;
            font-size: 32px;
        }
        
        .about-text {
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInList 1s ease forwards;
        }
        
        .feature-list li:nth-child(1) { animation-delay: 1.6s; }
        .feature-list li:nth-child(2) { animation-delay: 1.8s; }
        .feature-list li:nth-child(3) { animation-delay: 2.0s; }
        .feature-list li:nth-child(4) { animation-delay: 2.2s; }
        
        @keyframes slideInList {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .feature-list i {
            width: 30px;
            height: 30px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
        }
        
        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1.5s ease 1.4s forwards;
        }
        
        @keyframes slideInRight {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition-slow);
        }
        
        .about-image:hover img {
            transform: scale(1.08);
        }
        
        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: white;
            padding: 20px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .exp-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .exp-text {
            font-size: 14px;
            color: var(--text-body);
            max-width: 100px;
        }
        
        /* ===== CONDITIONS SECTION ===== */
        .conditions-section {
            padding: 80px 0;
            background: var(--gradient-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.5s ease 2.4s forwards;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .section-title span {
            color: var(--primary);
        }
        
        .conditions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .condition-card {
            background: white;
            padding: 35px 25px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            animation: cardFadeIn 1.5s ease forwards;
        }
        
        .condition-card:nth-child(1) { animation-delay: 2.6s; }
        .condition-card:nth-child(2) { animation-delay: 2.8s; }
        .condition-card:nth-child(3) { animation-delay: 3.0s; }
        .condition-card:nth-child(4) { animation-delay: 3.2s; }
        
        @keyframes cardFadeIn {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .condition-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--gradient-primary);
            transition: var(--transition-medium);
        }
        
        .condition-card:hover::before {
            height: 100%;
        }
        
        .condition-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .condition-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 35px;
            color: var(--primary);
            transition: var(--transition-slow);
        }
        
        .condition-card:hover .condition-icon {
            background: var(--primary);
            color: white;
            transform: rotateY(360deg);
        }
        
        .condition-card h3 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 15px;
            transition: var(--transition-fast);
        }
        
        .condition-card:hover h3 {
            color: var(--primary);
        }
        
        .condition-card p {
            color: var(--text-body);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* ===== TEAM SECTION ===== */
        .team-section {
            padding: 80px 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            opacity: 0;
            transform: translateY(40px);
            animation: cardFadeIn 1.5s ease forwards;
        }
        
        .team-card:nth-child(1) { animation-delay: 3.4s; }
        .team-card:nth-child(2) { animation-delay: 3.6s; }
        .team-card:nth-child(3) { animation-delay: 3.8s; }
        
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }
        
        .team-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.15);
        }
        
        .team-social {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            transition: var(--transition-medium);
        }
        
        .team-card:hover .team-social {
            bottom: 0;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition-fast);
            transform: translateY(20px);
            opacity: 0;
        }
        
        .team-card:hover .team-social a {
            transform: translateY(0);
            opacity: 1;
        }
        
        .team-social a:nth-child(1) { transition-delay: 0.1s; }
        .team-social a:nth-child(2) { transition-delay: 0.2s; }
        .team-social a:nth-child(3) { transition-delay: 0.3s; }
        
        .team-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px) !important;
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-info h3 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .team-info .position {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .team-info .experience {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* ===== TECHNOLOGY SECTION ===== */
        .tech-section {
            padding: 80px 0;
            background: var(--secondary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .tech-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
            animation: rotateSlow 40s linear infinite;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .tech-content {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1.5s ease 4.0s forwards;
        }
        
        .tech-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .tech-content h2 span {
            color: var(--primary);
        }
        
        .tech-list {
            list-style: none;
            margin-top: 30px;
        }
        
        .tech-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInList 1s ease forwards;
        }
        
        .tech-list li:nth-child(1) { animation-delay: 4.2s; }
        .tech-list li:nth-child(2) { animation-delay: 4.4s; }
        .tech-list li:nth-child(3) { animation-delay: 4.6s; }
        
        .tech-list i {
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
        }
        
        .tech-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1.5s ease 4.0s forwards;
        }
        
        .tech-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition-slow);
        }
        
        .tech-image:hover img {
            transform: scale(1.1);
        }
        
        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section {
            padding: 80px 0;
            background: var(--bg-light);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            opacity: 0;
            transform: translateY(40px);
            animation: cardFadeIn 1.5s ease forwards;
        }
        
        .testimonial-card:nth-child(1) { animation-delay: 4.8s; }
        .testimonial-card:nth-child(2) { animation-delay: 5.0s; }
        .testimonial-card:nth-child(3) { animation-delay: 5.2s; }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .testimonial-card i {
            font-size: 40px;
            color: var(--primary-light);
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--text-body);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* ===== APPOINTMENT SECTION ===== */
        .appointment-section {
            padding: 80px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .appointment-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotateSlow 30s linear infinite;
        }
        
        .appointment-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1.5s ease 5.4s forwards;
        }
        
        .appointment-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .appointment-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .appointment-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition-medium);
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background: white;
            color: var(--primary);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-5px);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .dept-title { font-size: 52px; }
            .about-title { font-size: 36px; }
            .conditions-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 992px) {
            .about-grid,
            .tech-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .dept-title { font-size: 42px; }
            .stats-overlay { position: relative; bottom: 0; left: 0; right: 0; margin-top: 30px; }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .dept-title { font-size: 32px; }
            .hero-image { height: 350px; }
            .stats-overlay { grid-template-columns: 1fr; gap: 15px; }
            .conditions-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            
            .appointment-content h2 {
                font-size: 32px;
            }
            
            .btn {
                padding: 14px 30px;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .dept-title { font-size: 28px; }
            .dept-title span { font-size: 18px; }
            .section-title { font-size: 28px; }
            .about-title { font-size: 26px; }
            .about-title span { font-size: 22px; }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-soft);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-accent);
        }