.hero-section {
            height: 35rem;
            background: linear-gradient(135deg, rgba(135, 206, 235, 0.5), rgba(70, 130, 180, 0.4)),
                        url('../Images/mappingsinga.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        .content-wrapper {
            z-index: 2;
            max-width: 1200px;
            padding: 0 20px;
        }

        .main-title {
            font-size: clamp(3rem, 5vw, 8rem);
            font-weight: bold;
            text-shadow: 3px 3px 6px rgba(0,0,0,1);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
        }

        .sub-title {
            font-size: clamp(1.2rem, 3vw, 2.5rem);
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0,0,0,1);
            margin-bottom: 3rem;
            /* opacity: 0.95; */
            animation: fadeInUp 1s ease-out 0.2s both;

	    font-weight: bold;
        }

        .photo-slider {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 200px;
            margin: 2rem auto;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .slides-container {
            position: relative;
            width: 100%;
            height: 100%;
            /* overflow: hidden;
            border-radius: 15px; */
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            transform: scale(0.95);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide-content {
            display: flex;
            gap: 15px;
            height: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
			
			border-radius: 15px;
			overflow: hidden;
        }

        .photo {
            flex: 1;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .photo:hover {
            transform: translateY(-5px);
        }

        .photo-1 { /* background: linear-gradient(45deg, #667eea, #764ba2); */ background-image: url(https://orlandosydney.com/wp-content/uploads/2023/08/Conference-at-Darling-Harbour-Theatre-Interior-Photo%C2%B7-ICC-Sydney.-2500-seated-capacity.-Photography-By-orlandosydney.com-OS1_7156.jpg);}
        .photo-2 { /* background: linear-gradient(45deg, #f093fb, #f5576c); */ background-image: url(https://leave-dates.files.svdcdn.com/production/assets/Articles/industry-conference.png?dm=1670233362);}
        .photo-3 { /* background: linear-gradient(45deg, #4facfe, #00f2fe); */ background-image: url(https://www.wtcmanila.com.ph/wp-content/uploads/2020/03/Assembling-Private-Company-Meetings.jpg);}
        .photo-4 { /* background: linear-gradient(45deg, #4facfe, #00f2fe); */ background-image: url(https://www.wtcmanila.com.ph/wp-content/uploads/2020/03/5-Ways-To-Organize-A-Conference.jpg);}
        .photo-5 { /* background: linear-gradient(45deg, #4facfe, #00f2fe); */ background-image: url(https://www.bookeventz.com/blog/wp-content/uploads/2016/09/cocktail-party-1.jpg);}

        .navigation {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-section .nav-item {
            padding: 12px 24px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .hero-section .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .hero-section .nav-item:hover::before {
            left: 100%;
        }

        .hero-section .nav-item:hover,
        .hero-section .nav-item.active {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .hero-section .nav-item.active {
            background: rgba(70, 130, 180, 0.8);
            border-color: rgba(255,255,255,0.8);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 40px;
            height: 40px;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 80px;
            height: 80px;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            bottom: 20%;
            right: 10%;
            width: 50px;
            height: 50px;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .navigation {
                gap: 1rem;
            }
            
            .hero-section .nav-item {
                padding: 10px 16px;
                font-size: 0.9rem;
            }

            .photo-slider {
                height: 150px;
            }

            .slide-content {
                padding: 10px;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .navigation {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .hero-section .nav-item {
                width: 200px;
                text-align: center;
            }
        }