/* Modern about page styling */
.about_trust{
    padding: 0;
}

/* Faculty Cards Styling */
.faculty-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faculty-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-1);
}

.faculty-photo {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-photo img {
    transform: scale(1.05);
}

.faculty-info {
    padding: 1.5rem;
}

.faculty-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-1);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.faculty-designation {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme-2);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--theme-2), #f6b21b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faculty-qualification {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.faculty-actions {
    padding: 0 1.5rem 1.5rem;
}

.view-resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--theme-1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-resume-btn:hover {
    background: #003580;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

/* Faculty Modal Styling */
.faculty-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, var(--theme-1), #0a1a3c);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.modal-photo {
    text-align: center;
}

.modal-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid var(--theme-1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-weight: 600;
    color: var(--theme-1);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #374151;
    line-height: 1.5;
    font-size: 1rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.modal-resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--theme-1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-resume-btn:hover {
    background: #003580;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}

.modal-close-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faculty-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .modal-photo img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        background-color: #f8f9fa;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-resume-btn,
    .modal-close-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faculty-card {
        margin: 0 0.5rem;
    }
    
    .modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

.about-section {
    padding: 4rem 0;
}

.about-section:nth-child(even) {
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex_container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 0;
}

.flex_container img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flex_container img:hover {
    transform: scale(1.02);
}

.flex_container .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex_container .img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_container .img-2{
    margin: 0 auto;
    text-align: center;
}

.flex_container .img-2 img{
    max-width: 60%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flex_container .content h2{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--theme-1);
    position: relative;
}

.flex_container .content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
    border-radius: 2px;
}

.flex_container .content p{
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.img.small img{
    width: 200px;
    margin-top: 1rem;
    border-radius: 8px;
}

.college_list{
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.college_list li{
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-1);
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.college_list li:last-child {
    border-bottom: none;
}

/* Table Styles for Educational Institutions */
.table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.institutions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95rem;
}

.institutions-table thead {
    background: linear-gradient(135deg, var(--theme-1) 0%, var(--theme-2) 100%);
    color: white;
}

.institutions-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.institutions-table th:first-child {
    width: 80px;
    text-align: center;
}

.institutions-table th:nth-child(2) {
    width: 50%;
}

.institutions-table th:nth-child(3) {
    width: 40%;
}

.institutions-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.institutions-table tbody tr:hover {
    background-color: #f8f9fa;
}

.institutions-table tbody tr:last-child {
    border-bottom: none;
}

.institutions-table td {
    padding: 1rem 0.75rem;
    vertical-align: top;
    color: #4a5568;
    line-height: 1.5;
}

.institutions-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--theme-1);
    background-color: #f8f9fa;
    width: 80px;
}

.institutions-table td:nth-child(2) {
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.institutions-table td:nth-child(3) {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design for Table */
@media screen and (max-width: 768px) {
    .institutions-table {
        font-size: 0.85rem;
    }
    
    .institutions-table th,
    .institutions-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .institutions-table th:first-child,
    .institutions-table td:first-child {
        width: 60px;
    }
    
    .institutions-table th:nth-child(2),
    .institutions-table td:nth-child(2) {
        width: 45%;
    }
    
    .institutions-table th:nth-child(3),
    .institutions-table td:nth-child(3) {
        width: 35%;
    }
}

@media screen and (max-width: 480px) {
    .institutions-table {
        font-size: 0.8rem;
    }
    
    .institutions-table th,
    .institutions-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .institutions-table th:first-child,
    .institutions-table td:first-child {
        width: 50px;
    }
}

.mission_list{
    padding: 0;
    list-style: none;
}

.mission_list li{
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--theme-1);
    position: relative;
    padding-left: 2rem;
}

.mission_list li::before {
    content: '▶';
    position: absolute;
    left: 1rem;
    color: var(--theme-1);
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px){
    .flex_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flex_container .img-2 img{
        max-width: 80%;
    }
}

/* Founder Chairman Specific Styles */
.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.founder-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-border-decoration {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #0a1a3c, #1e3a8a, #0a1a3c);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.8;
}

.founder-title-section {
    text-align: left;
}

.founder-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a1a3c 0%, #f6b21b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0a1a3c, #f6b21b);
    border-radius: 2px;
    margin-top: 1rem;
}

.founder-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.founder-main-content {
    display: flex;
    flex-direction: column;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a1a3c, #f6b21b);
    border-radius: 2px;
}

.content-text {
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    text-align: justify;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #0a1a3c;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #f6b21b;
    margin: 2rem 0;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    color: #f6b21b;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.signature-text {
    text-align: right;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.signature-title {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.founder-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f6b21b;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #f6b21b;
    font-size: 0.8rem;
}

.legacy-text {
    color:black;
    line-height: 1.6;
    font-size: 0.95rem;
}

.founder-gallery {
    margin-top: 4rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1a3c;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0a1a3c, #f6b21b);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 2rem;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #0a1a3c;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .founder-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-wrapper {
        width: 250px;
        height: 320px;
    }
    
    .founder-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .flex_container .content h2 {
        font-size: 2rem;
    }
    
    .flex_container .content p {
        font-size: 1rem;
    }
    
    .college_list {
        padding: 1.5rem;
    }
    
    .founder-container {
        padding: 1rem;
    }
    
    .founder-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .founder-image-wrapper {
        width: 200px;
        height: 260px;
    }
    
    .founder-title {
        font-size: 2.2rem;
    }
    
    .founder-subtitle {
        font-size: 1.2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Principal Desk Specific Styles */
.principal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.principal-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principal-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.principal-image-wrapper {
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principal-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.principal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.principal-title-section {
    text-align: left;
}

.principal-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a1a3c 0%, #f6b21b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.principal-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.principal-qualifications {
    margin-bottom: 1rem;
}

.principal-qualifications p {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.4;
}

.welcome-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 3rem;
    border-left: 5px solid #f6b21b;
}

.welcome-header {
    margin-bottom: 1.5rem;
}

.welcome-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
}

.welcome-greeting {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

.welcome-content {
    line-height: 1.8;
}

.welcome-intro {
    font-size: 1.3rem;
    color: #0a1a3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin: 0;
}

.principal-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.principal-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-paragraph {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.7;
}

.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #f6b21b;
    margin: 2rem 0;
    position: relative;
}

.quote-section::before {
    content: '"';
    font-size: 4rem;
    color: #f6b21b;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #0a1a3c;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-attribution {
    text-align: right;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    font-size: 2rem;
    color: #f6b21b;
    margin-top: 0.25rem;
}

.facility-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
}

.facility-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.principal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sports-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sport-tag {
    background: linear-gradient(135deg, #0a1a3c, #f6b21b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commitment-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.closing-message {
    margin-top: 3rem;
}

.closing-card {
    background: linear-gradient(135deg, #0a1a3c 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.closing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #f6b21b;
}

.closing-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.signature-section {
    margin-top: 2rem;
    text-align: center;
}

.signature-text {
    font-size: 1.3rem;
    color: #f6b21b;
    margin-bottom: 1rem;
}

.signature-block {
    border-top: 2px solid #f6b21b;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.signature-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .principal-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .principal-image-container {
        justify-content: center;
        align-items: center;
    }
    
    .principal-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .principal-image-wrapper {
        width: 350px;
        height: 420px;
    }
    
    .principal-title {
        font-size: 2.2rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .principal-container {
        padding: 1rem;
    }
    
    .principal-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .principal-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .principal-image-wrapper {
        width: 280px;
        height: 350px;
    }
    
    .principal-title {
        font-size: 1.8rem;
    }
    
    .principal-subtitle {
        font-size: 1.2rem;
    }
    
    .welcome-card {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-intro {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .closing-card {
        padding: 2rem;
    }
    
    .closing-title {
        font-size: 1.5rem;
    }
}

/* Chairman Desk Specific Styles */
.chairman-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.chairman-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chairman-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chairman-image-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chairman-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.chairman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.chairman-title-section {
    text-align: left;
}

.chairman-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a1a3c 0%, #f6b21b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chairman-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.chairman-qualifications {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f6b21b;
}

.chairman-qualifications p {
    margin: 0.5rem 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.4;
}

.chairman-qualifications p:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 0.75rem;
}

.chairman-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.chairman-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chairman-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media screen and (max-width: 1024px) {
    .chairman-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .chairman-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chairman-image-wrapper {
        width: 250px;
        height: 320px;
    }
    
    .chairman-title {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .chairman-container {
        padding: 1rem;
    }
    
    .chairman-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .chairman-image-wrapper {
        width: 200px;
        height: 260px;
    }
    
    .chairman-title {
        font-size: 2.2rem;
    }
    
    .chairman-subtitle {
        font-size: 1.2rem;
    }
    
    .chairman-qualifications {
        padding: 1rem;
    }
}

/* Governing Body Specific Styles */
.governing-body-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.current-chairman-section {
    margin-bottom: 4rem;
}

.historical-members-section {
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0a1a3c 0%, #f6b21b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.member-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #f6b21b;
    position: relative;
    overflow: hidden;
}

.member-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a1a3c, #f6b21b);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.member-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a1a3c, #f6b21b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.member-card.featured .member-icon {
    background: linear-gradient(135deg, #f6b21b, #e3a821);
    color: #0a1a3c;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0;
    line-height: 1.3;
}

.member-qualifications {
    margin-bottom: 1rem;
}

.member-qualifications p {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.member-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.member-description p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.legacy-section {
    margin-top: 4rem;
}

.legacy-card {
    background: linear-gradient(135deg, #0a1a3c 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.legacy-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f6b21b;
}

.legacy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e5e7eb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.highlight-item span:first-child {
    color: #f6b21b;
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

@media screen and (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .governing-body-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-card {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .legacy-card {
        padding: 2rem;
    }
    
    .legacy-title {
        font-size: 1.5rem;
    }
    
    .legacy-text {
        font-size: 1rem;
    }
    
    .legacy-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About Page Specific Styles */
.about-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    min-height: 80vh;
}

.about-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f6b21b;
}

.sidebar-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0;
}

.sidebar-nav {
    margin: 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    font-weight: 500;
}

.nav-item:hover {
    background: #f8f9fa;
    color: #0a1a3c;
    transform: translateX(5px);
}

.nav-item.active {
    background: linear-gradient(135deg, #0a1a3c, #f6b21b);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-item span:first-child {
    font-size: 1.2rem;
}

.about-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    min-height: 80vh;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f6b21b;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1a3c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0a1a3c 0%, #f6b21b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.content-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid #f6b21b;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0a1a3c, #f6b21b);
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.content-text:last-child {
    margin-bottom: 0;
}

.quote-section {
    background: linear-gradient(135deg, #0a1a3c 0%, #1e3a8a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
}

.quote-section::before {
    content: '"';
    font-size: 4rem;
    color: #f6b21b;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-attribution {
    text-align: right;
    font-size: 1rem;
    color: #f6b21b;
    font-weight: 600;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #f6b21b, #e3a821);
    color: #0a1a3c;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-item span {
    font-size: 2rem;
    color: #f6b21b;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.location-item p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f6b21b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f6b21b;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1rem;
}

.program-item p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accreditation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accreditation-item span {
    font-size: 2rem;
    color: #f6b21b;
}

.accreditation-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.accreditation-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facility-item span {
    font-size: 2rem;
    color: #f6b21b;
    margin-top: 0.25rem;
}

.facility-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.facility-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-item span:first-child {
    color: #f6b21b;
    font-size: 1.5rem;
}

.achievement-item span:last-child {
    font-weight: 600;
    color: #0a1a3c;
}

@media screen and (max-width: 1024px) {
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .about-sidebar {
        position: static;
        order: 2;
    }
    
    .about-content {
        order: 1;
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-main-container {
        padding: 0.5rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .location-grid,
    .stats-grid,
    .programs-grid,
    .accreditation-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Document Tabs Styles */
.document-tabs {
    margin-top: 2rem;
}

.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: #f8f9fa;
    border-color: #f6b21b;
    color: #0a1a3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #0a1a3c, #f6b21b);
    color: white;
    border-color: #f6b21b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-btn span:first-child {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.document-links {
    margin-top: 1.5rem;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0a1a3c, #1e3a8a);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.document-link:hover {
    background: linear-gradient(135deg, #f6b21b, #e3a821);
    color: #0a1a3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #0a1a3c;
}

.document-link span:first-child {
    font-size: 1.5rem;
    color: #f6b21b;
}

.document-link:hover span:first-child {
    color: #0a1a3c;
}

.document-link span:last-child {
    font-size: 1.2rem;
}

.audit-years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.audit-year-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f6b21b;
    transition: all 0.3s ease;
}

.audit-year-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.audit-year-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f6b21b;
}

/* Responsive Design for Document Tabs */
@media screen and (max-width: 768px) {
    .tab-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tab-btn {
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .document-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .audit-years-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .audit-year-item {
        padding: 1rem;
    }
    
    .audit-year-item h4 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .tab-btn span:first-child {
        font-size: 1rem;
    }
    
    .document-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .document-link span:first-child {
        font-size: 1.2rem;
    }
    
    .document-link span:last-child {
        font-size: 1rem;
    }
}

/* Faculty Table Styles */
.faculty-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faculty-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9rem;
    min-width: 800px;
}

.faculty-table thead {
    background: linear-gradient(135deg, var(--theme-1) 0%, var(--theme-2) 100%);
    color: white;
}

.faculty-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.faculty-table th:first-child {
    width: 50px;
    text-align: center;
}

.faculty-table th:nth-child(2) {
    width: 25%;
}

.faculty-table th:nth-child(3) {
    width: 15%;
}

.faculty-table th:nth-child(4) {
    width: 35%;
}

.faculty-table th:nth-child(5),
.faculty-table th:nth-child(6) {
    width: 12.5%;
    text-align: center;
}

.faculty-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.faculty-table tbody tr:hover {
    background-color: #f8f9fa;
}

.faculty-table tbody tr:last-child {
    border-bottom: none;
}

.faculty-table td {
    padding: 1rem 0.75rem;
    vertical-align: top;
    color: #4a5568;
    line-height: 1.5;
}

.faculty-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--theme-1);
    background-color: #f8f9fa;
    width: 50px;
}

.faculty-table td:nth-child(2) {
    font-weight: 600;
    color: #2d3748;
}

.faculty-table td:nth-child(3) {
    color: #6b7280;
    font-weight: 500;
}

.faculty-table td:nth-child(4) {
    color: #4a5568;
    font-size: 0.85rem;
}

.faculty-table td:nth-child(5),
.faculty-table td:nth-child(6) {
    text-align: center;
}

.faculty-table td span.material-symbols-outlined {
    color: var(--theme-1);
    font-size: 1.5rem;
}

.resume-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--theme-1), var(--theme-2));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.resume-link:hover {
    background: linear-gradient(135deg, var(--theme-2), var(--theme-1));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Syllabus Links */
.syllabus-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Library Features */
.library-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item span {
    font-size: 2rem;
    color: var(--theme-1);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* External Links */
.external-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-1);
}

.external-link span:first-child {
    font-size: 2rem;
    color: var(--theme-1);
}

.external-link div {
    flex: 1;
}

.external-link h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.external-link p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.external-link span:last-child {
    font-size: 1.2rem;
    color: var(--theme-1);
}

/* Programs Info */
.programs-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--theme-1);
}

.programs-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1rem;
}

/* Responsive Design for Faculty Table */
@media screen and (max-width: 1024px) {
    .faculty-table {
        font-size: 0.85rem;
    }
    
    .faculty-table th,
    .faculty-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .faculty-table th:nth-child(4),
    .faculty-table td:nth-child(4) {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .faculty-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .faculty-table th,
    .faculty-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .faculty-table th:first-child,
    .faculty-table td:first-child {
        width: 40px;
    }
    
    .faculty-table th:nth-child(2),
    .faculty-table td:nth-child(2) {
        width: 30%;
    }
    
    .faculty-table th:nth-child(3),
    .faculty-table td:nth-child(3) {
        width: 20%;
    }
    
    .faculty-table th:nth-child(4),
    .faculty-table td:nth-child(4) {
        width: 30%;
        font-size: 0.75rem;
    }
    
    .faculty-table th:nth-child(5),
    .faculty-table th:nth-child(6),
    .faculty-table td:nth-child(5),
    .faculty-table td:nth-child(6) {
        width: 10%;
    }
    
    .resume-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .syllabus-links {
        flex-direction: column;
    }
    
    .library-features {
        grid-template-columns: 1fr;
    }
    
    .external-links {
        gap: 0.75rem;
    }
    
    .external-link {
        padding: 1rem;
    }
    
    .external-link span:first-child {
        font-size: 1.5rem;
    }
    
    .external-link h4 {
        font-size: 1rem;
    }
    
    .external-link p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .faculty-table {
        min-width: 500px;
    }
    
    .faculty-table th,
    .faculty-table td {
        padding: 0.25rem 0.125rem;
    }
    
    .faculty-table th:nth-child(4),
    .faculty-table td:nth-child(4) {
        font-size: 0.7rem;
    }
    
    .resume-link {
        padding: 0.25rem 0.375rem;
        font-size: 0.65rem;
    }
}

/* Admission Page Specific Styles */
.cet-guidelines {
    margin-top: 2rem;
}

.cet-guidelines h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f6b21b;
}

.cet-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.policy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #f6b21b;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.policy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.policy-item span {
    font-size: 2rem;
    color: #f6b21b;
    margin-top: 0.25rem;
}

.policy-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.policy-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.fees-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.fees-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #f6b21b;
}

.fees-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fees-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 0.5rem;
}

.fees-item p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0a1a3c;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.payment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-item span {
    font-size: 2rem;
    color: #0a1a3c;
    margin-top: 0.25rem;
}

.payment-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.payment-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Admission Page */
@media screen and (max-width: 768px) {
    .cet-links {
        flex-direction: column;
    }
    
    .policy-info {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .fees-item {
        padding: 1.5rem;
    }
    
    .policy-item,
    .payment-item {
        padding: 1rem;
    }
    
    .policy-item span,
    .payment-item span {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .fees-item {
        padding: 1rem;
    }
    
    .fees-item h4 {
        font-size: 1.1rem;
    }
    
    .policy-item,
    .payment-item {
        padding: 0.75rem;
    }
    
    .policy-item h4,
    .payment-item h4 {
        font-size: 1rem;
    }
    
    .policy-item p,
    .payment-item p {
        font-size: 0.85rem;
    }
}

/* Student Life Page Specific Styles */
.hostel-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hostel-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9rem;
    min-width: 600px;
}

.hostel-table thead {
    background: linear-gradient(135deg, var(--theme-1) 0%, var(--theme-2) 100%);
    color: white;
}

.hostel-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.hostel-table th:first-child {
    width: 50px;
    text-align: center;
}

.hostel-table th:nth-child(2) {
    width: 40%;
}

.hostel-table th:nth-child(3) {
    width: 20%;
    text-align: center;
}

.hostel-table th:nth-child(4) {
    width: 30%;
}

.hostel-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.hostel-table tbody tr:hover {
    background-color: #f8f9fa;
}

.hostel-table tbody tr:last-child {
    border-bottom: none;
}

.hostel-table td {
    padding: 1rem 0.75rem;
    vertical-align: top;
    color: #4a5568;
    line-height: 1.5;
}

.hostel-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--theme-1);
    background-color: #f8f9fa;
    width: 50px;
}

.hostel-table td:nth-child(2) {
    font-weight: 600;
    color: #2d3748;
}

.hostel-table td:nth-child(3) {
    text-align: center;
    color: #6b7280;
    font-weight: 500;
}

.hostel-table td:nth-child(4) {
    color: #4a5568;
}

.hostel-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #f6b21b;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0a1a3c;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amenity-item span {
    font-size: 2rem;
    color: #0a1a3c;
    margin-top: 0.25rem;
}

.amenity-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.amenity-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.health-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #f6b21b;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item span {
    font-size: 2rem;
    color: #f6b21b;
    margin-top: 0.25rem;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.service-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.insurance-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insurance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0a1a3c;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.insurance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.insurance-item span {
    font-size: 2rem;
    color: #0a1a3c;
    margin-top: 0.25rem;
}

.insurance-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.insurance-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Student Life Page */
@media screen and (max-width: 1024px) {
    .hostel-table {
        font-size: 0.85rem;
    }
    
    .hostel-table th,
    .hostel-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .hostel-table {
        font-size: 0.8rem;
        min-width: 500px;
    }
    
    .hostel-table th,
    .hostel-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .hostel-table th:first-child,
    .hostel-table td:first-child {
        width: 40px;
    }
    
    .hostel-table th:nth-child(2),
    .hostel-table td:nth-child(2) {
        width: 35%;
    }
    
    .hostel-table th:nth-child(3),
    .hostel-table td:nth-child(3) {
        width: 25%;
    }
    
    .hostel-table th:nth-child(4),
    .hostel-table td:nth-child(4) {
        width: 40%;
    }
    
    .amenities-grid,
    .health-services-grid,
    .insurance-info {
        grid-template-columns: 1fr;
    }
    
    .amenity-item,
    .service-item,
    .insurance-item {
        padding: 1rem;
    }
    
    .amenity-item span,
    .service-item span,
    .insurance-item span {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hostel-table {
        min-width: 400px;
    }
    
    .hostel-table th,
    .hostel-table td {
        padding: 0.25rem 0.125rem;
    }
    
    .amenity-item,
    .service-item,
    .insurance-item {
        padding: 0.75rem;
    }
    
    .amenity-item h4,
    .service-item h4,
    .insurance-item h4 {
        font-size: 1rem;
    }
    
    .amenity-item p,
    .service-item p,
    .insurance-item p {
        font-size: 0.85rem;
    }
}

/* Research Center Specific Styles */
.document-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #e5e7eb !important;
    color: #6b7280 !important;
    pointer-events: none;
}

.document-link.disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    background: #e5e7eb !important;
    color: #6b7280 !important;
}

.document-link.disabled span {
    color: #6b7280 !important;
}

.coming-soon-notice {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fef3c7;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.coming-soon-notice p {
    color: #92400e;
    font-weight: 500;
    margin: 0;
}

.research-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.research-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0a1a3c;
    min-height: 120px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.research-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.research-item span {
    font-size: 2rem;
    color: #0a1a3c;
    margin-top: 0.25rem;
}

.research-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a3c;
    margin: 0 0 0.5rem 0;
}

.research-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Research Center */
@media screen and (max-width: 768px) {
    .research-features {
        grid-template-columns: 1fr;
    }
    
    .research-item {
        padding: 1rem;
    }
    
    .research-item span {
        font-size: 1.5rem;
    }
    
    .coming-soon-notice {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .research-item {
        padding: 0.75rem;
    }
    
    .research-item h4 {
        font-size: 1rem;
    }
    
    .research-item p {
        font-size: 0.85rem;
    }
    
    .coming-soon-notice {
        padding: 0.75rem;
    }
    
    .coming-soon-notice p {
        font-size: 0.9rem;
    }
}