/* Global Page Transitions */
body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
body.loaded {
    opacity: 1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Content Fade In */
.content-fade-in {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}
.img-hover-zoom img {
    transition: transform 0.5s ease;
}
.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Common Section Styles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #007bff;
    margin: 1rem auto 0;
}

/* Common Card Styles */
.card-title {
    font-weight: 600;
    color: #333;
}
.card-body {
    padding: 2rem;
}

/* Common List Styles */
.list-unstyled li {
    margin-bottom: 0.8rem;
}
.list-unstyled li i {
    margin-right: 0.5rem;
}

/* Common Form Styles */
.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}
.form-group label {
    font-weight: 500;
    color: #333;
}

/* Common Table Styles */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}
.table-bordered {
    border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

/* Common Social Links */
.social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}
.social-links .btn:hover {
    background-color: #007bff;
    color: #fff;
}

/* Common Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 2rem;
    }
    .card-body {
        padding: 1.5rem;
    }
} 