.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-success {
    color: var(--success) !important;
}



.slide-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.page-banner h1 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    color: #fff;
}



.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #0679aaff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover .icon-circle {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #0679aaff, var(--color-primary));
}


.others-services i {
    font-size: 20px;
}


.others-services span {
    display: flex;
    align-items: center;
}

.others-services h5 {
    margin-bottom: 0;
    color: #fff;
}

.form-control {
    line-height: 40px;
    background: #019ade30;
}


.page-banner img {
    min-height: 300px;
    object-fit: cover;
}

.slide img {
    min-height: 300px;
    object-fit: cover;
}