/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Contact Form Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert .btn-close {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.alert .btn-close:hover {
    opacity: 1;
}

/* Form Result Styles */
.form-result {
    margin-bottom: 20px;
}

.form-result.alert {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Team Member Hover Effects */
.team-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.team-hover-effect {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.team-hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.team-hover-effect .team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.team-hover-effect .team-image img {
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
}

.team-hover-effect:hover .team-image img {
    transform: scale(1.05);
}

.team-hover-effect .team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-hover-effect:hover .team-image::after {
    opacity: 1;
}

.team-name {
    color: inherit;
    transition: color 0.3s ease;
}

.team-hover-effect:hover .team-name {
    color: #007bff;
}

.team-details-btn {
    transition: all 0.3s ease;
}

.team-hover-effect:hover .team-details-btn {
    background-color: #007bff;
    border-color: #007bff;
    color: white !important;
    transform: translateY(-2px);
}

.team-hover-effect .team-desc {
    transition: all 0.3s ease;
}

.team-hover-effect:hover .team-desc {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Social Icons Hover Effect */
.team-hover-effect .social-icon {
    transition: all 0.3s ease;
}

.team-hover-effect:hover .social-icon {
    transform: translateY(-3px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .team-hover-effect:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }
}

