:root {
    --primary-color: #1e3799;
    --secondary-color: #0c2461;
    --accent-color: #1e3799;
    --text-color: #1f2937;
    --light-bg: #f8fafc;
}


body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Enhanced Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(37, 99, 235, 0.1);
}


/* Enhanced Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}
/* Contact Section */

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F1F1F2 0%, #E8E9F3 100%);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498DB;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #505050;
    font-size: 1.1rem;
}

.contact-details i {
    min-width: 25px;
    color: #3498DB;
    margin-right: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3498DB;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-wrapper {
    text-align: center;
}

.btn-submit {
    background: #3498DB;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-wrapper {
        flex-direction: column-reverse;
        padding: 0 1rem;
    }
    
    .contact-right {
        margin-bottom: 2rem;
    }
}
/* Footer Enhancement */

/* 

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
} */




.footer {
    /* background-color: #1e3799; */
    background-image: url('../resources/Footer\ Update_final.jpg');
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-column {
    padding: 20px;
    color: white;
}

.footer-column h5 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #f0f0f0;
}

.copyright-section {
    background-color: #0c2461;
    padding: 20px 0;
    margin: 0;
}

.copyright-section p {
    margin: 0;
    font-size: 14px;
    color: #a8b2d1;
}

.copyright-section a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-section a:hover {
    color: white;
}

.row {
    margin: 0;
}

/* Make footer 2 columns on screens smaller than 768px */
@media (max-width: 768px) {
    .footer-column {
        width: 50%;
        float: left;
    }
}

/* Ensure 2 columns on screens smaller than 576px */
@media (max-width: 576px) {
    .footer-column {
        width: 50%;
        float: left;
    }
}





/* Loading Animation */
.loader {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .advisor-card {
        margin-bottom: 1rem;
    }
}#slider {
position: relative;
z-index: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-item img {
height: 600px;
object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
width: 5%;
opacity: 0.7;
}

@media (max-width: 992px) {
.hero-content {
text-align: center;
padding: 3rem 0;
}

.hero-content h1 {
font-size: 2.5rem;
}

.carousel-item img {
height: 400px;
}
}

/* .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '📚';
    font-size: 2rem;
} */

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 25px;
}

.logo img {
    height: 60px; /* Adjust the size as needed */
    width: auto;
    border-radius: 10px; /* Add curves to the sides */
}


.board-container {
padding: 2rem 0;
background-color: #f8f9fa;
min-height: 100vh;
}

.filter-section {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
}

.filter-group {
margin-bottom: 1.5rem;
}

.filter-group label {
font-size: 0.9rem;
color: #666;
}

.member-section {
margin-bottom: 3rem;
}

.section-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
color: #2c3e50;
border-bottom: 3px solid #1419b3;
padding-bottom: 0.5rem;
}

.member-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
cursor: pointer;
margin-bottom: 1.5rem;
}

.member-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.member-photo {
width: 100%;
height: 200px;
object-fit: cover;
}

.member-info {
padding: 1rem;
}

.member-name {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: #2c3e50;
}

.member-title {
font-size: 0.9rem;
color: #666;
margin-bottom: 0.5rem;
}

.member-preview {
font-size: 0.9rem;
color: #777;
line-height: 1.4;
}

.modal-content {
border-radius: 12px;
}

.modal-header {
border-bottom: 2px solid #f0f0f0;
padding: 1.5rem;
}

.modal-body {
padding: 2rem;
}

.member-full-info {
display: flex;
gap: 2rem;
}

.member-full-photo {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 8px;
}

.member-details h3 {
color: #2c3e50;
margin-bottom: 1rem;
}

.member-bio {
color: #666;
line-height: 1.6;
}

@media (max-width: 768px) {
.filter-section {
margin-bottom: 2rem;
}

.member-full-info {
flex-direction: column;
}

.member-full-photo {
width: 100%;
height: 250px;
}
}