        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0c577f;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            text-decoration: none;
            background: #3498db;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link:hover {
            color: #3498db;
            background: rgba(52, 152, 219, 0.1);
            transform: translateY(-2px);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #3498db;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link.active{
            background: rgba(52, 152, 219, 1);
            color: #fff;
            border-radius: 25px;
        }
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 5px;
        }

        .dropdown-content a:hover {
            background: #3498db;
            color: white;
            transform: translateX(5px);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .mobile-toggle:hover {
            background: rgba(52, 152, 219, 0.1);
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: #3498db(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 40px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-btn:hover {
            background: white;
            color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-elements span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            animation: float 15s infinite linear;
            border-radius: 50%;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -300px;
                width: 300px;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                transition: all 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
                z-index: 1000;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                width: 100%;
                padding: 15px 0;
                border-radius: 0;
                border-bottom: 1px solid #eee;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f9fa;
                margin-left: 20px;
                margin-top: 10px;
                border-radius: 8px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown.active .dropdown-content {
                max-height: 200px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .nav-menu {
                width: 250px;
                right: -250px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }



        /* Container and Section Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            background: #3498db;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-divider {
            width: 80px;
            height: 4px;
            background: #3498db;
            margin: 0 auto;
            border-radius: 2px;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: #f8f9fa;
                overflow: hidden;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        
        .profile-image {
            position: relative;
            max-width: 350px;
            margin: 0 auto;
        }
        
        .profile-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .profile-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        
        .profile-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #3498db(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 2rem;
            border-radius: 0 0 20px 20px;
        }
        
        .profile-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .profile-info p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .detail-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f1f2f6;
        }
        
        .card-header i {
            font-size: 1.5rem;
            color: #3498db;
            margin-right: 1rem;
        }
        
        .card-header h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f2f6;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .label {
            font-weight: 600;
            color: #2c3e50;
            min-width: 120px;
        }
        
        .value {
            color: #555;
            text-align: right;
            flex: 1;
        }
        
        /* Contact Cards */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .contact-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .contact-card p {
            color: #555;
            margin-bottom: 0.5rem;
        }
        
        /* Research Areas */
        .research-areas {
            text-align: center;
        }
        
        .research-areas h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 2rem;
        }
        
        .research-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .research-tag {
            background: #3498db;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .research-tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }
        
        /* Education Section */
        .education-section {
            padding: 100px 0;
            background: white;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #3498db;
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
        }
        
        .timeline-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .timeline-icon i {
            color: white;
            font-size: 1.2rem;
        }
        
        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: calc(50% - 40px);
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-year {
            background: #3498db;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .timeline-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .timeline-content h4 {
            font-size: 1.1rem;
            color: #3498db;
            margin-bottom: 1rem;
        }
        
        .timeline-content p {
            color: #555;
            margin-bottom: 0.5rem;
        }
        
        /* Experience Section */
        .experience-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .experience-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #3498db;
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .exp-year {
            background: #3498db;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .experience-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .experience-card h4 {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
        }
        
        /* Awards Section */
        .awards-section {
            padding: 100px 0;
            background: white;
        }
        
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .award-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            .award-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: #3498db;
            }
            
            .award-card:hover {
                transform: translateY(-10px) rotateY(5deg);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }
            
            .award-icon {
                width: 80px;
                height: 80px;
                background: #3498db;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1.5rem;
                transition: all 0.3s ease;
            }
            
            .award-card:hover .award-icon {
                transform: scale(1.1) rotate(10deg);
            }
            
            .award-icon i {
                font-size: 2rem;
                color: white;
            }
            
            .award-card h3 {
                font-size: 1.3rem;
                font-weight: 600;
                color: #2c3e50;
                margin-bottom: 1rem;
            }
            
            .award-card p {
                color: #555;
                margin-bottom: 1rem;
                line-height: 1.6;
            }
            
            .award-year {
                background: #3498db;
                color: white;
                padding: 0.5rem 1rem;
                border-radius: 20px;
                font-weight: 600;
                display: inline-block;
                font-size: 0.9rem;
            }
            
            /* Responsive Styles for New Sections */
            @media (max-width: 768px) {
                .section-header h2 {
                    font-size: 2rem;
                }
            
                .about-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
            
                .profile-img {
                    height: 300px;
                }
            
                .contact-cards {
                    grid-template-columns: 1fr;
                }
            
                .research-tags {
                    justify-content: flex-start;
                }
            
                .research-tag {
                    font-size: 0.9rem;
                    padding: 0.6rem 1.2rem;
                }
            
                .timeline::before {
                    left: 20px;
                }
            
                .timeline-item {
                    flex-direction: column;
                    align-items: flex-start;
                    padding-left: 60px;
                }
            
                .timeline-item:nth-child(odd) {
                    flex-direction: column;
                }
            
                .timeline-item:nth-child(odd) .timeline-content {
                    text-align: left;
                }
            
                .timeline-icon {
                    left: 20px;
                    transform: translateX(-50%);
                }
            
                .timeline-content {
                    width: 100%;
                    margin-top: 1rem;
                }
            
                .experience-grid {
                    grid-template-columns: 1fr;
                }
            
                .awards-grid {
                    grid-template-columns: 1fr;
                }
            
                .info-item {
                    flex-direction: column;
                    align-items: flex-start;
                }
            
                .value {
                    text-align: left;
                    margin-top: 0.5rem;
                }
            }
            
            @media (max-width: 480px) {
                .section-header h2 {
                    font-size: 1.8rem;
                }
            
                .profile-img {
                    height: 250px;
                }
            
                .detail-card,
                .contact-card,
                .experience-card,
                .award-card {
                    padding: 1.5rem;
                }
            
                .timeline-content {
                    padding: 1.5rem;
                }
            
                .research-tag {
                    font-size: 0.8rem;
                    padding: 0.5rem 1rem;
                }
            
                .contact-cards {
                    gap: 1rem;
                }
            
                .experience-grid,
                .awards-grid {
                    gap: 1rem;
                }
            }
            
            /* Loading Animation */
            body:not(.loaded) {
                overflow: hidden;
            }
            
            body:not(.loaded)::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #3498db;
                z-index: 9999;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            body:not(.loaded)::after {
                content: 'Loading...';
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: white;
                font-size: 1.5rem;
                font-weight: 600;
                z-index: 10000;
                animation: pulse 1.5s infinite;
            }
            
            @keyframes pulse {
                0%, 100% { opacity: 1; }
                50% { opacity: 0.5; }
            }
            
            /* Smooth Scroll Behavior */
            html {
                scroll-behavior: smooth;
            }
            
            /* Custom Scrollbar */
            ::-webkit-scrollbar {
                width: 8px;
            }
            
            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
            
            ::-webkit-scrollbar-thumb {
                background: #3498db;
                border-radius: 4px;
            }
            
            ::-webkit-scrollbar-thumb:hover {
                background: #3498db;
            }




            /* Education Compact Section */
            .education-compact-section {
                padding: 80px 0;
                background:  #c3cfe2;
            }
            
            .education-flex-container {
                display: flex;
                justify-content: space-between;
                gap: 2rem;
                flex-wrap: wrap;
            }
            
            .education-flex-item {
                flex: 1;
                min-width: 300px;
                background: white;
                border-radius: 20px;
                padding: 2rem;
                text-align: center;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            .education-flex-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 5px;
                background: #3498db;
            }
            
            .education-flex-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .education-icon {
                width: 80px;
                height: 80px;
                background: #3498db;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1.5rem;
                transition: all 0.3s ease;
            }
            
            .education-flex-item:hover .education-icon {
                transform: scale(1.1) rotate(10deg);
            }
            
            .education-icon i {
                font-size: 2rem;
                color: white;
            }
            
            .education-year {
                background: #3498db;
                color: white;
                padding: 0.5rem 1.2rem;
                border-radius: 25px;
                font-weight: 600;
                display: inline-block;
                margin-bottom: 1rem;
                font-size: 0.9rem;
            }
            
            .education-details h3 {
                font-size: 1.5rem;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 0.5rem;
            }
            
            .education-details h4 {
                font-size: 1.1rem;
                color: #3498db;
                margin-bottom: 1rem;
                font-weight: 600;
            }
            
            .education-details p {
                color: #555;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }
            
            .education-badge {
                background: rgba(52, 152, 219, 0.1);
                color: #3498db;
                padding: 0.4rem 1rem;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            /* Responsive Design for Education Compact */
            @media (max-width: 768px) {
                .education-flex-container {
                    flex-direction: column;
                    gap: 1.5rem;
                }
                
                .education-flex-item {
                    min-width: auto;
                    padding: 1.5rem;
                }
                
                .education-icon {
                    width: 60px;
                    height: 60px;
                }
                
                .education-icon i {
                    font-size: 1.5rem;
                }
                
                .education-details h3 {
                    font-size: 1.3rem;
                }
                
                .education-details h4 {
                    font-size: 1rem;
                }
            }
            
            @media (max-width: 480px) {
                .education-compact-section {
                    padding: 60px 0;
                }
                
                .education-flex-item {
                    padding: 1.2rem;
                }
                
                .education-details h3 {
                    font-size: 1.2rem;
                }
            }




            /* Members Section */
            .members-section {
                padding: 100px 0;
                background: white;
            }
            
            .section-header {
                position: relative;
                margin-bottom: 4rem;
            }
            
            .view-more-btn {
                position: absolute;
                top: 0;
                right: 0;
            }
            
            .btn-view-more {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.8rem 1.5rem;
                background: #3498db;
                color: white;
                text-decoration: none;
                border-radius: 25px;
                font-weight: 600;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            }
            
            .btn-view-more:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
                background: #3498db(45deg, #2980b9, #8e44ad);
            }
            
            .btn-view-more i {
                font-size: 0.8rem;
                transition: transform 0.3s ease;
            }
            
            .btn-view-more:hover i {
                transform: rotate(90deg);
            }
            
            /* Members Slider */
            .members-slider {
                display: flex;
                gap: 2rem;
                overflow-x: auto;
                padding: 1rem 0;
                scroll-behavior: smooth;
            }
            
            .members-slider::-webkit-scrollbar {
                height: 8px;
            }
            
            .members-slider::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 4px;
            }
            
            .members-slider::-webkit-scrollbar-thumb {
                background: #3498db;
                border-radius: 4px;
            }
            
            .member-card {
                min-width: 350px;
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                height: 580px;
    margin-bottom: 100px;
            }
            
            .member-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .member-photo {
                position: relative;
                height: 250px;
                overflow: hidden;
            }
            
            .member-photo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: all 0.3s ease;
            }
            
            .member-card:hover .member-photo img {
                transform: scale(1.1);
            }
            
            .member-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #3498db(45deg, rgba(52, 152, 219, 0.9), rgba(155, 89, 182, 0.9));
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.3s ease;
            }
            
            .member-card:hover .member-overlay {
                opacity: 1;
            }
            
            .social-links {
                display: flex;
                gap: 1rem;
            }
            
            .social-link {
                width: 45px;
                height: 45px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.3);
            }
            
            .social-link:hover {
                background: white;
                color: #3498db;
                transform: translateY(-3px) scale(1.1);
            }
            
            .social-link i {
                font-size: 1.1rem;
            }
            
            .member-info {
                padding: 2rem;
            }
            
            .member-info h3 {
                font-size: 1.4rem;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 0.5rem;
            }
            
            .member-position {
                color: #3498db;
                font-weight: 600;
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .member-affiliation {
                color: #555;
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 1.5rem;
            }
            
            .member-duration {
                margin-bottom: 1.5rem;
            }
            
            .duration-item {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 0.8rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid #f1f2f6;
            }
            
            .duration-item:last-child {
                border-bottom: none;
            }
            
            .duration-label {
                font-weight: 600;
                color: #2c3e50;
                font-size: 0.9rem;
                min-width: 100px;
            }
            
            .duration-value {
                color: #555;
                font-size: 0.9rem;
                text-align: right;
                flex: 1;
            }
            
            .member-contact {
                margin-top: 1rem;
            }
            
            .contact-email {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                color: #3498db;
                text-decoration: none;
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
                background: rgba(52, 152, 219, 0.1);
                border-radius: 20px;
                transition: all 0.3s ease;
            }
            
            .contact-email:hover {
                background: #3498db;
                color: white;
                transform: translateY(-2px);
            }
            
            /* Publications Section */
            .publications-section {
                padding: 100px 0;
                background: #f8f9fa;
            }
            
            .publications-slider {
                display: flex;
                gap: 2rem;
                overflow-x: auto;
                padding: 1rem 0;
                scroll-behavior: smooth;
            }
            
            .publications-slider::-webkit-scrollbar {
                height: 8px;
            }
            
            .publications-slider::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 4px;
            }
            
            .publications-slider::-webkit-scrollbar-thumb {
                background: #3498db;
                border-radius: 4px;
            }
            
            .publication-card {
                min-width: 400px;
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
            }
            
            .publication-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .publication-header {
                /* background: #3498db; */
                color: white;
                padding: 1rem 2rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .publication-type {
                font-size: 0.9rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            .publication-year {
                font-size: 1.1rem;
                font-weight: 700;
            }
            
            .publication-content {
                padding: 2rem;
            }
            
            .publication-content h3 {
                font-size: 1.3rem;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 1rem;
                line-height: 1.4;
            }
            
            .publication-authors {
                color: #3498db;
                font-weight: 600;
                margin-bottom: 0.5rem;
                font-size: 0.95rem;
            }
            
            .publication-journal {
                color: #555;
                font-style: italic;
                margin-bottom: 1rem;
                font-size: 0.95rem;
            }
            
            .publication-details {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .detail-item {
                background: rgba(52, 152, 219, 0.1);
                color: #3498db;
                padding: 0.3rem 0.8rem;
                border-radius: 15px;
                font-size: 0.8rem;
                font-weight: 600;
            }
            
            .publication-links {
                display: flex;
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .pub-link {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.6rem 1.2rem;
                background: #3498db;
                color: white;
                text-decoration: none;
                border-radius: 20px;
                font-size: 0.85rem;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            .pub-link:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
                background: #3498db(45deg, #2980b9, #8e44ad);
            }
            
            .pub-link i {
                font-size: 0.8rem;
            }
            
            /* Responsive Design for Members and Publications */
            @media (max-width: 768px) {
                .view-more-btn {
                    position: static;
                    text-align: center;
                    margin-top: 1rem;
                }
                
                .members-slider,
                .publications-slider {
                    flex-direction: column;
                    overflow-x: visible;
                }
                
                .member-card,
                .publication-card {
                    min-width: auto;
                    width: 100%;
                }
                
                .member-photo {
                    height: 200px;
                }
                
                .member-info {
                    padding: 1.5rem;
                }
                
                .publication-content {
                    padding: 1.5rem;
                }
                
                .social-links {
                    gap: 0.8rem;
                }
            }






            /* Footer Styles */
            .footer {
                background: #0c577f;
                color: #ffffff;
                padding: 60px 0 0;
                position: relative;
                overflow: hidden;
            }
            
            .footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="40%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="30" cy="5" r="8" fill="url(%23a)"/><circle cx="60" cy="15" r="6" fill="url(%23a)"/><circle cx="80" cy="8" r="4" fill="url(%23a)"/></svg>') repeat;
                opacity: 0.1;
                animation: float 20s ease-in-out infinite;
            }
            
            @keyframes float {
                0%, 100% { transform: translateY(0px); }
                50% { transform: translateY(-10px); }
            }
            
            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 40px;
                margin-bottom: 40px;
                position: relative;
                z-index: 2;
            }
            
            .footer-section h3 {
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 20px;
                color: #64ffda;
                position: relative;
            }
            
            .footer-section h3::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 50px;
                height: 3px;
                background: #3498db(90deg, #64ffda, #00bcd4);
                border-radius: 2px;
            }
            
            .footer-section h4 {
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 20px;
                color: #ffffff;
                position: relative;
            }
            
            .footer-section h4::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 30px;
                height: 2px;
                background: #64ffda;
                border-radius: 1px;
            }
            
            .footer-section p {
                line-height: 1.8;
                color: #b0bec5;
                margin-bottom: 20px;
                font-size: 0.95rem;
            }
            
            .footer-social {
                display: flex;
                gap: 15px;
                margin-top: 25px;
            }
            
            .footer-social .social-link {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(100, 255, 218, 0.3);
                border-radius: 50%;
                color: #64ffda;
                text-decoration: none;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            .footer-social .social-link::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: #3498db(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
                transition: left 0.5s ease;
            }
            
            .footer-social .social-link:hover::before {
                left: 100%;
            }
            
            .footer-social .social-link:hover {
                background: rgba(100, 255, 218, 0.2);
                border-color: #64ffda;
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
            }
            
            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .footer-links li {
                margin-bottom: 12px;
            }
            
            .footer-links a {
                color: #b0bec5;
                text-decoration: none;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
                padding-left: 20px;
            }
            
            .footer-links a::before {
                content: '▶';
                position: absolute;
                left: 0;
                color: #64ffda;
                font-size: 0.7rem;
                transition: all 0.3s ease;
                opacity: 0;
                transform: translateX(-10px);
            }
            
            .footer-links a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }
            
            .footer-links a:hover {
                color: #64ffda;
                padding-left: 25px;
            }
            
            .footer-contact p {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .footer-contact i {
                color: #64ffda;
                margin-right: 12px;
                margin-top: 3px;
                font-size: 1rem;
                min-width: 20px;
            }
            
            .footer-divider {
                height: 1px;
                background: #3498db(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
                margin: 40px 0 30px;
            }
            
            .footer-bottom {
                position: relative;
                z-index: 2;
            }
            
            .footer-bottom-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 20px;
                padding-bottom: 30px;
            }
            
            .footer-bottom-content p {
                margin: 0;
                color: #90a4ae;
                font-size: 0.9rem;
            }
            
            .footer-bottom-content i.fas.fa-heart {
                color: #e91e63;
                animation: heartbeat 1.5s ease-in-out infinite;
            }
            
            @keyframes heartbeat {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.1); }
            }
            
            /* Responsive Design */
            @media (max-width: 768px) {
                .footer {
                    padding: 40px 0 0;
                }
                
                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 30px;
                    text-align: center;
                }
                
                .footer-section h3::after,
                .footer-section h4::after {
                    left: 50%;
                    transform: translateX(-50%);
                }
                
                .footer-social {
                    justify-content: center;
                }
                
                .footer-bottom-content {
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                }
                
                .footer-links a {
                    padding-left: 0;
                }
                
                .footer-links a:hover {
                    padding-left: 5px;
                }
            }
            
            @media (max-width: 480px) {
                .footer-section h3 {
                    font-size: 1.5rem;
                }
                
                .footer-section h4 {
                    font-size: 1.2rem;
                }
                
                .footer-social .social-link {
                    width: 40px;
                    height: 40px;
                }
            }
            
            /* Slick Slider Styles for Members and Collaborators */
            .members-slider,
            .collaborators-slider {
                position: relative;
                margin: 0 -15px;
            }
            
            .members-slider .slick-slide,
            .collaborators-slider .slick-slide {
                padding: 0 15px;
                outline: none;
            }
            
            .members-slider .slick-dots,
            .collaborators-slider .slick-dots {
                display: flex !important;
                justify-content: center;
                align-items: center;
                list-style: none;
                padding: 0;
                margin: 40px 0 0;
                gap: 10px;
            }
            
            .members-slider .slick-dots li,
            .collaborators-slider .slick-dots li {
                margin: 0;
            }
            
            .members-slider .slick-dots button,
            .collaborators-slider .slick-dots button {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                border: 2px solid #ddd;
                background: transparent;
                font-size: 0;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .members-slider .slick-dots .slick-active button,
            .collaborators-slider .slick-dots .slick-active button {
                background: #007bff;
                border-color: #007bff;
                transform: scale(1.2);
            }
            
            .members-slider .slick-arrow,
            .collaborators-slider .slick-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                border: none;
                border-radius: 50%;
                background: rgba(0, 123, 255, 0.1);
                color: #007bff;
                font-size: 18px;
                cursor: pointer;
                transition: all 0.3s ease;
                z-index: 10;
                display: flex !important;
                align-items: center;
                justify-content: center;
            }
            
            .members-slider .slick-arrow:hover,
            .collaborators-slider .slick-arrow:hover {
                background: #007bff;
                color: white;
                transform: translateY(-50%) scale(1.1);
            }
            
            .members-slider .slick-prev,
            .collaborators-slider .slick-prev {
                left: -25px;
            }
            
            .members-slider .slick-next,
            .collaborators-slider .slick-next {
                right: -25px;
            }
            
            .members-slider .slick-prev::before,
            .collaborators-slider .slick-prev::before {
                content: '←';
                font-family: Arial, sans-serif;
            }
            
            .members-slider .slick-next::before,
            .collaborators-slider .slick-next::before {
                content: '→';
                font-family: Arial, sans-serif;
            }
            
            /* Hide arrows on mobile */
            @media (max-width: 768px) {
                .members-slider .slick-arrow,
                .collaborators-slider .slick-arrow {
                    display: none !important;
                }
                
                .members-slider,
                .collaborators-slider {
                    margin: 0;
                }
                
                .members-slider .slick-slide,
                .collaborators-slider .slick-slide {
                    padding: 0 10px;
                }
            }
            
            /* Slider Loading State */
            .members-slider.slick-loading,
            .collaborators-slider.slick-loading {
                opacity: 0.5;
                pointer-events: none;
            }
        
            /* ... existing code */
            
            /* Collaborators Section */
            .collaborators-section {
                padding: 100px 0;
                background: #3498db(135deg, #f8f9fa 0%, #e9ecef 100%);
            }
            
            .collaborators-slider {
                position: relative;
                margin: 0 -15px;
            }
            
            .collaborator-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                margin: 0 15px;
            }
            
            .collaborator-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .collaborator-photo {
                position: relative;
                height: 280px;
                overflow: hidden;
            }
            
            .collaborator-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease;
            }
            
            .collaborator-card:hover .collaborator-photo img {
                transform: scale(1.1);
            }
            
            .collaborator-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #3498db(45deg, rgba(52, 152, 219, 0.9), rgba(155, 89, 182, 0.9));
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.3s ease;
            }
            
            .collaborator-card:hover .collaborator-overlay {
                opacity: 1;
            }
            
            .collaborator-social {
                display: flex;
                gap: 1rem;
            }
            
            .collaborator-social .social-link {
                width: 45px;
                height: 45px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.3);
            }
            
            .collaborator-social .social-link:hover {
                background: white;
                color: #3498db;
                transform: translateY(-3px) scale(1.1);
            }
            
            .collaborator-info {
                padding: 2rem;
            }
            
            .collaborator-info h3 {
                font-size: 1.4rem;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 0.5rem;
            }
            
            .collaborator-position {
                color: #3498db;
                font-weight: 600;
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }
            
            .collaborator-institution {
                color: #555;
                font-size: 0.95rem;
                margin-bottom: 1rem;
                font-style: italic;
            }
            
            .collaborator-location {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                color: #666;
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            
            .collaborator-location i {
                color: #3498db;
            }
            
            .collaboration-details {
                background: rgba(52, 152, 219, 0.05);
                border-radius: 10px;
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .collaboration-details h4 {
                font-size: 1rem;
                font-weight: 600;
                color: #2c3e50;
                margin-bottom: 0.8rem;
            }
            
            .collaboration-item {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 0.5rem;
                font-size: 0.9rem;
            }
            
            .collaboration-item:last-child {
                margin-bottom: 0;
            }
            
            .collaboration-label {
                font-weight: 600;
                color: #555;
                min-width: 100px;
            }
            
            .collaboration-value {
                color: #666;
                text-align: right;
                flex: 1;
            }
            
            .collaborator-contact {
                margin-top: 1rem;
            }
            
            .collaborator-email {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                color: #3498db;
                text-decoration: none;
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
                background: rgba(52, 152, 219, 0.1);
                border-radius: 20px;
                transition: all 0.3s ease;
            }
            
            .collaborator-email:hover {
                background: #3498db;
                color: white;
                transform: translateY(-2px);
            }
            
            /* Course Developed Section */
            .course-section {
                padding: 100px 0;
                background: white;
            }
            
            .course-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }
            
            .course-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
            }
            
            .course-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 5px;
                background: #3498db;
            }
            
            .course-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .course-header {
                background: #3498db(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 2rem;
                text-align: center;
                position: relative;
            }
            
            .course-icon {
                width: 80px;
                height: 80px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 1rem;
                backdrop-filter: blur(10px);
                border: 2px solid rgba(255, 255, 255, 0.3);
            }
            
            .course-icon i {
                font-size: 2rem;
                color: white;
            }
            
            .course-header h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
            }
            
            .course-code {
                font-size: 1rem;
                opacity: 0.9;
                font-weight: 500;
            }
            
            .course-content {
                padding: 2rem;
            }
            
            .course-details {
                margin-bottom: 2rem;
            }
            
            .detail-row {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 1rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid #f1f2f6;
            }
            
            .detail-row:last-child {
                border-bottom: none;
            }
            
            .detail-label {
                font-weight: 600;
                color: #2c3e50;
                min-width: 120px;
                font-size: 0.95rem;
            }
            
            .detail-value {
                color: #555;
                text-align: right;
                flex: 1;
                font-size: 0.95rem;
            }
            
            .course-description {
                background: rgba(52, 152, 219, 0.05);
                border-radius: 10px;
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .course-description h4 {
                font-size: 1.1rem;
                font-weight: 600;
                color: #2c3e50;
                margin-bottom: 1rem;
            }
            
            .course-description p {
                color: #555;
                line-height: 1.6;
                font-size: 0.95rem;
            }
            
            .course-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .course-tag {
                background: #3498db;
                color: white;
                padding: 0.4rem 1rem;
                border-radius: 15px;
                font-size: 0.8rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            /* Workshops & Conferences Section */
            .workshops-section {
                padding: 100px 0;
                /* background: #f8f9fa; */
            }
            
            .workshop-tabs {
                display: flex;
                justify-content: center;
                margin-bottom: 3rem;
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .tab-btn {
                padding: 1rem 2rem;
                background: white;
                border: 2px solid #e9ecef;
                border-radius: 25px;
                color: #555;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                text-decoration: none;
            }
            
            .tab-btn.active,
            .tab-btn:hover {
                background: #3498db;
                color: white;
                border-color: transparent;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            }
            
            .tab-content {
                display: none;
            }
            
            .tab-content.active {
                display: block;
            }
            
            .workshop-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }
            
            .workshop-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
            }
            
            .workshop-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .workshop-header {
                background: #3498db(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 1.5rem;
                position: relative;
            }
            
            .workshop-date {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: rgba(255, 255, 255, 0.2);
                padding: 0.5rem 1rem;
                border-radius: 15px;
                font-size: 0.8rem;
                font-weight: 600;
                backdrop-filter: blur(10px);
            }
            
.publications-slider, .members-slider, .members-slider{
    overflow: hidden !important;
}

.p-10 {
    padding: 14px;
}











/* Workshops Section Styles */
.workshops-section {
    padding: 60px 0;
    /* background: #3498db(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Statistics Cards */
.workshops-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 32px;
    color: #4a6cf7;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: #4a6cf7;
    color: white;
}

.filter-tab.active {
    background: #4a6cf7;
    color: white;
}

/* Workshops Grid */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Workshop Card */
.workshop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Workshop Image */
.workshop-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.05);
}

.workshop-image-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3498db(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.workshop-image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Workshop Type Badge */
.workshop-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-organized {
    background: #4a6cf7;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-attended {
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Workshop Content */
.workshop-content {
    padding: 25px;
}

.workshop-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.workshop-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Workshop Details */
.workshop-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.detail-item i {
    color: #4a6cf7;
    width: 20px;
    text-align: center;
}

/* Workshop Links */
.workshop-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #4a6cf7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.link-btn:hover {
    background: #3a5ae8;
}

.faculty-org {
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #4a6cf7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #3a5ae8;
}
.badge-attended i, .badge-organized i{
    font-size: 25px;
    line-height: 1;
    margin-bottom: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 32px;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tab {
        width: 80%;
        justify-content: center;
    }
    
    .workshops-stats {
        grid-template-columns: 1fr;
    }
}


.bg-none{
    background: none !important;
}

        /* Enhanced Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0c577f;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(52, 152, 219, 0.1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
                gap: 107px;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-decoration: none;
            background: #3498db(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo::before {
            content: '⚛';
            font-size: 1.8rem;
            background: #3498db(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .logo:hover {
            transform: translateY(-2px);
            filter: brightness(1.2);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 12px;
            border-radius: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.3px;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #3498db(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
            border-radius: 30px;
        }

        .nav-link:hover::before {
            transform: scaleX(1);
        }

        .nav-link:hover {
            color: white  ;
            transform: translateY(-2px);
        }

        .nav-link i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .nav-link i {
            transform: rotate(180deg);
        }

        .nav-link.active {
            background: #3498db(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transform: translateY(-2px);
        }

        .nav-link.active::before {
            display: none;
        }

        /* Enhanced Dropdown Styles */
        .dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 16px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            padding: 8px;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin: 2px 0;
            font-weight: 500;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: #3498db(135deg, #667eea, #764ba2);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover::before {
            transform: scaleY(1);
        }

        .dropdown-item:hover {
            background: #3498db(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            color: #667eea;
            transform: translateX(5px);
            padding-left: 20px;
        }

        .dropdown-item.active {
            background: #3498db(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: 600;
        }

        .dropdown-item.active::before {
            display: none;
        }

        /* Mobile Toggle Enhancement */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: #3498db(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        }

        .mobile-toggle:hover {
            background: #3498db(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            transform: scale(1.05);
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: #3498db(135deg, #667eea, #764ba2);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Overlay Enhancement */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 30px;
            }

            .nav-menu {
                gap: 0.3rem;
            }

            .nav-link {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-container {
                padding: 0 20px;
                height: 70px;
            }

            .logo {
                font-size: 1.3rem;
            }

            .logo::before {
                font-size: 1.5rem;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 320px;
                max-width: 85%;
                height: calc(100vh - 70px);
                background: #00547fb0;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 20px;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
                gap: 0;
                z-index: 1000;
                overflow-y: auto;
                            }

        .nav-menu.active {
            right: 0;
        }

        .nav-item {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-link {
            width: 100%;
            padding: 16px 0;
            border-radius: 0;
            justify-content: flex-start;
        }

        .nav-link::before {
            display: none;
        }

        .nav-link:hover {
            transform: none;
            background: rgba(102, 126, 234, 0.05);
            padding-left: 10px;
        }

        .dropdown-content {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            background: rgba(102, 126, 234, 0.03);
            margin: 10px 0 10px 20px;
            border-radius: 12px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
            border-left: 3px solid rgba(102, 126, 234, 0.3);
        }

        .dropdown.active .dropdown-content {
            max-height: 500px;
            padding: 8px;
                    transform: translateX(-6%) translateY(0);
        }

        .dropdown-item {
            padding: 12px 16px;
            margin: 4px 0;
        }

        .dropdown-item:hover {
            transform: translateX(8px);
        }

        .nav-link i {
            transition: transform 0.3s ease;
        }

        .dropdown.active .nav-link i {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 480px) {
        .nav-menu {
            width: 280px;
        }

        .logo {
            font-size: 1.1rem;
        }

        .logo::before {
            font-size: 1.3rem;
        }

        .nav-link {
            font-size: 0.85rem;
            padding: 14px 0;
        }

        .dropdown-item {
            font-size: 0.8rem;
            padding: 10px 12px;
        }
    }

    /* Scroll Progress Bar */
    .scroll-progress {
        position: fixed;
        top: 80px;
        left: 0;
        width: 0%;
        height: 3px;
        background: #3498db(90deg, #667eea, #764ba2, #f093fb);
        z-index: 1001;
        transition: width 0.1s ease;
    }

    @media (max-width: 768px) {
        .scroll-progress {
            top: 70px;
        }
    }



        .publication-detail-section {
            padding: 50px 0;
            background: #f8f9fa;
        }

        .publication-detail-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Content Area */
        .publication-main-content {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .publication-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .publication-type-badge {
            display: inline-block;
            padding: 6px 16px;
            background: #2196F3;
            color: #fff;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .publication-title {
            font-size: 35px;
            font-weight: 700;
            color: #333;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .publication-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 14px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .meta-item i {
            color: #2196F3;
        }

        .publication-image-container {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .publication-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .publication-details-content {
            margin: 30px 0;
            line-height: 1.8;
            color: #555;
            font-size: 16px;
        }

        .publication-journal-info {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .journal-info-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        .journal-info-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .journal-info-label {
            font-weight: 600;
            color: #333;
            min-width: 190px;
        }

        .journal-info-value {
            color: #666;
            flex: 1;
        }

        .publication-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .publication-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #2196F3;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .publication-link-btn:hover {
            background: #1976D2;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        }

        .publication-link-btn.secondary {
            background: #fff;
            color: #2196F3;
            border: 2px solid #2196F3;
        }

        .publication-link-btn.secondary:hover {
            background: #2196F3;
            color: #fff;
        }

        /* Sidebar Styles */
        .publication-sidebar {
            width: 350px;
            position: sticky;
            top: 100px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            margin-bottom: 25px;
        }

        .sidebar-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }

        .sidebar-card-header h3 {
            margin: 0;
            font-size: 18px;
            color: #333;
        }

        .sidebar-card-header i {
            color: #2196F3;
            font-size: 20px;
        }

        /* Authors List in Sidebar */
        .authors-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .author-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            margin-bottom: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .author-item:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #2196F3;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #333;
            font-size: 14px;
            margin-bottom: 3px;
        }

        .author-position {
            font-size: 12px;
            color: #666;
        }

        /* Quick Info in Sidebar */
        .quick-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .quick-info-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .quick-info-item:last-child {
            border-bottom: none;
        }

        .quick-info-icon {
            width: 35px;
            height: 35px;
            background: #e3f2fd;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2196F3;
            flex-shrink: 0;
        }

        .quick-info-content {
            flex: 1;
        }

        .quick-info-label {
            font-size: 12px;
            color: #999;
            margin-bottom: 3px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .quick-info-value {
            font-size: 14px;
            color: #333;
            font-weight: 600;
        }

        /* Related Publications in Sidebar */
        .related-publication-item {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-publication-item:hover {
            background: #e3f2fd;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .related-pub-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-pub-meta {
            
                        display: flex;
                        gap: 10px;
                        font-size: 12px;
                        color: #666;
                    }
            
                    .related-pub-year {
                        padding: 2px 8px;
                        background: #2196F3;
                        color: #fff;
                        border-radius: 4px;
                        font-weight: 600;
                    }
            
                    .related-pub-type {
                        padding: 2px 8px;
                        background: #e0e0e0;
                        color: #666;
                        border-radius: 4px;
                    }
            
                    /* Back Button */
                    .back-button {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        padding: 10px 20px;
                        background: #fff;
                        color: #2196F3;
                        text-decoration: none;
                        border-radius: 8px;
                        font-weight: 600;
                        margin-bottom: 30px;
                        border: 2px solid #2196F3;
                        transition: all 0.3s ease;
                    }
            
                    .back-button:hover {
                        background: #2196F3;
                        color: #fff;
                        transform: translateX(-5px);
                    }
            
                    /* Mobile Responsive */
                    @media screen and (max-width: 992px) {
                        .publication-detail-layout {
                            flex-direction: column;
                        }
            
                        .publication-sidebar {
                            width: 100%;
                            position: static;
                        }
            
                        .publication-main-content {
                            padding: 25px;
                        }
            
                        .publication-title {
                            font-size: 24px;
                        }
                    }
            
                    @media screen and (max-width: 768px) {
                        .publication-detail-section {
                            padding: 30px 0;
                        }
            
                        .publication-main-content {
                            padding: 20px;
                        }
            
                        .publication-title {
                            font-size: 20px;
                        }
            
                        .publication-meta {
                            flex-direction: column;
                            gap: 10px;
                        }
            
                        .publication-links {
                            flex-direction: column;
                        }
            
                        .publication-link-btn {
                            width: 100%;
                            justify-content: center;
                        }
            
                        .sidebar-card {
                            padding: 20px;
                        }
                    }
            
                    /* Empty State */
                    .empty-state {
                        text-align: center;
                        padding: 30px;
                        color: #999;
                    }
            
                    .empty-state i {
                        font-size: 48px;
                        margin-bottom: 15px;
                        color: #ddd;
                    }
            
                    .empty-state p {
                        margin: 0;
                        font-size: 14px;
                    }



                    .publication-details-card {
                        background: #fff;
                        border-radius: 12px;
                        padding: 30px;
                        margin: 30px 0;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                        border-left: 4px solid #2196F3;
                        transition: all 0.3s ease;
                    }
                    
                    .publication-details-card:hover {
                        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
                        transform: translateY(-2px);
                    }
                    
                    .details-card-header {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        margin-bottom: 20px;
                        padding-bottom: 15px;
                        border-bottom: 2px solid #f0f0f0;
                    }
                    
                    .details-card-header i {
                        font-size: 24px;
                        color: #2196F3;
                    }
                    
                    .details-card-header h3 {
                        margin: 0;
                        font-size: 20px;
                        font-weight: 600;
                        color: #333;
                    }
                    
                    .publication-details-content {
                        font-size: 15px;
                        line-height: 1.8;
                        color: #555;
                    }
                    
                    .publication-details-content p {
                        margin-bottom: 15px;
                    }
                    
                    .publication-details-content p:last-child {
                        margin-bottom: 0;
                    }
                    
                    .publication-details-content h1,
                    .publication-details-content h2,
                    .publication-details-content h3,
                    .publication-details-content h4,
                    .publication-details-content h5,
                    .publication-details-content h6 {
                        color: #333;
                        margin-top: 20px;
                        margin-bottom: 12px;
                        font-weight: 600;
                    }
                    
                    .publication-details-content ul,
                    .publication-details-content ol {
                        margin: 15px 0;
                        padding-left: 25px;
                    }
                    
                    .publication-details-content li {
                        margin-bottom: 8px;
                    }
                    
                    .publication-details-content strong {
                        color: #333;
                        font-weight: 600;
                    }
                    
                    .publication-details-content a {
                        color: #2196F3;
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }
                    
                    .publication-details-content a:hover {
                        color: #1976D2;
                        text-decoration: underline;
                    }
                    
                    /* Responsive adjustments */
                    @media (max-width: 768px) {
                        .publication-details-card {
                            padding: 20px;
                            margin: 20px 0;
                        }
                        
                        .details-card-header h3 {
                            font-size: 18px;
                        }
                        
                        .publication-details-content {
                            font-size: 14px;
                        }
                    }


                        .response-flex{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .response-flex > div{
        width: calc(33% - 20px);
        /* max-width: 300px; */
        padding: 20px;
        /* background-color: #f7f7f7; */
        border-radius: 10px;
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
        overflow: hidden;
    }

    .response-flex .member-card{
        min-width: 100%;
        height: auto;
    }


    @media screen and (max-width: 768px) {
       .response-flex > div {
            width: 50%;
        }
    }
    @media screen and (max-width: 480px) {
       .response-flex > div {
            width: 100%;
        }
    }
    .hero{
       height: auto;
       padding-top: 100px;
       padding-bottom: 100px;
    }
    .members-section{
        padding-top: 10px;
    }

    /* Modern Member Card Styles */
    .member-card-modern {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .member-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #3498db(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .member-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .member-card-modern:hover::before {
        transform: scaleX(1);
    }
    
    /* Card Header */
    .card-header-modern {
        background: #3498db(135deg, #667eea 0%, #764ba2 100%);
        padding: 40px 20px 30px;
        text-align: center;
        position: relative;
    }
    
    .member-photo-wrapper {
        position: relative;
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
    }
    
    .member-photo-modern {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s ease;
    }
    
    .member-card-modern:hover .member-photo-modern {
        transform: scale(1.05);
    }
    
    .photo-border {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.5);
        animation: pulse-border 2s infinite;
    }
    
    @keyframes pulse-border {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.7;
        }
    }
    
    .member-status-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.95);
        color: #667eea;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .member-status-badge i {
        font-size: 14px;
    }
    
    /* Card Body */
    .card-body-member {
        padding: 25px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .member-name-modern {
        font-size: 20px;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
        text-align: center;
        line-height: 1.3;
    }
    
    .member-affiliation-modern {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        color: #718096;
        text-align: center;
        margin: 0;
        padding: 0 10px;
    }
    
    .member-affiliation-modern i {
        color: #667eea;
        font-size: 14px;
    }
    
    /* Research Timeline */
    .research-timeline {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .timeline-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    
    .timeline-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #3498db(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .timeline-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .timeline-label {
        font-size: 13px;
        font-weight: 600;
        color: #2d3748;
    }
    
    .timeline-period {
        font-size: 12px;
        color: #718096;
    }
    
    /* Social Links */
    .social-links-modern {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f7fafc;
        border: 2px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #667eea;
        font-size: 16px;
}

 .btn-profile,
    .btn-publications {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    padding: 3px 12px;
            border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        margin-right: 10px;
    }

    .btn-profile {
        background-color: #667eea;
        color: white;
        text-wrap: nowrap;
    color: white;
    }

    .btn-profile:hover {
        background-color: #5a67d8;
        transform: translateY(-2px);
    }

    .btn-publications {
        background-color: transparent;
        color: #667eea;
        border-color: #e2e8f0;
    }

    .btn-publications:hover {
        background-color: #f7fafc;
        border-color: #667eea;
        transform: translateY(-2px);
    }   

