
   /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: #F0F0F0;
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            margin-right: 0.5rem;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }

        .breadcrumb-link {
            color: var(--primary);
            transition: var(--transition);
            text-decoration: none;
        }

        .breadcrumb-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .breadcrumb-current {
            color: var(--gray);
            pointer-events: none;
        }

        /* CEO Message Content Styles */
        .about {
            padding: 6rem 0;
            background-color: #050520;
            color: white;
        }
        
        .container {
            max-width: 2000px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .speech-container {
            margin-top: 3rem;
        }
        
        .speech-main {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
        }
        
        .ceo-image {
            flex: 0 0 700px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .ceo-image img {
            width: 100%;
            height: 750px;
            display: block;
            transition: transform 0.3s;
        }
        
        .ceo-image:hover img {
            transform: scale(1.03);
        }
        
        .speech-content {
            flex: 1;
            min-width: 300px;
            padding: 4rem;
            background: rgba(10, 10, 40, 0.7);
            border-radius: 8px;
            border-left: 4px solid var(--hologram-blue);
            position: relative;
                        margin-top: 4.5rem;
        }
        
        .speech-content::before {
            content: '';
            position: absolute;
            top: 40px;
            left: -20px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 20px solid rgba(10, 10, 40, 0.7);
            filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.2));
        }
        
        .speech-content p {

            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .speaker-details {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
        }
        
        .speaker-details p {
            margin-bottom: 0.5rem;
        }
        
        .speaker-details strong {
            color: var(--hologram-blue);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hologram-panel {
                padding: 1.5rem;
            }
            
            .holo-shape {
                filter: blur(20px);
            }
            
            .holo-shape-1, .holo-shape-2 {
                width: 200px;
                height: 200px;
            }
            
            .speech-main {
                flex-direction: column;
            }
            
            .ceo-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .speech-content::before {
                display: none;
            }
        }
        
        
        
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .speech-content {
        padding: 15px;
        text-align: left; /* Override justify on small screens if needed */
    }

    /* Optional: Reduce justification on mobile for better readability */
    .speech-content .justified-text {
        text-align: left;
        hyphens: none;
    }
}
        

        :root {
            --hologram-blue: rgba(0, 255, 255, 0.8);
            --hologram-pink: rgba(255, 0, 255, 0.8);
            --hologram-green: rgba(0, 255, 0, 0.8);
            --dark-space: #050520;
            --glow-effect: 0 0 15px, 0 0 30px;
        }



        .hero {
            height: 50vh;
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            perspective: 1000px;
            background: radial-gradient(ellipse at bottom, #0d1e31 0%, #050520 100%);
        }

        /* Holographic Grid Floor */
        .grid-floor {
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                linear-gradient(rgba(0, 150, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: rotateX(75deg) translateZ(-200px);
            bottom: -100%;
            left: -50%;
            z-index: 0;
            animation: gridMove 20s linear infinite;
        }

        /* Holographic UI Panel */
        .hologram-panel {
            max-width: 800px;
            padding: 1rem;
            background: rgba(5, 5, 32, 0.6);
            border: 1px solid var(--hologram-blue);
            border-radius: 8px;
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 10;
            margin: 1 1rem;
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
        }

        /* Holographic Title */
        .hologram-panel h1 {
            font-family: 'Chakra Petch', sans-serif;
            font-size: clamp(2.5rem, 2vw, 2.5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--hologram-blue), var(--hologram-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 
                0 0 15px var(--hologram-blue),
                0 0 30px var(--hologram-pink);
            letter-spacing: 2px;
            position: relative;
        }

        .hologram-panel h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--hologram-blue), var(--hologram-pink));
            box-shadow: var(--glow-effect) var(--hologram-blue);
        }

        /* Holographic Text */
        .hologram-panel p {
            font-family: 'Exo 2', sans-serif;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 600px;
        }

        /* Holographic Button */
        .hologram-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: transparent;
            color: var(--hologram-green);
            padding: 1rem 1.5rem;
            border: 2px solid var(--hologram-green);
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 
                0 0 15px var(--hologram-green),
                inset 0 0 10px var(--hologram-green);
            text-decoration: none;
            font-family: 'Exo 2', sans-serif;
        }

        .hologram-button:hover {
            background: rgba(0, 255, 0, 0.1);
            transform: translateY(-5px);
            box-shadow: 
                0 0 30px var(--hologram-green),
                inset 0 0 20px var(--hologram-green);
        }

        .hologram-button::before {
            content: '◈';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s;
        }

        .hologram-button:hover::before {
            left: 15px;
            opacity: 1;
        }

        /* Floating Holographic Shapes */
        .holo-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.6;
            z-index: 1;
            animation: float 15s infinite ease-in-out;
            mix-blend-mode: screen;
        }

        .holo-shape-1 {
            width: 300px;
            height: 300px;
            background: var(--hologram-blue);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .holo-shape-2 {
            width: 400px;
            height: 300px;
            background: var(--hologram-pink);
            bottom: 10%;
            right: 5%;
            animation-delay: 3s;
        }

        /* Connection Lines */
        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, var(--hologram-blue), transparent);
            box-shadow: 0 0 10px var(--hologram-blue);
            transform-origin: left center;
            z-index: 5;
            animation: pulse 2s infinite alternate;
        }

        /* Connection Nodes */
        .connection-node {
            position: absolute;
            border-radius: 50%;
            background: var(--hologram-blue);
            box-shadow: 0 0 15px var(--hologram-blue);
            z-index: 4;
            animation: pulse 2s infinite alternate;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        @keyframes gridMove {
            0% {
                transform: rotateX(75deg) translateZ(-200px) translateY(0);
            }
            100% {
                transform: rotateX(75deg) translateZ(-200px) translateY(60px);
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.3;
            }
            100% {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                min-height: 500px;
                height: auto;
                padding: 4rem 0;
            }
            
            .hologram-panel {
                padding: 1.5rem;
                margin-top: 2rem;
            }
            
            .holo-shape {
                filter: blur(20px);
            }
            
            .holo-shape-1, .holo-shape-2 {
                width: 200px;
                height: 200px;
            }
        }

   /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 20px;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover,
        .back-to-top:focus {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .back-to-top:active {
            transform: translateY(-1px);
        }

        /* Font Awesome icon styling (if you're not using the CDN) */
        .back-to-top i {
            line-height: 1;
        }


