:root{
    --color-1: rgb(255, 15, 108);
}

.bg-primary{
    background-color: var(--accent-color) !important;
    color: #fff;
}
.bg-gray{
    background-color: var(--gray-color) !important;
    color: #000;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.whatsapp-float img {
    width: 60px;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

/* Pulse Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


.social-float {
    position: fixed;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    /*background: #fff;*/
    color: 000;
    z-index: 1111;
    display: block;
}

.social-float a {
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    transition: .5s;
    transform: translateX(135px);
}

.social-float a i {
    font-size: 24px;
}

/*.social-float a span{*/
/*    font-size: 13px;*/
/*}*/
.social-float .whatsapp {
    background: #25d366;
    color: #fff;
}

.social-float .linkedin {
    background: #0077B5;
    color: #fff;
}

.social-float .instagram {
    background: #8134af;
    color: #fff;
}

.social-float .facebook {
    background: #1877F2;
    color: #fff;
}

.social-float a:hover {
    transform: translateX(0);
}

.header .topbar {
    /* background: #002248; */
}

.card-customs {
    position: relative;
    background: #fff;
    padding: 20px;
    color: #000;
    border-radius: 10px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    cursor: pointer;
    transition: .5s;
    z-index: 2222;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-customs img {
    position: relative;
    width: 100px;
}

.card-customs h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin: 10px 0;
}

.card-customs a {
    color: #000;
}

.card-customs:hover a {
    color: #fff !important;
}

.card-customs:hover h4 {
    color: #fff !important;
}

.card-customs:before {
    content: "";
    position: absolute;
    left: 30%;
    bottom: -40%;
    width: 30%;
    height: 30%;
    background: #a9255e;
    z-index: -1;
    transition: .5s;
    border-radius: 50%;
}

.card-customs:hover:before {
    width: 100%;
    height: 100%;
    bottom: 0%;
    left: 0;
    /*border-radius: 0%;*/
    scale: 2;
}

.custom-card-btn {
    background: #a9255e;
    border-radius: 20px;
    padding: 10px 20px;
}

.single-line-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero {
    min-height: 100% !important;
    padding: 0 0;
    /* transform: translateY(-100px); */
}

.hero .content {
    margin-top: 0px;
}

.card-customs h4 {
    font-size: 1.3rem;
}

.header {
    /* background: transparent; */
}

/* stats */
.stats .stats-item{
    border-radius: 12px;
}
.stats i{
    background-color: var(--accent-color);
}

.department-area{
    margin-bottom: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1)

}
.department-area img{
    font-size: 2.6rem;
    filter: brightness(0) saturate(100%) invert(7%) sepia(100%) saturate(7500%) hue-rotate(200deg);
}
.department-single{
    padding: 0;
    margin: 0;
}
.department-area a.active,
.department-area a:hover{
    opacity: 1;
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;

}
.department-single img{
    width: 70px;
}
.department-area a.active img,
.department-area a:hover img
{
    filter: invert(1);
    opacity: 1;
} 
.department-area a:hover span,
.department-area a.active span{
 color: #fff !important;
 opacity: 1;
}

.department-area a{
    color: #363636;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    padding: 20px 40px;
    border-collapse: collapse;
    border-left: 1px solid #ddd;
}
.department-area a span,
.department-area a img{
    opacity: .8;
}


.custom-card{
    text-align: center;
    box-shadow: 
                0 0px 3px rgba(0, 0, 0, 0.12),
                0 0px 6px rgba(0, 0, 0, 0.1),
                0 0px 15px rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: .2s;
    margin-bottom: 20px;
}
.custom-card .content{
    padding: 10px 50px 40px 50px;
}
.custom-card .icon{
    margin: auto;
    background-color: var(--accent-color);
    width:70px;
    height:70px;
    mask-size: contain;
    margin-top: 50px;
}
.custom-card img{
    width: 100%;
    /*height: 100%;*/
    aspect-ratio: 3/2;
    object-fit: cover;
}
.custom-card .title{
    font-weight: 600;
    margin-top: 20px;
    color: #000;
    /* margin-bottom: 40px; */
}
.custom-card p{
    color: #000;
}
.custom-card:hover{
    background-color: var(--accent-color);
    color:#fff;
}

.custom-card:hover .icon{
    background-color: #fff;
}
.custom-card:hover .title{
    color:#fff;
}

.custom-card:hover p{
    color:#fff;
}


.main-banner{
    background-size: cover;
    /*display: flex;*/
    /*align-items: t;*/
    min-height: 600px;
    background-position: center center;
}

.main-banner .title{
    font-size: 2rem;
    font-weight: 600 !important;
    color: var(--accent-color);
}



.main-banner .subtitle{
    font-size: 1rem;
    font-weight: 600;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.main-banner-content{
    min-width: 300px;
    padding: 20px 40px;
    background: var(--accent-color);
    
    
}
.main-banner-content .subtitle{
    text-shadow: 
    2px 2px 4px rgba(255, 255, 255, 0.8),   /* dark outer shadow */
    -1px -1px 0 rgba(255, 255, 255, 0.5),   /* top-left soft shadow */
    1px 1px 0 rgba(255, 255, 255, 0.5);     /* bottom-right soft shadow */
}
.main-banner-content .title{
    /*color: #e41e23;*/
    text-shadow: 
    2px 2px 4px rgba(255, 255, 255, 0.8),   /* dark outer shadow */
    -1px -1px 0 rgba(255, 255, 255, 0.5),   /* top-left soft shadow */
    1px 1px 0 rgba(255, 255, 255, 0.5);     /* bottom-right soft shadow */
}

.main-banner-title{
    margin-top: 50px;
    background: #bee3fa;
    font-size: 3rem;
    color: var(--accent-color);
    padding: 5px 40px 10px 40px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 30px rgba(0,0,0,.3);
}
.main-banner-title span{
    font-weight: bold;
}

@media(max-width:768px){
    .main-banner-title{
        font-size: 1.4rem;
    }
    .topbar-right{
        display:none !important;
    }
}