
.top-bar {
    background-image: url(../images/bg1.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgb(23 37 84);
    height: 90px;
    padding-top: 5px;
}

.top-bar .title-main {
    line-height: 1;
    font-size: 30px;
    font-weight: 700;
    color: #014f7b;
    text-align: center;
    text-shadow: 3px 3px 2px hsla(0, 0%, 59%, .5);
}

.top-bar .title {
    color: #014f7b;
    line-height: 1;
    text-transform: uppercase;
}

.bg-cover {
    background-size: cover;
    height: 73vh;
}

.sliders .slide{
    height: 100vh !important;
}

.sliders,
.owl-stage-outer{
    height: 550px !important;
}

.sliders .owl-item img{
    width: 130px !important;
    margin-left: 0 !important;
}

/* Custom arrows */
.sliders .owl-prev-icon, .sliders .owl-next-icon {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #014f7b; /* Dark blue */
    color: #ffcb42; /* Yellow */
    font-size: 20px;
    border-radius: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sliders .owl-prev-icon:hover, .sliders .owl-next-icon:hover {
    background-color: #014f7b;
}

/* Position arrows nicely */
.sliders .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none; /* So only buttons are clickable */
}

.sliders .owl-nav button {
    pointer-events: all;
}

/* Custom dots */
.sliders .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.sliders .owl-dot span {
    width: 12px;
    height: 12px;
    background: #014f7b; /* Dark blue */
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sliders .owl-dot.active span,
.sliders .owl-dot:hover span {
    background: #ffcb42; /* Yellow when active/hover */
    transform: scale(1.2);
}

.testimonials img{
    height: 60px;
    width: 60px !important;
    border-radius: 100px;
}

footer h4{
    line-height: 1;
    font-size: 30px;
    font-weight: 700;
    color: #014f7b;
}

footer svg{
    fill: #172651;
}

.news-section img {
    padding: 17px 17px;
    border-radius: 30px;
}

.news-section .new-tag{
    background: #f4f4f4;
    color: #666666;
    width: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    padding: 10px 0 0 0;
    margin: 0 20px 0 0;
    float: left;
    overflow: hidden;
    border-radius: 2px;
}

.news-section span{
    background-color: #ffcb42;
    width: 20% !important;
    margin-bottom: 10px;
    margin-top: -20px;
}

.event-tag{
    background-color: #ffcb42;
    width: 20% !important;
    margin-bottom: 10px;
    margin-top: -17px;
}

.testimonials,
.testimonials .owl-stage-outer{
    height:300px !important;
}


/* Dots container for testimonials */
.testimonials .owl-dots {
    @apply flex justify-center mt-6;
}

/* Each dot */
.testimonials .owl-dot span {
    @apply w-3 h-3 mx-1 rounded-full bg-gray-300 transition-all duration-300;
}

/* Active dot */
.testimonials .owl-dot.active span {
    @apply bg-[#014f7b] w-4 h-4;
}

.lg-switch-button{
    position: fixed;
    bottom: 80px;
    right: 50px;
    height: 50px;
    width: 50px;
    background-color: #fecd0e;
    border-radius: 100px;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lg-switch-button svg {
    height: 21px;
    width: 87px;
}

#lang-menu {
    position: fixed;
    right: 50px;
    bottom: 131px;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
}

/*#lang-menu:hover {
    right: 0px;
    transition: right 0.3s ease-in-out;
}*/

#lang-menu a{
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background-color: #fecd0e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 12px;
}

.uchaguzi-widget {
    position: fixed;
    right: 119px;
    bottom: 78px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
    background-color: #fecd0e;
    padding: 16px 20px;
    z-index: 9999;
}

.uchaguzi-widget img {
    height: 80px;
    width: 70px;
    margin-top: -7px;
}

.uchaguzi-widget.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply to your image */
.bounce-animation {
    animation: bounce 2s infinite;
}

#team-members img{
    width: 160px !important;
    height: 240px !important;
    border-radius: 10px;
}

/* Mobile Responsive */
@media only screen and (max-width: 1200px){
    .top-bar{
        display: none;
    }
}