        .header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        .header h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-weight: 700;
        }

        #speakers{
            padding-top: 100px;
            padding-bottom: 100px;
            padding-left: 8px;
            padding-right: 8px;
            background-color: rgb(11, 66, 17);
        }

        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .speaker-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 10px 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .speaker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .speaker-card:hover::before {
            left: 100%;
        }

        .speaker-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .speaker-card:hover .speaker-image {
            transform: scale(1.05);
        }

        .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .speaker-card:hover .speaker-image img {
            transform: scale(1.1);
        }

        .speaker-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d5016;
            margin-bottom: 8px;
        }

        .speaker-title {
            font-size: 1rem;
            color: #000;
            font-weight: 400;
            line-height: 1.4;
        }

        .see-more-btn {
            background: linear-gradient(45deg, #8fbc8f, #4a7c59);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin: 20px auto;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: block;
        }

        .see-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #4a7c59, #2d5016);
        }

        .hidden-mobile {
            display: none;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }

            .speakers-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .container {
                padding: 15px;
            }

            .speaker-card {
                padding: 25px 15px;
            }

            .see-more-btn {
                display: block;
            }

            .show-more {
                display: block !important;
                animation: fadeInUp 0.6s ease-out;
            }
        }

        /* Desktop Styles */
        @media (min-width: 769px) {
            .speakers-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hidden-mobile {
                display: block;
            }
            
            .see-more-btn {
                display: none;
            }
        }

        /* Animation delays for staggered effect */
        .speaker-card:nth-child(1) { animation-delay: 0.1s; }
        .speaker-card:nth-child(2) { animation-delay: 0.2s; }
        .speaker-card:nth-child(3) { animation-delay: 0.3s; }
        .speaker-card:nth-child(4) { animation-delay: 0.4s; }
        .speaker-card:nth-child(5) { animation-delay: 0.5s; }
        .speaker-card:nth-child(6) { animation-delay: 0.6s; }
        .speaker-card:nth-child(7) { animation-delay: 0.7s; }
        .speaker-card:nth-child(8) { animation-delay: 0.8s; }

        /* Profile Modal Styles */
        .profile-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            animation: fadeIn 0.3s ease-out;
        }

        .profile-content {
            background: rgba(255, 255, 255, 0.95);
            margin: 12% auto;
            padding: 40px;
            border-radius: 25px;
            width: 90%;
            max-width: 800px;
            max-height: 75vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideIn 0.4s ease-out;
        }

        .close {
            color: #000000;
            text-shadow: 2px 2px 2px black;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            position: fixed;
        }

        .close:hover,
        .close:focus {
            color: #000;
        }

        .profile-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 30px;
            overflow: hidden;
            border: 6px solid #8fbc8f;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d5016;
            margin-bottom: 10px;
        }

        .profile-title {
            font-size: 1.3rem;
            color: #4a7c59;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .profile-bio {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #000;
            margin-bottom: 40px;
            text-align: left;
        }

        .achievements {
            margin-bottom: 40px;
        }

        .achievements h3 {
            font-size: 1.5rem;
            color: #2d5016;
            margin-bottom: 20px;
            border-bottom: 2px solid #8fbc8f;
            padding-bottom: 10px;
        }

        .achievements ul {
            list-style: none;
        }

        .achievements li {
            padding: 12px 0;
            border-left: 4px solid #ffeb3b;
            padding-left: 20px;
            margin-bottom: 10px;
            background: rgba(143, 188, 143, 0.1);
            border-radius: 0 10px 10px 0;
            font-size: 1rem;
            color: #333;
        }

        /*.navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px solid rgba(143, 188, 143, 0.3);
        }*/

        .nav-btn {
            background: linear-gradient(45deg, #8fbc8f, #4a7c59);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: linear-gradient(45deg, #4a7c59, #2d5016);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .nav-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Mobile Profile Styles */
        @media (max-width: 768px) {
            .profile-content {
                padding: 25px;
                margin: 13% auto;
                width: 95%;
            }

            .profile-name {
                font-size: 2rem;
            }

            .profile-title {
                font-size: 1.1rem;
            }

            .profile-image {
                width: 150px;
                height: 150px;
            }

            .profile-bio {
                font-size: 1rem;
            }

            .navigation {
                flex-direction: column;
                gap: 15px;
            }

            .nav-btn {
                text-align: center;
            }
        }
