/* 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-1506905925346-21bda4d32df4?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);
        }
        
        /* 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;
        }
        
        /* Places Section */
        .places-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f8 100%);
            position: relative;
            overflow: hidden;
        }
        
        .places-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;
        }
        
        .places-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;
        }
        
        .place-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;
        }
        
        .place-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .place-card .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .place-card:hover .card-img-top {
            transform: scale(1.05);
        }
        
        .place-card .card-body {
            padding: 25px;
        }
        
        .place-card .card-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .place-card .card-text {
            color: #555;
            margin-bottom: 20px;
        }
        
        .place-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .place-meta i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .place-meta span {
            margin-right: 20px;
        }
        
        .distance-badge {
            background-color: var(--secondary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .btn-place {
            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-place:hover {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        /* Featured Place Section */
        .featured-place {
            padding: 80px 0;
            background-color: white;
        }
        
        .featured-content {
            display: flex;
            align-items: center;
            min-height: 400px;
        }
        
        .featured-image {
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .featured-image:hover {
            transform: scale(1.02);
        }
        
        .featured-text h3 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .featured-text p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .highlight-box h5 {
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        /* 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;
            }
            
            .places-section, .featured-place {
                padding: 60px 0;
            }
            
            .place-card .card-img-top {
                height: 200px;
            }
            
            .featured-content {
                flex-direction: column;
                text-align: center;
            }
            
            .featured-text {
                margin-top: 30px;
            }
        }
