  
        /* --- Section Connector --- */
        .section-connector {
            position: relative;
            height: 60px;
            max-width: 1140px;
            margin: 0 auto;
            z-index: 0;
        }
        .section-connector svg {
            width: 100%;
            height: 100%;
        }
        .section-connector path {
            stroke: url(#connectorGradient);
            stroke-width: 4;
            stroke-dasharray: 15;
            animation: dash 5s linear infinite;
        }
        @keyframes dash {
            to { stroke-dashoffset: -30; }
        }
        /* --- Sections --- */
        .section-title {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-block;
            padding: 9.5px 23px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
            animation: fadeIn 1s ease-in-out;
            font-size: 1.55rem;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(9.5px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section-container {
            width: 95%;
            max-width: 1140px;
            margin: -40px auto -30px;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transform: scale(0.95);
            transform-origin: top center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section-container:hover {
            transform: scale(0.95) translateY(-4px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .welcome-container, .news-list, .docs-list, .leader-box, .staff-card {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .welcome-container:hover, .news-list:hover, .docs-list:hover, .leader-box:hover, .staff-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        /* --- Divider --- */
        .section-divider {
            position: relative;
            text-align: center;
            margin: 40px 0;
            padding: 14px 0;
        }
        .section-divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--secondary), var(--primary), var(--secondary), transparent);
            opacity: 0.7;
            z-index: 0;
            border-radius: 1px;
        }
        /* --- Slider + Services Overlay --- */
       .slider-wrap {
    width: 100%;
    max-width: 1140px;
    margin: -40px auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transform-origin: top center;
}

.slider-col {
    width: 100%;
    position: relative;
    min-height: 494px;
}

.slider-box {
    width: 100%;
    height: 494px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #f4f6f9;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0;
    transform: translateX(20px); /* Slight slide for transition */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    border-radius: 10px;
    z-index: 1;
}

.slider-image.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 4;
}
        /* Animated classes */
        .animate-rotate { animation: rotate3D 1.2s ease-in-out; }
        .animate-scale { animation: scalePulse 1.2s ease-in-out; }
        .animate-translate { animation: translateFloat 1.2s ease-in-out; }
        @keyframes rotate3D { 0% { transform: translate(-50%,-50%) rotateY(-14deg); } 50% { transform: translate(-50%,-50%) rotateY(14deg); } 100% { transform: translate(-50%,-50%) rotateY(0); } }
        @keyframes scalePulse { 0% { transform: translate(-50%,-50%) scale(0.95); } 50% { transform: translate(-50%,-50%) scale(1.05); } 100% { transform: translate(-50%,-50%) scale(1); } }
        @keyframes translateFloat { 0% { transform: translate(-50%,-50%) translateY(10px); } 50% { transform: translate(-50%,-50%) translateY(-10px); } 100% { transform: translate(-50%,-50%) translateY(0); } }
        /* Services overlay */
        .services-overlay {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -90px;
            display: flex;
            gap: 15px;
            z-index: 12;
            padding: 10px;
            overflow-x: auto;
            max-width: calc(100% - 40px);
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .services-overlay::-webkit-scrollbar { height: 8px; }
        .services-overlay::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 8px; }
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100px;
            flex: 0 0 auto;
        }
        .service-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }
        .service-circle .icon {
            font-size: 32px;
            color: #ffffff;
        }
        .service-circle:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .service-name {
            margin-top: 10px;
            text-align: center;
            font-size: 0.85rem;
            color: #333;
            font-weight: 400;
            line-height: 1.4;
            width: 100%;
            padding: 0 6px;
            letter-spacing: 0.3px;
        }
        /* Staff cards */
        .staff-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .staff-card {
            width: 160px;
            margin: 10px;
            padding: 15px;
            background: #fff;
            border-radius: 10px;
            text-align: center;
        }
        .staff-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            margin-bottom: 10px;
        }
        .staff-card p {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }
        /* Leaders */
        .leader-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .leader1-img {
            width: 100%;
            height: 387px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid var(--secondary);
        }
        .leader-img {
            width: 100%;
            max-width: 190px;
            height: 190px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid var(--secondary);
        }
        .leader-box p {
            font-size: 1rem;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }
        .leader-box p:first-of-type {
            margin-top: 10px;
            font-weight: 600;
        }
        .leader-box p:last-of-type {
            margin: 0;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .floating-logo { margin-top: -40px; }
            .floating-logo img { height: 80px; width: 80px; }
            .slider-wrap { flex-direction: column; gap: 20px; margin-bottom: 50px; }
            .services-overlay { bottom: -80px; gap: 10px; max-width: 100%; }
            body { padding-top: 60px; }
            .navbar { padding: 8px 0; }
            .nav-link { font-size: 0.6rem; padding: 6px 10px; gap: 6px; }
            .nav-link i { font-size: 0.65rem; }
            .section-title { font-size: 1.4rem; padding: 8px 20px; }
            .slider-box { height: 380px; }
            .leader-img { height: 152px; }
            .staff-img { width: 64px; height: 64px; }
            .staff-container { gap: 15px; }
            .staff-card { width: 140px; margin: 8px; padding: 12px; }
            .section-container { margin-bottom: 25px; }
            .section-connector { height: 50px; }
            .section-connector path { stroke-width: 3.5; d: path("M1.5,0 Q1.5,25,1.5,50"); }
            footer.footer { margin-top: 50px; }
        }
        @media (max-width: 768px) {
            .navbar-nav-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 5px;
                width: 100%;
                margin-top: 80px; /* Space for floating logo */
            }
            .navbar-nav-left, .navbar-nav-right {
                display: none; /* Hide split navs on mobile */
            }
            .navbar-nav {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 5px;
                width: 100%;
            }
            .navbar-collapse {
                background: linear-gradient(135deg, #6b21a8 0%, #f472b6 100%);
                opacity: 0.95;
                border-radius: 5px;
                padding: 10px;
            }
            .nav-link {
                font-size: 0.55rem;
                padding: 6px 10px;
                gap: 6px;
                justify-content: center;
                width: 100%;
                border: 1px solid #d1d4db;
                text-align: center;
            }
            .nav-link i {
                font-size: 0.6rem;
            }
            .navbar-toggler {
                order: -1;
                position: absolute;
                left: 10px;
                top: 10px;
            }
            .navbar { padding: 10px 0; }
            body { padding-top: 55px; }
        }
        @media (max-width: 576px) {
            .floating-logo { margin-top: -35px; }
            .floating-logo img { height: 70px; width: 70px; }
            .navbar { padding: 10px 0; }
            .navbar-nav-wrapper { margin-top: 70px; }
            body { padding-top: 55px; }
            .section-title { padding: 8px 14px; font-size: 1.25rem; }
            .slider-box { height: 380px; }
            .services-overlay { bottom: -70px; gap: 8px; }
            .service-circle { width: 64px; height: 64px; }
            .service-circle .icon { font-size: 26px; }
            .service-item { width: 80px; }
            .service-name { font-size: 0.75rem; }
            .section-container { padding: 15px; margin-bottom: 20px; }
            .section-connector { height: 40px; }
            .section-connector path { stroke-width: 3; d: path("M1.5,0 Q1.5,20,1.5,40"); }
            .staff-card { width: 120px; margin: 5px; padding: 10px; }
            .staff-img { width: 60px; height: 60px; }
            .leader-img { height: 120px; }
            .slider-wrap { margin-bottom: 40px; }
            footer.footer { margin-top: 40px; }
        }