﻿body {
    /* Government Style - Clean, No Background, Visible Arrows */
    #myCarousel

{
    width: 100%;
    background: transparent;
}
#myCarousel {
    position: relative;
    overflow: hidden;
}

    #myCarousel .carousel-control-prev,
    #myCarousel .carousel-control-next {
        width: 60px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }

    #myCarousel .carousel-control-prev {
        left: 10px;
    }

    #myCarousel .carousel-control-next {
        right: 10px;
    }

    #myCarousel .carousel-control-prev-icon,
    #myCarousel .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }
#myCarousel .carousel-item img {
    width: 100%;
    height: auto; /* Ensures no cutting */
    display: block;
}

/* High Visibility Arrows */
.carousel-control-prev, .carousel-control-next {
    width: 7%;
    cursor: pointer;
    z-index: 10; /* Ensure buttons are on top */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8)); /* Visible on light/dark images */
}

/* Government Style - Clean, No Background */
.slider-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 999;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    cursor: pointer;
    transition: .3s;
}

    .slider-dot:hover {
        transform: scale(1.2);
    }

    .slider-dot.active {
        background: #1ec8ff;
        box-shadow: 0 0 8px rgba(30,200,255,.8);
    }
#myCarousel {
    width: 100%;
    background: transparent;
    position: relative;
}

    #myCarousel .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
    }

/* High Visibility Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    cursor: pointer;
    z-index: 9999;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.8));
}

/* Dots */
.custom-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 9999;
}

    .custom-slider-dots button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #57e7f7;
        opacity: 1;
        padding: 0;
        cursor: pointer;
    }

        .custom-slider-dots button.active {
            background: #27d7ea;
        }
}
