/* LogiZent Brand Colors */
:root {
    --primary-color: #C8A882;
    --primary-dark: #B8956F;
    --secondary-color: #8B7355;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Image Styles */
.service-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 40px;
    height: 40px;
    fill: white;
}

/* Service-specific gradients */
.patient-management-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.telemedicine-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.appointment-booking-img {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Service Icon Styles */
.service-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.service-icon:hover {
    fill: var(--primary-dark);
    transform: scale(1.1);
}

/* Enhanced styling */
.menu-item h4 {
    color: #2c3e50;
    font-weight: 600;
}

.menu-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Animation enhancement */
.wow {
    visibility: hidden;
}

.bounceInUp {
    animation: bounceInUp 1s ease-in-out;
    visibility: visible;
}

@keyframes bounceInUp {
    from {
        transform: translate3d(0, 60px, 0);
        opacity: 0;
    }
    60% {
        transform: translate3d(0, -20px, 0);
        opacity: 1;
    }
    75% {
        transform: translate3d(0, 10px, 0);
    }
    90% {
        transform: translate3d(0, -5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/*Tab2*/

/* LogiZent Brand Colors */
:root {
    --primary-color: #C8A882;
    --primary-dark: #B8956F;
    --secondary-color: #8B7355;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Service Image Styles */
.service-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-image svg {
    width: 40px;
    height: 40px;
    fill: white;
}

/* Education-specific gradients */
.learning-management-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.student-portals-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.online-examination-img {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Service Icon Styles */
.service-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.service-icon:hover {
    fill: var(--primary-dark);
    transform: scale(1.1);
}

/* Enhanced styling */
.menu-item h4 {
    color: #2c3e50;
    font-weight: 600;
}

.menu-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Animation enhancement */
.wow {
    visibility: hidden;
}

.bounceInUp {
    animation: bounceInUp 1s ease-in-out;
    visibility: visible;
}

@keyframes bounceInUp {
    from {
        transform: translate3d(0, 60px, 0);
        opacity: 0;
    }
    60% {
        transform: translate3d(0, -20px, 0);
        opacity: 1;
    }
    75% {
        transform: translate3d(0, 10px, 0);
    }
    90% {
        transform: translate3d(0, -5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}