        /* Custom styles */
        :root {
            --primary: #004aad;
            --primary-light: #1e88e5;
            --primary-dark: #002855;
            --secondary: #28a745;
            --accent: #ff9800;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: #444;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar {
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Enhanced Navbar */
        .navbar {
            padding: 15px 0;
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 12px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover:before, .nav-link.active:before {
            visibility: visible;
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .university-logo {
            max-height: 70px;
            transition: transform 0.3s ease;
        }
        
        .university-logo:hover {
            transform: scale(1.05);
        }
        
        /* Enhanced Header */
        .page-header {
            background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 40, 85, 0.9)), url('https://images.unsplash.com/photo-1576086213369-97a306d36557?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            padding: 10px 20px;
            border-radius: 30px;
        }
        
        .breadcrumb-item, .breadcrumb-item a {
            color: white;
            font-weight: 500;
        }
        
        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Section Heading */
        .section-heading {
            position: relative;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            padding-bottom: 15px;
        }
        
        .section-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 2px;
        }
        
        /* Important Dates Section */
        .dates-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .dates-overlay {
            background: linear-gradient(135deg, rgba(0, 40, 85, 0.9), rgba(0, 74, 173, 0.85));
            padding: 80px 0;
        }
        
        .dates-title {
            color: white;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .dates-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .date-card {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary);
            transform: translateY(0);
        }
        
        .date-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .date-title {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .date-countdown {
            color: #555;
            font-size: 1rem;
            position: relative;
            padding-left: 25px;
        }
        
        .date-countdown::before {
            content: '\f017';
            font-family: 'Font Awesome 6 Free';
            font-weight: 400;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
        }
        
        .countdown-expired {
            color: #dc3545;
            font-weight: 500;
        }
        
        .countdown-active {
            color: #198754;
            font-weight: 500;
        }
        
        /* Event Cards */
        .event-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f8 100%);
            position: relative;
            overflow: hidden;
        }
        
        .event-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(0, 74, 173, 0.05);
            z-index: 0;
        }
        
        .event-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(0, 74, 173, 0.05);
            z-index: 0;
        }
        
        .event-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            position: relative;
            z-index: 1;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .event-card .card-img-top {
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .event-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .event-card .card-body {
            padding: 25px;
        }
        
        .event-card .card-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .event-card .card-text {
            color: #555;
            margin-bottom: 20px;
        }
        
        .event-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .event-meta i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .event-meta span {
            margin-right: 20px;
        }
        
        .btn-event {
            background-color: var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn-event:hover {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        /* Workshop Section */
        .workshop-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .workshop-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 5px solid var(--secondary);
        }
        
        .workshop-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .workshop-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .workshop-details {
            margin-bottom: 20px;
        }
        
        .workshop-details p {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .workshop-details i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        .workshop-details strong {
            margin-right: 6px;
            display: inline-block;
        }
        .workshop-details strong::after {
            content: "\00a0";
        }
        
        .workshop-description {
            color: #555;
            margin-bottom: 20px;
            border-top: 1px dashed #e0e0e0;
            padding-top: 15px;
        }
        
        /* Enhanced Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark), #051c3b);
            color: white;
            padding: 70px 0 20px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
        }
        
        .footer-logo {
            max-height: 130px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            filter: brightness(0) invert(1);
        }
        
        .footer-logo:hover {
            transform: scale(1.05);
        }
        
        .footer-conference-logo {
            max-width: 250px;
            margin-bottom: 15px;
            color: white;
            font-size: 1.2rem;
            line-height: 1.4;
        }
        
        .footer-conference-logo .biotech {
            color: var(--primary-light);
            font-weight: bold;
        }
        
        .footer h4 {
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 15px;
            position: relative;
            font-size: 1.4rem;
            color: white;
        }
        
        .footer h4::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary-light);
            bottom: 0;
            left: 0;
        }
        
        .footer-contact {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }
        
        .footer-contact i {
            margin-right: 15px;
            color: var(--primary-light);
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .footer-contact:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-icons {
            margin-top: 25px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            margin-right: 12px;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .footer-links li:last-child {
            border-bottom: none;
        }
        
        .footer-links li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links li a:hover {
            color: white;
            transform: translateX(5px);
            display: inline-block;
        }
        
        .footer-links li a i {
            margin-right: 10px;
            color: var(--primary-light);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-top: 20px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 200px;
            border: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }
            
            .nav-link {
                margin: 5px 0;
            }
            
            .university-logo {
                max-height: 60px;
            }
        }
        
        @media (max-width: 767.98px) {
            .page-header {
                padding: 80px 0;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
            
            .event-section, .workshop-section {
                padding: 60px 0;
            }
            
            .event-card .card-img-top {
                height: 180px;
            }
        }