/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/Home/Committees/Committees.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
.committees-container {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.committees-header {
    text-align: center;
    margin-bottom: 3rem;
}

.committees-header h1 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.committees-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.committee-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.committee-card h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.committee-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #1a237e;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    width: -moz-fit-content;
    width: fit-content;
}

.learn-more-btn:hover {
    background-color: #283593;
    transform: translateX(5px);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .committees-container {
        padding: 2rem 1rem;
    }

    .committees-header h1 {
        font-size: 2rem;
    }

    .committees-grid {
        grid-template-columns: 1fr;
    }

    .committee-card {
        padding: 1.5rem;
    }
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.committee-card {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--index) * 0.1s);
} 
/*!********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/academics/resources/committes/page.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************/
.committees-page {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 2rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .committees-page {
        padding: 1rem;
    }
} 
