        * {
            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: rgba(255, 255, 255, 0.95);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            -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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #3498db, #9b59b6);
            margin: 0 auto;
            border-radius: 2px;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .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: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .exp-year {
            background: linear-gradient(45deg, #3498db, #9b59b6);
            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: linear-gradient(45deg, #3498db, #9b59b6);
            }
            
            .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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                border-radius: 4px;
            }
            
            ::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(45deg, #2980b9, #8e44ad);
            }




            /* Education Compact Section */
            .education-compact-section {
                padding: 80px 0;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            }
            
            .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: linear-gradient(45deg, #3498db, #9b59b6);
            }
            
            .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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(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: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
                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: linear-gradient(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: linear-gradient(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: linear-gradient(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: linear-gradient(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: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
            }
            
            .course-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }
            
            .course-header {
                background: linear-gradient(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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(45deg, #3498db, #9b59b6);
                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: linear-gradient(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: linear-gradient(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: linear-gradient(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;
}