
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body,
html {
    margin: 0;
    padding: 0;
    
}
.header {
        position: relative; /* or 'fixed' if you want sticky */
        z-index: 10000;
        background: rgba(255, 255, 255, 0.95); /* optional */
    }

    /* Optional: smaller logo on mobile */
    .logo img {
        width: 200px;
        height: auto;
    }

    /* Hero wrapper */
    .constitutional-hero-wrapper {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

    .constitutional-carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .constitutional-carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
    }

    .constitutional-hero-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,153,51,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(19,136,8,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .constitutional-content-container {
        position: relative;
        z-index: 10;
        padding: 2rem 1rem;
        max-width: 1400px;
        margin: 0 auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
.header {
    position: relative; /* or fixed if you want sticky */
    z-index: 10000;     /* must be higher than any hero/slide */
    background: rgba(255, 255, 255, 0.95); /* optional, to make it visible */
}


        .constitutional-hero-wrapper {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            font-family: 'Georgia', serif;
        }

        .constitutional-carousel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .constitutional-carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /*opacity: 0;*/
            /*transition: opacity 1.5s ease-in-out;*/
        }

        .constitutional-carousel-slide.csl-active {
            opacity: 1;
        }

        .constitutional-carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));*/
            z-index: 1;
        }

        

.constitutional-carousel-slide:nth-child(1) {
    background-image: url('../img/herobanner.jpeg'); 
}

/*.constitutional-carousel-slide:nth-child(2) {*/
    /*background-image: url('../img/homeslide2.jpeg');*/
}

/*.constitutional-carousel-slide:nth-child(3) {*/
/*    background-image: url('../img/slide3.jpeg'); */
/*}*/

/*.constitutional-carousel-slide:nth-child(4) {*/
/*    background-image: url('../img/slide4.png');*/
/*}*/

/*.constitutional-carousel-slide:nth-child(5) {*/
/*    background-image: url('../img/slide5.png');*/
/*}*/






        .constitutional-hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(19, 136, 8, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .constitutional-content-container {
            position: relative;
            z-index: 10;
            padding: 2rem 1rem;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .constitutional-header-section {
            text-align: center;
            margin-bottom: 3rem;
        }

        .constitutional-main-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        

        .constitutional-pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
            margin-bottom: 3rem;
        }

        .constitutional-pillar-column {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
            border-radius: 20px 20px 0 0;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .constitutional-pillar-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        .constitutional-pillar-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            border-radius: 20px 20px 0 0;
        }

        .constitutional-pillar-justice::before {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
        }

        .constitutional-pillar-liberty::before {
            background: linear-gradient(135deg, #0984e3, #74b9ff);
        }

        .constitutional-pillar-equality::before {
            background: linear-gradient(135deg, #d63031, #fab1a0);
        }

        .constitutional-pillar-fraternity::before {
            background: linear-gradient(135deg, #00b894, #55efc4);
        }

        .constitutional-pillar-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            z-index: 1;
            margin-top: 1rem;
        }

        .constitutional-pillar-symbol {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #2c3e50;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .constitutional-unity-section {
            text-align: center;
            margin-bottom: 3rem;
            max-width: 900px;
        }

        .constitutional-unity-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }

        .constitutional-unity-description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.6;
            color: #f8f9fa;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .constitutional-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: constitutional-blink 1.5s ease-in-out infinite alternate;
        }

        @keyframes constitutional-blink {
            0% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.02);
                box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
            }
            100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            }
        }

        .constitutional-cta-button::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;
        }

        .constitutional-cta-button:hover {
            animation-play-state: paused;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }

        .constitutional-cta-button:hover::before {
            left: 100%;
        }

        .constitutional-symbolic-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .constitutional-scale-icon {
            position: absolute;
            bottom: 15%;
            left: 8%;
            font-size: 4rem;
            color: rgba(108, 92, 231, 0.3);
            transform: rotate(-10deg);
        }

        .constitutional-book-icon {
            position: absolute;
            top: 20%;
            right: 10%;
            font-size: 3rem;
            color: rgba(13, 132, 227, 0.3);
            transform: rotate(15deg);
        }

        .constitutional-hands-icon {
            position: absolute;
            bottom: 20%;
            right: 8%;
            font-size: 3.5rem;
            color: rgba(0, 184, 148, 0.3);
            transform: rotate(-5deg);
        }

        .constitutional-people-icon {
            position: absolute;
            top: 50%;
            left: 5%;
            font-size: 3rem;
            color: rgba(214, 48, 49, 0.3);
            transform: rotate(8deg);
        }

        @media (max-width: 768px) {
            .constitutional-content-container {
                padding: 1.5rem 1rem;
            }

            .constitutional-pillars-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 400px;
            }

            .constitutional-pillar-column {
                padding: 1.5rem 1rem;
            }

            .constitutional-symbolic-elements {
                display: none;
            }

            .constitutional-cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .constitutional-main-title {
                font-size: 2rem;
                letter-spacing: 0.05em;
            }

            .constitutional-unity-title {
                font-size: 1.5rem;
            }

            .constitutional-unity-description {
                font-size: 0.95rem;
            }

            .constitutional-pillars-grid {
                gap: 1rem;
            }

            .constitutional-pillar-column {
                padding: 1.2rem 0.8rem;
            }

            .constitutional-pillar-title {
                font-size: 1.2rem;
            }

            .constitutional-cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }
        }

        @media (min-width: 1200px) {
            .constitutional-scale-icon {
                font-size: 5rem;
            }

            .constitutional-book-icon {
                font-size: 4rem;
            }

            .constitutional-hands-icon {
                font-size: 4.5rem;
            }

            .constitutional-people-icon {
                font-size: 4rem;
            }
        }
    