
        /* 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-1532187863486-abf9dbad1b69?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;
            margin-bottom: 60px;
            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);
        }
        
        /* Enhanced Section Styling */
        .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;
        }
        
        /* Conference Overview */
        .conference-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary);
        }
        
        .conference-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .conference-card p {
            margin-bottom: 20px;
            text-align: justify;
            color: #555;
        }
        
        .conference-card p:last-child {
            margin-bottom: 0;
        }
        
        /* Conference Poster */
        .poster-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .poster-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .poster-card img {
            transition: all 0.5s ease;
        }
        
        .poster-card:hover img {
            transform: scale(1.05);
        }
        
        /* Conference Tracks */
        .bio-field {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
            height: 100%;
        }
        
        .bio-field:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .bio-field h5 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .bio-field h5 i {
            background: var(--primary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.9rem;
        }
        
        .bio-field p {
            color: #555;
            margin-bottom: 0;
        }
        
        /* Alert Styling */
        .alert-custom {
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 74, 173, 0.1));
            border-left: 5px solid var(--primary);
            border-radius: 10px;
            padding: 25px;
            margin-top: 40px;
        }
        
        .alert-custom p {
            margin-bottom: 10px;
            color: #444;
        }
        
        .alert-custom p:last-child {
            margin-bottom: 0;
        }
        
        /* Enhanced Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark), #051c3b);
            color: white;
            padding: 70px 0 20px;
            position: relative;
            margin-top: 80px;
        }
        
        .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;
        }
        
        /* Sub-theme card styles */
        .subtheme-card {
            background: #fff;
            border: 1px solid #e3e6ed;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
            transition: box-shadow 0.2s, transform 0.2s;
            min-height: 170px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .subtheme-card:hover {
            box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13);
            transform: translateY(-4px) scale(1.02);
        }
        .subtheme-title {
            color: var(--primary, #0056b3);
            font-weight: 600;
            font-size: 1.1rem;
        }
        .subtheme-desc {
            color: #444;
            font-size: 0.97rem;
            margin-bottom: 0;
        }
        
        /* Speaker Card Styles */
        .speaker-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
            transition: box-shadow 0.2s, transform 0.2s;
            padding-bottom: 1.2rem;
        }
        .speaker-card:hover {
            box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
            transform: translateY(-4px) scale(1.02);
        }
        .speaker-card img {
            border: 4px solid #e3e6ed;
            background: #f8fafc;
            margin-bottom: 0.7rem;
        }
        .speaker-card .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary, #0056b3);
        }
        .speaker-card .card-text {
            color: #555;
            font-size: 0.97rem;
        }

        .section-heading {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary, #0056b3);
            margin-bottom: 1.5rem;
        }

        /* Extra padding below Conference Sub-Themes heading */
        #conference .section-heading + .mb-4 {
            padding-bottom: 0.7rem;
        }
        
        /* 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;
            }
            
            .conference-card, .bio-field {
                padding: 20px;
            }
            
            .footer {
                padding: 50px 0 20px;
            }
        }

        @media (max-width: 768px) {
            .speaker-card {
                padding-bottom: 0.5rem;
            }
            .section-heading {
                font-size: 1.3rem;
            }
        }
  