/* Custom styles for blue theme */
:root {
    --primary: #0056b3;
    --primary-dark: #29166F;
    --secondary: #17a2b8;
    --accent: #ffc107;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.top-bar {
    background-color: var(--primary-dark);
    font-size: 0.9rem;
    padding: 8px 0;
}

.header-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.college-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.college-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.navbar {
    background-color: var(--dark) !important;
    padding: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    border-bottom: 3px solid var(--accent);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: var(--dark);
    border: none;
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    color: white;
    padding: 12px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    padding-left: 25px;
}

.dropdown-toggle::after {
    margin-left: 5px;
}

.hero-section {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stats-section {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.announcement-card {
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.announcement-date {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.leader-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid #2c569c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.leader-name {
    font-weight: 400;
    margin-bottom: 5px;
}

.leader-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.program-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.program-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.event-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-date {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-top: 20px;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 10px;
    font-size: 14px;
}

.footer h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .college-name {
        font-size: 1.4rem;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .dropdown-menu {
        background-color: rgba(0,0,0,0.2);
        border-left: 3px solid var(--accent);
    }
}

/* Additional styles for specific pages */
.page-header {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 61, 130, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Department and other page specific styles */
.department-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.department-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.faculty-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faculty-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.faculty-body {
    padding: 20px;
}

.faculty-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

.lab-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.lab-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.lab-body {
    padding: 20px;
}

/* Contact page styles */
.contact-section {
    padding: 60px 0;
}

.contact-card {
    border-radius: 10px;
    padding: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.contact-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Admission and other page specific styles */
.admission-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.admission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.admission-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
}

.admission-body {
    padding: 25px;
}

.feature-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.feature-body {
    padding: 20px;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.table thead {
    background-color: var(--primary);
    color: white;
}

.table tbody tr:nth-child(even) {
    background-color: rgba(0, 86, 179, 0.05);
}

.table tbody tr:hover {
    background-color: rgba(0, 86, 179, 0.1);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* Research page styles */
.research-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.research-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
}

.project-body {
    padding: 25px;
}

.publication-card {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.equipment-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.equipment-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.equipment-body {
    padding: 20px;
}

/* Placement page styles */
.placement-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.placement-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
}

.placement-body {
    padding: 25px;
}

.training-card {
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.training-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.alumni-card {
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.alumni-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

/* Gallery page styles */
.gallery-section {
    padding: 60px 0;
}

.gallery-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery-body {
    padding: 20px;
}

/* Founder card styles */
.founder-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Message page specific styles */
.message-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.message-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.message-body {
    padding: 25px;
}

.quote-highlight {
    background-color: rgba(0, 86, 179, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
}

/* Download card styles */
.download-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    padding: 30px 20px;
    border-top: 4px solid var(--primary);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Facility page specific styles */
.facility-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.facility-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.facility-body {
    padding: 20px;
}

.facility-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(0, 86, 179, 0.05);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Student corner page specific styles */
.student-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.student-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.student-body {
    padding: 20px;
}

.club-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.club-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.event-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.event-body {
    padding: 15px;
}

.council-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    padding: 20px;
    text-align: center;
}

.council-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.council-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}

.download-card {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background-color: rgba(0, 86, 179, 0.02);
    transition: all 0.3s;
}

.download-card:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

/* Pagination styles */
.pagination-container {
    text-align: center;
    margin-top: 40px;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pagination li {
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--primary);
    background-color: white;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.pagination li:last-child a,
.pagination li:last-child span {
    border-right: none;
}

.pagination li a:hover,
.pagination li.active span {
    background-color: var(--primary);
    color: white;
}

.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
}

/* Additional utility classes */
.bg-primary-custom {
    background-color: var(--primary) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Committee page specific styles */
.committee-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.committee-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
}

.committee-body {
    padding: 25px;
}

/* Management page specific styles */
.management-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    background-color: white;
    border-top: 4px solid var(--primary);
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.management-header {
    background-color: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.management-body {
    padding: 25px;
}

.badge-new {
    background-color: #dc3545;
    color: white;
    font-size: 0.75em;
    padding: 0.25em 0.5em;
    border-radius: 0.25rem;
}