/* College Directory Styles */

/* Recognition Page Styling */
.recognition-img-wrap {
    position: relative;
    padding-bottom: 20px;
}

.recognition-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
    z-index: 2;
}

.admin-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.admin-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.admin-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.admin-details h4 {
    margin: 0 0 10px 0;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.admin-contact {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.admin-contact:hover { color: var(--secondary); }

/* Achievements Page Styling */
.achievement-section {
    position: relative;
    padding-top: 50px;
}

.achievement-badge {
    background: var(--secondary);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.achievement-main-card {
    background: #fff;
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.02);
    background-image: radial-gradient(rgba(46, 125, 50, 0.02) 2px, transparent 2px);
    background-size: 40px 40px;
}

.award-text-box {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.award-intro {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.highlight-award {
    color: #f39c12;
    font-weight: 800;
    position: relative;
    padding: 0 5px;
}

.highlight-award::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(243, 156, 18, 0.15);
    z-index: -1;
}

.award-honor {
    font-size: 1.3rem;
    color: #666;
    margin-top: 25px;
    font-style: italic;
}

.best-doctors {
    color: #2e7d32;
    font-weight: 800;
    text-decoration: underline wavy #2e7d32;
    text-underline-offset: 5px;
}

.award-img-container {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.dhanwantri-img {
    max-width: 100%;
    max-height: 600px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    border: 8px solid #fff;
}

.dhanwantri-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.25) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 5s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(0.85); }
    to { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* Department Detail Pages */
.dept-title-fancy {
    font-weight: 800;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.dept-title-fancy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.content-box-premium {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.facility-card-small {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.facility-card-small i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.facility-card-small h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.facility-card-small p {
    font-size: 0.85rem;
    margin: 0;
    color: #777;
}

.custom-dept-table {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-dept-table thead {
    background: var(--primary);
    color: #fff;
}

.custom-dept-table th {
    padding: 15px 20px;
    border: none;
}

.custom-dept-table td {
    padding: 15px 20px;
    vertical-align: middle;
}

/* Sidebar Styling */
.dept-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.sidebar-widget h4 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

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

.sidebar-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

.sidebar-contact-list i {
    color: var(--secondary);
}

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

.sidebar-links-list li {
    margin-bottom: 12px;
}

.sidebar-links-list a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sidebar-links-list a:hover {
    padding-left: 10px;
    opacity: 0.8;
}

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

.sidebar-text-list li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    gap: 5px;
    opacity: 0.9;
}

.sidebar-text-list i {
    font-size: 1.2rem;
}

/* Department Gallery Styling */
.dept-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.dept-gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.dept-gallery-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(46, 125, 50, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.dept-gallery-card:hover img {
    transform: scale(1.1);
}

.dept-gallery-card:hover span {
    transform: translateY(0);
}
.departments-section {
    background: #fdfdfd;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin-top: 15px;
}

.dept-card-fancy {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
}

.dept-card-fancy:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.dept-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(46, 125, 50, 0.05);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.dept-card-fancy:hover .dept-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.dept-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.dept-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.dept-link:hover {
    gap: 10px;
    color: var(--primary);
}

.tracking-widest {
    letter-spacing: 3px;
}
