 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-family: 'Montserrat', sans-serif;
        }
        :root {
            --primary-red: #CC3634;
            --dark-gray: #575656;
            --light-gray: #B2B2B2;
            --white: #ffffff;
            --off-white: #fafafa;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        /* Mobile-First Navigation - FIXED */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(178, 178, 178, 0.1);
            z-index: 9999; /* Increased z-index */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            position: relative; /* Added for z-index context */
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            
            z-index: 10001; /* Higher than mobile menu */
            position: relative;
        }
        .nav-logo-icon {
           
            
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 1rem;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background: var(--primary-red);
            color: white;
        }
        /* Mobile Menu - FIXED for horizontal scroll */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-gray);
            cursor: pointer;
            z-index: 10001;
            position: relative;
            padding: 0.5rem;
            min-width: 44px; /* Ensure touch target */
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100vw; /* Use vw instead of % */
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10000;
            padding: 0;
            margin: 0;
            overflow: hidden;
            box-sizing: border-box; /* Ensure proper box model */
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu .nav-link {
            font-size: 1.5rem;
            padding: 1rem 2rem;
            text-align: center;
            width: 100%;
            max-width: 300px;
        }
        /* Responsive Left-Side Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(204, 54, 52, 0.8) 0%, rgb(0 0 0 / 39%) 37%),
                        url('../images/Medical-Innovation-Expo-2025.jpg') center/cover;
            overflow: hidden;
        }
        .hero-container {
            max-width: 1400px;
			margin: 0 auto;
			padding: 2rem;
			display: flex;
			align-items: center;
			justify-content: space-between;
			min-height: calc(100vh - 80px);
			position: relative;
			z-index: 2;
        }
        .hero-content {
            max-width: 600px;
            color: white;
            flex: 1;
        }
        .hero-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .hero h1 {
           font-size: 4rem;
			font-weight: 800;
			margin-bottom: 20px;
			line-height: 1.2;
			animation: fadeIn 1s ease;
			word-wrap: break-word;
        }
        .hero .subtitle {
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            font-weight: 400;
            margin-bottom: 2rem;
            line-height: 1.4;
        }
        /* Redesigned Info Cards */
        .hero-info-cards {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .hero-info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 1.2rem;
            flex: 1;
            min-width: 200px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .hero-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-red);
        }
        .hero-info-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .hero-info-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }
        .hero-info-icon {
            width: 35px;
            height: 35px;
            background: var(--primary-red);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        .hero-info-title {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
        }
        .hero-info-content {
            font-size: 0.95rem;
            color: white;
            font-weight: 500;
            line-height: 1.3;
        }
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .btn {
            padding: 1rem 2.2rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: inherit;
            white-space: nowrap;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn-primary {
            background: var(--primary-red);
            color: white;
            box-shadow: 0 4px 20px rgba(204, 54, 52, 0.4);
        }
        .btn-primary:hover {
            background: #b32f2d;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(204, 54, 52, 0.6);
        }
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.6);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
        }
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .hero-info-grid {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        .hero-info-grid .hero-info-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(178, 178, 178, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex: 1;
            min-width: 220px;
        }
        .hero-info-grid .hero-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .hero-info-grid .hero-info-card .icon {
            width: 35px;
            height: 35px;
            background: var(--primary-red);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: white;
            flex-shrink: 0;
        }
        .hero-info-grid .hero-info-card p {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 500;
            margin: 0;
        }
        /* Replace decorative circle with image placeholder */
        .hero-visual {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
        }
        
        .hero-image {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
        }
        
        /* Placeholder for when no image is provided */
        .hero-image-placeholder {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
            border: 2px dashed rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        /* Advanced Section Layouts */
        .section {
            padding: 4rem 0;
            position: relative;
        }
        .section-dark {
            background: var(--dark-gray);
            color: white;
        }
        .section-pattern {
            background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-badge {
            display: inline-block;
            background: rgba(204, 54, 52, 0.1);
            color: var(--primary-red);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .section-title {
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Asymmetric Grid */
        .asymmetric-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-top: 4rem;
        }
        .main-card {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(178, 178, 178, 0.1);
        }
        .side-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .side-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(178, 178, 178, 0.1);
            transition: all 0.3s ease;
        }
        .side-card:hover {
            transform: translateX(10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        /* Modern Cards */
        .modern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .modern-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(178, 178, 178, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--dark-gray));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .modern-card:hover::before {
            transform: scaleX(1);
        }
        .modern-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), #ff4444);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }
        .card-text {
            color: var(--dark-gray);
            line-height: 1.6;
            opacity: 0.9;
        }
        /* Mobile-Friendly Timeline */
        .timeline {
            position: relative;
            margin-top: 4rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-red);
            transform: translateX(-50%);
        }
        .timeline-item {
            display: flex;
            margin-bottom: 4rem;
            position: relative;
        }
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        .timeline-content {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            width: 45%;
            position: relative;
        }
        .timeline-date {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: var(--primary-red);
            color: white;
            padding: 1rem;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            min-width: 100px;
            text-align: center;
            z-index: 10;
        }
        /* Mobile Timeline Fix */
        @media (max-width: 1024px) {
            .timeline::before {
                left: 30px;
                transform: none;
            }
            .timeline-item {
                flex-direction: row !important;
                margin-bottom: 3rem;
            }
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }
            .timeline-date {
                left: 30px;
                top: 30px;
                transform: translate(-50%, 0);
                min-width: 80px;
                padding: 0.8rem 0.5rem;
                font-size: 0.8rem;
                border-radius: 15px;
            }
        }
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                margin-bottom: 2rem;
            }
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px;
                padding: 1.5rem;
            }
            .timeline-date {
                left: 20px;
                top: 20px;
                min-width: 60px;
                padding: 0.6rem 0.3rem;
                font-size: 0.7rem;
                border-radius: 12px;
                line-height: 1.2;
            }
        }
        @media (max-width: 480px) {
			.hero-info-card {
				flex-direction: column;
				align-items: center;
				text-align: center;
			}
            .timeline::before {
                left: 15px;
            }
			
            .timeline-content {
                width: calc(100% - 50px);
                margin-left: 50px;
                padding: 1rem;
            }
            .timeline-date {
                left: 15px;
                top: 15px;
                min-width: 50px;
                padding: 0.4rem 0.2rem;
                font-size: 0.6rem;
                border-radius: 10px;
            }
        }
        /* Registration Section */
        .registration {
            background: linear-gradient(135deg, var(--dark-gray) 0%, #404040 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .registration::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(204, 54, 52, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(204, 54, 52, 0.1) 0%, transparent 50%);
        }
        .registration-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .free-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 60px;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            animation: badgeGlow 3s ease-in-out infinite;
        }
        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(204, 54, 52, 0.5); }
            50% { box-shadow: 0 0 40px rgba(204, 54, 52, 0.8); }
        }
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0px;
            padding: 1rem;
            margin-top: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .form-placeholder {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
           /* padding: 3rem;*/
            /*border: 2px dashed rgba(255, 255, 255, 0.3);*/
            border-radius: 15px;
        }
        /* Footer */
        .footer {
            background: #2a2a2a;
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 2rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .footer-info {
            text-align: center;
        }
        .footer-links {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }
        .footer-link {
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .footer-link:hover {
            background: var(--primary-red);
            transform: translateY(-2px);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
		.footer-logo {
			font-size: 28px;
			font-weight: 700;
			color: var(--white);
			margin-bottom: 20px;
			display: inline-flex;
			align-items: center;
			gap: 10px;
		}
		.footer-logo img {
			max-width: 180px;
			height: auto;
		}
        /* Responsive Design - FIXED */
        @media (max-width: 1024px) {
			.hero-buttons {
				display: flow;
				gap: 1rem;
				flex-wrap: wrap;
				margin-top: 2rem;
			}
            .asymmetric-grid {
                grid-template-columns: 1fr;
            }
            .hero-container {
				margin-top: 214px !important;
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }
            .hero-visual {
                order: -1;
                padding: 1rem;
            }
            .hero-image {
                max-width: 400px;
                height: 300px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex; /* Changed from block to flex */
            }
            .hero-container {
                padding: 2rem 1rem;
                margin-top: 214px !important;
                min-height: calc(100vh - 80px);
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            .hero-content {
                max-width: 100%;
                order: 2;
            }
            .hero-visual {
                order: 1;
                padding: 0.5rem;
            }
            .hero-image {
                max-width: 300px;
                height: 250px;
            }
            .hero-info-grid {
                flex-direction: column;
                gap: 0.8rem;
            }
            .hero-info-grid .hero-info-card {
                min-width: auto;
                padding: 1rem;
                justify-content: center;
            }
            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
				display: flex;
            }
            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .footer-links {
                justify-content: center;
            }
            .section {
                padding: 2rem 0;
            }
            .container {
                padding: 0 1rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero .subtitle {
                font-size: 1.1rem;
            }
        }
        @media (max-width: 480px) {
            .nav-container {
                padding: 1rem;
            }
            .hero-container {
                margin-top: 112px!important;
                min-height: calc(100vh - 70px);
                padding: 1rem 0.5rem;
                gap: 1.5rem;
            }
            .hero-image {
                max-width: 280px;
                height: 200px;
            }
            .hero-info-grid .hero-info-card {
                padding: 0.8rem;
                flex-direction: row;
                align-items: center;
                text-align: left;
                gap: 0.8rem;
            }
            .hero-info-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            .hero-info-content {
                font-size: 0.85rem;
            }
            .modern-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .btn {
                padding: 0.8rem 1.8rem;
                font-size: 0.85rem;
				text-align: center;
            }
			    .hero-buttons {
				display: flex;
				gap: 1rem;
				flex-wrap: wrap;
				margin-top: 2rem;
			}
        }
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Prevent horizontal scrolling completely */
        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            position: relative;
        }
        
        /* Lock body scroll when mobile menu is open */
        body.menu-open {
            overflow: hidden;
            position: fixed;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            top: 0;
            left: 0;
        }
        
        /* Additional mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            height: 100dvh; /* Use dynamic viewport height */
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            overflow: hidden; /* Prevent scrolling */
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
		.logo {
			font-size: 28px;
			font-weight: 700;
			color: var(--primary);
			text-decoration: none;
			display: flex;
			align-items: center;
			gap: 10px;
			order: 1;
		}
		img.logo-img-top {
			max-width: 150px;
			height: auto;
			display: flex;
			align-items: center;
		}
		img.side-card {
			width: 100%;
		}
 