/* ===================================
   HMMCW Internal Pages Stylesheet
   Styles for all internal pages with sidebar navigation
   =================================== */

/* ===================================
   About Section / Internal Pages Base
   =================================== */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #faf8f3 0%, #ffffff 50%, #f5f0e6 100%);
    min-height: calc(100vh - 400px);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg width='1440' height='200' viewBox='0 0 1440 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231a1a5e' fill-opacity='0.03' d='M0,100 Q360,120 720,100 T1440,100 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: 100% 200px;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   Left Sidebar Menu
   =================================== */
.left-menu-area {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 243, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(26, 26, 94, 0.12);
    border: 3px solid var(--gold-rich);
    overflow: hidden;
    position: sticky;
    top: 100px;
    /*max-height: calc(100vh - 120px);*/
	height:about;
    transition: all 0.3s ease;
}

.left-menu-area h2 {
    background: var(--gradient-royal);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 20px 25px;
    margin: 0;
    text-align: center;
    position: relative;
    letter-spacing: 0.5px;
}

.left-menu-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.left-menu-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /*max-height: calc(100vh - 240px);*/
    overflow-y: auto;
}

/* Scrollbar Styling for Menu */
.left-menu-area ul::-webkit-scrollbar {
    width: 8px;
}

.left-menu-area ul::-webkit-scrollbar-track {
    background: var(--cream-warm);
    border-radius: 0;
}

.left-menu-area ul::-webkit-scrollbar-thumb {
    background: var(--gold-rich);
    border-radius: 4px;
}

.left-menu-area ul::-webkit-scrollbar-thumb:hover {
    background: var(--primary-deep);
}

.left-menu-area li {
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.3s ease;
}

.left-menu-area li:last-child {
    border-bottom: none;
}

.left-menu-area li a {
    display: block;
    padding: 16px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.6;
}

.left-menu-area li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    z-index: 0;
}

.left-menu-area li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-deep);
}

.left-menu-area li a span {
    position: relative;
    z-index: 1;
}

.left-menu-area li:hover {
    background: rgba(201, 162, 39, 0.05);
}

.left-menu-area li a:hover {
    color: var(--primary-deep);
    padding-left: 35px;
}

.left-menu-area li a:hover::before {
    width: 5px;
}

.left-menu-area li a:hover::after {
    opacity: 1;
    right: 25px;
}

/* Active Menu Item */
.left-menu-area li.active-menu {
    background: var(--gradient-gold);
    border-left: 5px solid var(--primary-deep);
}

.left-menu-area li.active-menu a {
    color: var(--primary-deep);
    font-weight: 700;
    padding-left: 30px;
}

.left-menu-area li.active-menu a::after {
    content: '\f00c';
    opacity: 1;
    color: var(--primary-deep);
}

/* Menu with Icons (Optional Enhancement) */
.left-menu-area li a i {
    margin-right: 12px;
    color: var(--gold-rich);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.left-menu-area li:hover a i,
.left-menu-area li.active-menu a i {
    color: var(--primary-deep);
    transform: scale(1.1);
}

/* ===================================
   Right Content Area
   =================================== */
.right-content-area {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 8px 30px rgba(26, 26, 94, 0.08);
    border: 2px solid var(--cream-warm);
    min-height: 500px;
    transition: all 0.3s ease;
}

.right-content-area:hover {
    box-shadow: 0 12px 40px rgba(26, 26, 94, 0.12);
}

/* Page Title */
.right-content-area h2:first-of-type {
    color: var(--primary-deep);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold-rich);
    position: relative;
    letter-spacing: -0.5px;
}

.right-content-area h2:first-of-type::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--primary-accent);
}

/* Section Headings */
.right-content-area h3 {
    color: var(--primary-royal);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.right-content-area h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.right-content-area h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--gold-light);
}

.right-content-area h5 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Paragraphs */
.right-content-area p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.right-content-area p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.right-content-area p strong,
.right-content-area p b {
    color: var(--primary-deep);
    font-weight: 600;
}

/* Lists */
.right-content-area ul,
.right-content-area ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-secondary);
}

.right-content-area ul li,
.right-content-area ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.right-content-area ul li::marker {
    color: var(--gold-rich);
}

.right-content-area ol li::marker {
    color: var(--primary-deep);
    font-weight: 700;
}

/* Styled Lists */
.right-content-area ul.styled-list {
    list-style: none;
    padding-left: 0;
}

.right-content-area ul.styled-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.right-content-area ul.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-rich);
    font-size: 1rem;
    width: 25px;
    height: 25px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquotes */
.right-content-area blockquote {
    background: linear-gradient(135deg, rgba(26, 26, 94, 0.03) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-left: 5px solid var(--gold-rich);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
}

.right-content-area blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    color: rgba(201, 162, 39, 0.2);
}

.right-content-area blockquote p {
    margin-bottom: 10px;
    padding-left: 50px;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.right-content-area blockquote cite {
    display: block;
    text-align: right;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Tables */
.right-content-area table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 26, 94, 0.08);
}

.right-content-area table thead {
    background: var(--gradient-royal);
}

.right-content-area table thead th {
    color: var(--white);
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--gold-rich);
}

.right-content-area table tbody tr {
    border-bottom: 1px solid var(--cream-warm);
    transition: all 0.3s ease;
}

.right-content-area table tbody tr:hover {
    background: rgba(201, 162, 39, 0.05);
}

.right-content-area table tbody td {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.right-content-area table tbody tr:last-child {
    border-bottom: none;
}

/* Alternating Row Colors */
.right-content-area table.striped tbody tr:nth-child(even) {
    background: rgba(250, 248, 243, 0.5);
}

.right-content-area table.striped tbody tr:nth-child(even):hover {
    background: rgba(201, 162, 39, 0.08);
}

/* Images in Content */
.right-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 30px rgba(26, 26, 94, 0.12);
    transition: all 0.3s ease;
}

.right-content-area img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 26, 94, 0.16);
}

.right-content-area figure {
    margin: 30px 0;
    text-align: center;
}

.right-content-area figure img {
    margin-bottom: 15px;
}

.right-content-area figcaption {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Image Alignments */
.right-content-area .img-left {
    float: left;
    margin: 10px 30px 20px 0;
    max-width: 45%;
}

.right-content-area .img-right {
    float: right;
    margin: 10px 0 20px 30px;
    max-width: 45%;
}

.right-content-area .img-center {
    display: block;
    margin: 25px auto;
    max-width: 80%;
}

/* Links in Content */
.right-content-area a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline;
}

.right-content-area a:hover {
    color: var(--primary-deep);
}

.right-content-area a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-rich);
    transition: width 0.3s ease;
}

.right-content-area a:hover::after {
    width: 100%;
}

.right-content-area a[href^="http"]::after {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
    position: relative;
    bottom: initial;
    left: initial;
    width: auto;
    height: auto;
    background: none;
}

/* Buttons in Content */
.right-content-area .btn-content {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-gold);
    color: var(--primary-deep);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
    margin: 10px 5px;
}

.right-content-area .btn-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
    color: var(--primary-deep);
}

.right-content-area .btn-content::after {
    display: none;
}

.right-content-area .btn-content i {
    margin-right: 8px;
}

/* Horizontal Rule */
.right-content-area hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-rich) 50%, transparent 100%);
    margin: 40px 0;
}

/* Divider with Icon */
.right-content-area .divider-icon {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.right-content-area .divider-icon::before,
.right-content-area .divider-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 2px;
    background: var(--cream-warm);
}

.right-content-area .divider-icon::before {
    left: 0;
}

.right-content-area .divider-icon::after {
    right: 0;
}

.right-content-area .divider-icon i {
    background: var(--gradient-gold);
    color: var(--primary-deep);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* ===================================
   Info Boxes / Callouts
   =================================== */
.info-box {
    background: linear-gradient(135deg, rgba(74, 74, 171, 0.05) 0%, rgba(201, 162, 39, 0.08) 100%);
    border-left: 5px solid var(--primary-accent);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
}

.info-box.success {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-left-color: #10b981;
}

.info-box.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(251, 191, 36, 0.08) 100%);
    border-left-color: #f59e0b;
}

.info-box.danger {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-left-color: #dc2626;
}

.info-box::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 30px;
    top: 25px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.info-box {
    padding-left: 70px;
}

.info-box::before {
    content: '\f05a';
    color: var(--primary-accent);
}

.info-box.success::before {
    content: '\f058';
    color: #10b981;
}

.info-box.warning::before {
    content: '\f071';
    color: #f59e0b;
}

.info-box.danger::before {
    content: '\f06a';
    color: #dc2626;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    border: none;
    font-size: 1.15rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Download Cards
   =================================== */
.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.download-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 243, 0.98) 100%);
    border: 2px solid var(--cream-warm);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 94, 0.06);
}

.download-card:hover {
    border-color: var(--gold-rich);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 26, 94, 0.12);
}

.download-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-deep);
}

.download-card-content {
    flex: 1;
}

.download-card-title {
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.download-card-meta {
    color: var(--text-light);
    font-size: 0.85rem;
}

.download-card-link {
    width: 40px;
    height: 40px;
    background: var(--primary-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-card-link:hover {
    background: var(--primary-accent);
    transform: rotate(360deg);
}

/* ===================================
   Accordion / FAQ Section
   =================================== */
.faq-accordion {
    margin: 30px 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--cream-warm);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-light);
}

.faq-item.active {
    border-color: var(--gold-rich);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.05);
}

.faq-question i {
    color: var(--gold-rich);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Contact Cards
   =================================== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(26, 26, 94, 0.03) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: var(--white);
    border-color: var(--gold-rich);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 26, 94, 0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-deep);
}

.contact-card h4 {
    margin-bottom: 15px;
    color: var(--primary-deep);
    padding: 0;
    border: none;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-accent);
    font-weight: 600;
}

/* ===================================
   Timeline (For History Pages)
   =================================== */
.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-gold);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 36px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--gradient-gold);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold-rich);
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary-deep);
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(26, 26, 94, 0.08);
    border-left: 3px solid var(--gold-rich);
}

.timeline-content h4 {
    margin-top: 0;
    color: var(--primary-royal);
}

/* ===================================
   Statistics Grid
   =================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-royal) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(26, 26, 94, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 26, 94, 0.3);
}

.stat-card:hover::before {
    top: -20%;
    right: -20%;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--gold-light);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Staff / Faculty Cards
   =================================== */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.faculty-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 26, 94, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--cream-warm);
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(26, 26, 94, 0.15);
    border-color: var(--gold-rich);
}

.faculty-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-info {
    padding: 25px;
}

.faculty-name {
    font-size: 1.25rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
    font-weight: 700;
}

.faculty-designation {
    color: var(--gold-rich);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.faculty-department {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.faculty-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.faculty-contact a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faculty-contact a:hover {
    color: var(--primary-accent);
    transform: scale(1.2);
}

/* ===================================
   Breadcrumb Navigation
   =================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-royal) 100%);
    padding: 20px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: '/';
}

/* ===================================
   Search Results Page
   =================================== */
.search-results {
    margin: 30px 0;
}

.search-result-item {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold-rich);
    box-shadow: 0 4px 15px rgba(26, 26, 94, 0.06);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 8px 25px rgba(26, 26, 94, 0.12);
    transform: translateX(5px);
}

.search-result-title {
    font-size: 1.3rem;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.search-result-title a {
    color: var(--primary-accent);
    text-decoration: none;
}

.search-result-title a:hover {
    color: var(--primary-deep);
}

.search-result-url {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.search-result-snippet {
    color: var(--text-secondary);
    line-height: 1.7;
}

.search-result-snippet mark {
    background: var(--gold-soft);
    color: var(--primary-deep);
    padding: 2px 4px;
    border-radius: 3px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .left-menu-area {
        top: 90px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 40px 0;
    }

    .left-menu-area {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        max-height: none;
    }

    .left-menu-area ul {
        max-height: 400px;
    }

    .right-content-area {
        padding: 30px 25px;
    }

    .right-content-area h2:first-of-type {
        font-size: 1.8rem;
    }

    .right-content-area h3 {
        font-size: 1.4rem;
    }

    .faculty-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-marker {
        left: 6px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0;
    }

    .left-menu-area h2 {
        font-size: 1.2rem;
        padding: 16px 20px;
    }

    .left-menu-area li a {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .right-content-area {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .right-content-area h2:first-of-type {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .right-content-area h3 {
        font-size: 1.25rem;
        margin-top: 25px;
    }

    .right-content-area h4 {
        font-size: 1.15rem;
    }

    .right-content-area p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .right-content-area .img-left,
    .right-content-area .img-right {
        float: none;
        max-width: 100%;
        margin: 20px 0;
    }

    .right-content-area table {
        font-size: 0.9rem;
    }

    .right-content-area table thead th,
    .right-content-area table tbody td {
        padding: 12px 15px;
    }

    .download-cards {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

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

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        position: relative;
        left: auto;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .left-menu-area {
        border-radius: 12px;
    }

    .left-menu-area li a {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .right-content-area {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .right-content-area h2:first-of-type {
        font-size: 1.3rem;
    }

    .right-content-area h3 {
        font-size: 1.15rem;
    }

    .info-box {
        padding: 20px 20px 20px 60px;
    }

    .info-box::before {
        left: 20px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .faculty-image {
        height: 240px;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .left-menu-area,
    .breadcrumb-section {
        display: none;
    }

    .right-content-area {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .about-section {
        background: white;
    }

    .right-content-area a::after {
        display: none;
    }
}

/* ===================================
   Accessibility Enhancements
   =================================== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-deep);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus States */
.left-menu-area li a:focus,
.right-content-area a:focus,
.btn-content:focus {
    outline: 3px solid var(--gold-rich);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
