/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Custom Bootstrap Primary Color Override */
:root {
    --bs-primary: #0D6283;
}

.btn-primary,
.bg-primary,
.text-primary {
    background-color: #0D6283 !important;
    border-color: #0D6283 !important;
    color: #fff !important;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-brand span {
    color: #fff;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    line-height: 36px;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: #6c757d;
}

.breadcrumb-item.active {
    color: #0D6283;
}

/* Form Styles */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Team Member Images */
.card img {
    height: 250px;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Admin Styles */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-primary {
    --bs-table-bg: rgba(13, 110, 253, 0.1);
}

.badge {
    font-size: 0.85em;
    font-weight: 500;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Additional Admin Styles */
.bg-danger {
    background-color: #dc3545 !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
}

.bg-primary {
    background-color: #0D6283 !important;
}

/* Form styles */
.form-select {
    padding: 0.5rem 1rem;
}

/* Button icons */
.btn i {
    margin-right: 0.3rem;
}