:root {
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --primary: #16a34a;
    --primary-glow: rgba(22, 163, 74, 0.6);
    --accent-orange: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(0, 0, 0, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #16a34a, #065f46);
    --gradient-2: linear-gradient(135deg, #f59e0b, #d97706);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Utility Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
    text-shadow: 0 0 8px var(--primary-glow);
}

/* Navigation & Sidebar Toggler */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2000;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
}

.menu-toggle.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1500;
    padding: 100px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Right Sliding Menu */
.right-sliding-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 3000;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5), -5px 0 20px rgba(22, 163, 74, 0.3);
    border-left: 2px solid var(--cyber-green);
}

.right-sliding-menu.active {
    right: 0;
}

.right-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.right-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.right-menu-content {
    padding: 40px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.menu-list li {
    margin-bottom: 12px;
    opacity: 0;
    animation: slideInRight 0.6s ease forwards;
}

.menu-list li:nth-child(1) { animation-delay: 0.1s; }
.menu-list li:nth-child(2) { animation-delay: 0.15s; }
.menu-list li:nth-child(3) { animation-delay: 0.2s; }
.menu-list li:nth-child(4) { animation-delay: 0.25s; }
.menu-list li:nth-child(5) { animation-delay: 0.3s; }
.menu-list li:nth-child(6) { animation-delay: 0.35s; }
.menu-list li:nth-child(7) { animation-delay: 0.4s; }
.menu-list li:nth-child(8) { animation-delay: 0.45s; }
.menu-list li:nth-child(9) { animation-delay: 0.5s; }
.menu-list li:nth-child(10) { animation-delay: 0.55s; }
.menu-list li:nth-child(11) { animation-delay: 0.6s; }
.menu-list li:nth-child(12) { animation-delay: 0.65s; }
.menu-list li:nth-child(13) { animation-delay: 0.7s; }
.menu-list li:nth-child(14) { animation-delay: 0.75s; }
.menu-list li:nth-child(15) { animation-delay: 0.8s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-list a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
}

.menu-list a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Floating Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--cyber-black);
    border: 2px solid var(--cyber-green);
    color: var(--cyber-green);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--cyber-glow);
}

.menu-toggle.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle:hover {
    background: var(--cyber-green);
    color: var(--cyber-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
}

/* Responsive Design for Right Menu */
@media (max-width: 768px) {
    .right-sliding-menu {
        width: 100%;
        right: -100%;
    }
    
    .menu-list a {
        font-size: 14px;
        padding: 14px 24px;
    }
    
    .menu-list a:hover {
        padding-left: 32px;
    }
}

@media (max-width: 480px) {
    .right-menu-header {
        padding: 20px;
    }
    
    .right-menu-header h3 {
        font-size: 18px;
    }
    
    .right-menu-content {
        padding: 20px 0;
    }
    
    .menu-list a {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .menu-list a:hover {
        padding-left: 28px;
    }
}

/* About the Department Section */
.about-department-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--cyber-black);
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    text-align: justify;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.feature-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    color: var(--cyber-white);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, #15803d, var(--cyber-green));
}

.about-video {
    animation: fadeInRight 1s ease-out;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--cyber-black);
}

.department-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

/* Custom video controls styling */
.department-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.department-video::-webkit-media-controls-play-button,
.department-video::-webkit-media-controls-timeline,
.department-video::-webkit-media-controls-current-time-display,
.department-video::-webkit-media-controls-time-remaining-display,
.department-video::-webkit-media-controls-mute-button,
.department-video::-webkit-media-controls-toggle-closed-captions-button,
.department-video::-webkit-media-controls-fullscreen-button {
    filter: invert(1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-department-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .department-video {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-department-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-features {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .department-video {
        height: 250px;
    }
}

/* HOD's Message Section */
.hod-message-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
}

.hod-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.hod-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hod-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.hod-photo-section {
    animation: fadeInLeft 1s ease-out;
    position: sticky;
    top: 80px;
}

.hod-photo-large {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--cyber-green);
    position: relative;
}

.hod-photo-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), transparent);
    z-index: 1;
}

.hod-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.95);
}

.hod-photo-large:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.hod-info-card {
    background: linear-gradient(135deg, var(--cyber-white), #f8fafc);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid var(--cyber-green);
    position: relative;
    overflow: hidden;
}

.hod-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-green), #00ffff);
}

.hod-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.hod-designation {
    font-size: 15px;
    font-weight: 600;
    color: var(--cyber-green);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hod-department {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.hod-message-section-content {
    animation: fadeInRight 1s ease-out;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.message-content {
    background: var(--cyber-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.hod-message {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 14px;
    text-align: justify;
}

.hod-message:last-of-type {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hod-message-section {
        padding: 60px 0;
    }
    
    .hod-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hod-photo-section {
        position: static;
    }
    
    .hod-photo-large {
        height: 350px;
    }
    
    .message-content {
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hod-message-section {
        padding: 40px 0;
    }
    
    .hod-photo-large {
        height: 300px;
    }
    
    .hod-info-card {
        padding: 25px;
    }
    
    .message-content {
        padding: 25px;
    }
    
    .hod-message {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Vision, Mission & Objectives Section */
.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-content {
    animation: fadeInUp 1s ease-out;
}

.vision-objectives-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.vision-item,
.mission-item,
.objectives-item {
    background: var(--cyber-white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.vision-item:hover,
.mission-item:hover,
.objectives-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.15);
}

.item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--cyber-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyber-green);
}

.vision-content-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 12px;
    text-align: justify;
}

.vision-content-text strong {
    color: var(--cyber-black);
    font-weight: 600;
}

.mission-list,
.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mission-point,
.objective-point {
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
    padding-left: 20px;
    position: relative;
}

.mission-point::before,
.objective-point::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: 700;
    font-size: 16px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .vision-objectives-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vision-item,
    .mission-item,
    .objectives-item {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .item-title {
        font-size: 20px;
    }
    
    .vision-content-text p,
    .mission-point,
    .objective-point {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vision-mission-section {
        padding: 40px 0;
    }
    
    .vision-item,
    .mission-item,
    .objectives-item {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .item-title {
        font-size: 18px;
    }
    
    .vision-content-text p,
    .mission-point,
    .objective-point {
        font-size: 13px;
    }
}

/* Programs and Courses Section */
.programs-courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.programs-content {
    animation: fadeInUp 1s ease-out;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.program-card {
    background: var(--cyber-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyber-green);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    color: var(--cyber-white);
    padding: 25px;
    text-align: center;
}

.program-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.program-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.program-content {
    padding: 30px;
}

.program-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 25px 0;
    text-align: center;
}

.area-specialization h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-specialization h4::before {
    content: '▸';
    color: var(--cyber-green);
    font-weight: 700;
}

.specialization-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.specialization-list li {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.specialization-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: 700;
}

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

.downloads-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.downloads-section h4::before {
    content: '↓';
    color: var(--cyber-green);
    font-weight: 700;
}

.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.downloads-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--cyber-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.downloads-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8fafc;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.header-cell {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    border-right: 1px solid #e2e8f0;
}

.header-cell:last-child {
    border-right: none;
}

.downloads-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.downloads-row:last-child {
    border-bottom: none;
}

.year-cell {
    padding: 12px 10px;
    text-align: center;
    font-weight: 500;
    color: var(--cyber-black);
    font-size: 13px;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
}

.download-cell {
    padding: 8px;
    text-align: center;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-cell:last-child {
    border-right: none;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--cyber-green);
    color: var(--cyber-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--cyber-green);
}

.download-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.download-btn svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-courses-section {
        padding: 60px 0;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-header {
        padding: 20px;
    }
    
    .program-title {
        font-size: 20px;
    }
    
    .program-content {
        padding: 25px;
    }
    
    .downloads-header,
    .downloads-row {
        grid-template-columns: 1fr;
    }
    
    .header-cell,
    .year-cell,
    .download-cell {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .year-cell {
        background: #f8fafc;
        color: var(--cyber-black);
    }
    
    .downloads-row:last-child .download-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .programs-courses-section {
        padding: 40px 0;
    }
    
    .program-header {
        padding: 18px;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .program-content {
        padding: 20px;
    }
    
    .download-btn {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .header-cell {
        padding: 10px;
        font-size: 12px;
    }
    
    .year-cell {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .download-cell {
        padding: 8px;
    }
}

/* Image Scrolling Section */
.image-scrolling-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    position: relative;
}

.scrolling-container {
    width: 100%;
    overflow: hidden;
}

.scrolling-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scrolling-row {
    display: flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
}

.scrolling-row[data-direction="right"] {
    animation: scroll-right 35s linear infinite;
}

.image-card {
    flex: 0 0 auto;
    width: 380px;
    height: 250px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cyber-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.8);
}

.image-card:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    color: var(--cyber-white);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Duplicate images for seamless scrolling */
.scrolling-row[data-direction="left"] {
    animation: scroll-left 30s linear infinite;
}

.scrolling-row[data-direction="right"] {
    animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.scrolling-row:hover {
    animation-play-state: paused;
}

/* Section Header */
.image-scrolling-section::before {
    content: 'Gallery';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-scrolling-section {
        padding: 40px 0;
    }
    
    .image-card {
        width: 300px;
        height: 200px;
    }
    
    .scrolling-row {
        gap: 20px;
    }
    
    .image-overlay {
        padding: 20px 15px 15px;
    }
    
    .image-overlay h4 {
        font-size: 16px;
    }
    
    .image-overlay p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .image-scrolling-section {
        padding: 30px 0;
    }
    
    .image-card {
        width: 280px;
        height: 180px;
    }
    
    .scrolling-row {
        gap: 15px;
    }
    
    .image-overlay h4 {
        font-size: 14px;
    }
    
    .image-overlay p {
        font-size: 11px;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-content {
    text-align: center;
    z-index: 10;
}

.loading-text {
    margin-bottom: 40px;
}

.glitch-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: 'this is a place where hackers are built';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitch-1 0.5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff, 2px 2px #ff00ff;
    animation: glitch-2 0.5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 0, 0.8), 0 0 40px rgba(0, 255, 0, 0.4); }
}

@keyframes glitch-1 {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00ffff);
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* CSS Variables - Cyber Theme */
:root {
    --cyber-white: #ffffff;
    --cyber-black: #121212;
    --cyber-red: #e11d48;
    --cyber-green: #16a34a;
    --cyber-green-light: #f0fdf4;
    --cyber-glow: 0 4px 14px 0 rgba(22, 163, 74, 0.39);
}

/* Hero Section - Cyber Theme */
.hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

/* Background Pattern */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--cyber-black) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyber-black) 1px, transparent 1px);
    background-size: 40px 40px;
}

.gradient-orb {
    display: none;
}

#matrix-bg {
    display: none;
}

#particles-bg {
    display: none;
}

.grid-overlay {
    display: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.hero-content {
    animation: clean-fade-in 1.5s ease-out;
}

@keyframes clean-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* University Logo */
.university-logo {
    margin-bottom: 40px;
    animation: logo-appear 1s ease-out 0.3s both;
}

@keyframes logo-appear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.university-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--cyber-white);
    padding: 20px;
    box-shadow: 
        0 0 0 4px var(--cyber-green),
        0 0 0 8px var(--cyber-black),
        0 10px 30px rgba(0, 0, 0, 0.2),
        var(--cyber-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.university-logo img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-black), var(--cyber-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.university-logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 0 6px var(--cyber-green),
        0 0 0 12px var(--cyber-black),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(22, 163, 74, 0.4);
}

.university-logo:hover img::before {
    opacity: 1;
}

/* Department Title */
.department-title {
    margin-bottom: 40px;
}

.department-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--cyber-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    display: block;
    opacity: 0;
    animation: label-appear 1s ease-out 0.6s forwards;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.department-label {
    animation: label-appear 1s ease-out 0.6s forwards, pulse-glow 3s infinite ease-in-out 1.6s;
}

@keyframes label-appear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--cyber-black);
    opacity: 0;
    animation: title-appear 1s ease-out forwards;
    margin-bottom: 8px;
}

.title-line:nth-child(1) { animation-delay: 0.8s; }
.title-line:nth-child(2) { animation-delay: 1s; }
.title-line:nth-child(3) { animation-delay: 1.2s; }

.title-line.highlight {
    color: var(--cyber-green);
}

@keyframes title-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: description-appear 1s ease-out 1.4s forwards;
}

@keyframes description-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: actions-appear 1s ease-out 1.6s forwards;
    flex-wrap: wrap;
}

@keyframes actions-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cyber-black);
    color: var(--cyber-white);
    box-shadow: 
        0 0 0 2px var(--cyber-green),
        0 4px 14px 0 rgba(22, 163, 74, 0.39);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 0 3px var(--cyber-green),
        0 8px 25px rgba(22, 163, 74, 0.5),
        0 0 30px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
    background: var(--cyber-green);
    color: var(--cyber-white);
    box-shadow: 
        0 0 0 2px var(--cyber-black),
        var(--cyber-glow);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--cyber-black);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: #15803d;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 0 3px var(--cyber-black),
        0 8px 25px rgba(22, 163, 74, 0.5),
        0 0 30px rgba(22, 163, 74, 0.3);
}

/* Button Icons */
.btn-primary svg,
.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 16px;
    }
    
    .university-logo img {
        width: 120px;
        height: 120px;
    }
    
    .university-logo {
        margin-bottom: 32px;
    }
    
    .department-label {
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .title-line {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-actions {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .university-logo {
        margin-bottom: 24px;
    }
    
    .department-title {
        margin-bottom: 32px;
    }
    
    .department-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .title-line {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .hero-description {
        font-size: 16px;
    }
}

/* Faculty Information Section */
.faculty-section {
    padding: 100px 0;
    background: var(--cyber-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faculty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faculty-card {
    perspective: 1000px;
    cursor: pointer;
}

.faculty-card-inner {
    background: var(--cyber-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faculty-card:hover .faculty-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
    border-color: var(--cyber-green);
}

.faculty-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

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

.faculty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 163, 74, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.faculty-card:hover .faculty-overlay {
    opacity: 1;
}

.view-profile {
    color: var(--cyber-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 12px 24px;
    border: 2px solid var(--cyber-white);
    border-radius: 30px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.faculty-card:hover .view-profile {
    transform: translateY(0);
}

.faculty-info {
    padding: 24px;
    text-align: center;
    background: var(--cyber-white);
}

.faculty-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--cyber-black);
    margin: 0 0 5px 0;
}

.faculty-designation {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0;
    opacity: 1; /* override any potential inherited styling */
}

.faculty-qualification-preview {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Faculty Modal */
.faculty-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.faculty-modal.active {
    display: flex;
}

.faculty-modal .modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--cyber-white);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    color: var(--cyber-black);
    cursor: pointer;
    z-index: 50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--cyber-red);
    background: var(--cyber-white);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.modal-left {
    flex: 0 0 360px;
    background: #f8fafc;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #e2e8f0;
}

.modal-photo {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--cyber-white);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.resume-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
}

.linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077b5;
    background: #fff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.15);
    transition: all 0.3s ease;
}

.linkedin-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.25);
    background: #0077b5;
    color: white;
}

.modal-right {
    flex: 1;
    padding: 60px 50px;
    min-width: 350px;
}

.modal-faculty-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--cyber-black);
    margin-bottom: 8px;
    line-height: 1.1;
}

.modal-designation {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyber-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cyber-green);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.info-group p {
    font-size: 16px;
    color: var(--cyber-black);
    font-weight: 600;
    line-height: 1.5;
}

.info-group:nth-child(3),
.info-group:nth-child(4) {
    grid-column: span 2;
}

/* Responsive Faculty Modal */
@media (max-width: 850px) {
    .modal-left {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .modal-photo {
        height: 400px;
        width: 300px;
    }
    
    .modal-right {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .modal-photo {
        width: 100%;
        height: 350px;
    }
    
    .modal-faculty-name {
        font-size: 28px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-group:nth-child(n) {
        grid-column: span 1;
    }
}


/* Board of Studies Section */
.bos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.bos-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.bos-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--cyber-green);
    margin-bottom: 30px;
    text-align: center;
}

/* BoS Members Left Side */
.bos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bos-member-card {
    background: var(--cyber-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.bos-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.2);
}

.bos-card-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--cyber-green);
    border-radius: 50%;
    opacity: 0.5;
}

.bos-card-dot.top-left { top: 15px; left: 15px; }
.bos-card-dot.top-right { top: 15px; right: 15px; }

.bos-member-name {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.bos-member-designation {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 20px;
}

.bos-card-line {
    width: 40px;
    height: 3px;
    background: var(--cyber-green);
    margin: 0 auto;
    border-radius: 2px;
}

/* BoS Documents Right Side */
.bos-docs-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.bos-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.bos-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--cyber-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bos-tab-btn:hover {
    border-color: var(--cyber-green);
    color: var(--cyber-green);
    transform: translateY(-2px);
}

.bos-tab-btn.active {
    background: var(--cyber-white);
    border: 1px solid var(--cyber-green);
    color: var(--cyber-green);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.1);
}

.bos-viewer-container {
    background: var(--cyber-white);
    border-radius: 20px;
    overflow: hidden;
    height: 650px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.viewer-header {
    padding: 20px 25px;
    background: var(--cyber-white);
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewer-header span {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.viewer-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.viewer-body {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.placeholder-icon {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.pdf-placeholder p {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.pdf-placeholder span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 40px;
}

.viewer-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.viewer-footer button {
    padding: 8px 16px;
    background: #f1f5f9;
    border: none;
    border-radius: 6px;
    color: #94a3b8;
    font-weight: 600;
    cursor: not-allowed;
}

.viewer-footer span {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* Responsive BoS Layout */
@media (max-width: 1200px) {
    .bos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bos-layout {
        grid-template-columns: 1fr;
    }
    
    .bos-docs-side {
        position: static;
    }
    
    .bos-viewer-container {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .bos-grid {
        grid-template-columns: 1fr;
    }
    
    .bos-container {
        padding: 0 20px;
    }
    
    .bos-tabs {
        flex-direction: column;
    }
}

/* Research & Publications Section */
.research-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.research-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.research-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Coordinator Card */
.coordinator-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 30px;
    background: var(--cyber-white);
    border: 1px solid rgba(22, 163, 74, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 900px;
    margin-bottom: 80px;
    position: relative;
    transition: transform 0.3s ease;
}

.coordinator-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-green);
}

.coordinator-photo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--cyber-green);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

.coordinator-photo img {
    width: 100%;
    height: 100%;
    object-fit: crop;
}

.coordinator-details {
    flex: 1;
}

.coordinator-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--cyber-black);
    margin-bottom: 8px;
}

.coordinator-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyber-green);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 500;
}

.contact-item svg {
    color: var(--cyber-green);
}

/* Publications Section */
.publications-header {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: center;
}

.publications-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyber-black);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.publications-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.publication-list {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.publication-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    background: var(--cyber-white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.publication-card:hover {
    transform: translateX(10px);
    border-color: rgba(22, 163, 74, 0.2);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.08);
}

.pub-info {
    flex: 1;
    padding-right: 40px;
}

.pub-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pub-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--cyber-green);
    margin-bottom: 20px;
}

.pub-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.meta-item svg {
    color: var(--cyber-green);
    opacity: 0.8;
}

.pub-action {
    flex-shrink: 0;
}

.btn-pub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--cyber-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}

.btn-pub-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.3);
    background: #15803d;
}

/* Responsive Research */
@media (max-width: 900px) {
    .coordinator-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .coordinator-photo {
        margin-bottom: 20px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .publication-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .pub-info {
        padding-right: 0;
    }
    
    .pub-meta {
        justify-content: center;
    }
}

/* Student Projects & Models Section */
.projects-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.project-card {
    background: var(--cyber-white);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(22, 163, 74, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-green);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.1);
}

.project-icon-box {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.project-icon {
    color: var(--cyber-green);
}

.project-tag {
    background: #fef2f2;
    color: #ef4444;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--cyber-black);
    margin-bottom: 12px;
}

.project-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-tech-stack {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-tech-stack span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.btn-project-details {
    width: 100%;
    padding: 14px;
    background: #c2410c; /* Matches the image's orange button */
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-project-details:hover {
    background: #9a3412;
    transform: scale(1.02);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
}

.project-modal .modal-content {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 30px;
    position: relative;
    padding: 50px;
}

.project-modal .modal-header {
    margin-bottom: 40px;
}

.project-modal .modal-title {
    font-size: 24px;
    color: #7c2d12;
    font-weight: 800;
}

.modal-top {
    margin-bottom: 30px;
}

.modal-top .p-tag {
    background: #c2410c;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.modal-top .p-title {
    font-size: 40px;
    font-weight: 800;
    color: #7c2d12;
    margin-bottom: 15px;
}

.modal-top .p-desc {
    font-size: 20px;
    color: #64748b;
    font-weight: 500;
}

.modal-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.p-image-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.p-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.p-team-section h4 {
    font-size: 18px;
    color: #7c2d12;
    margin-bottom: 15px;
    font-weight: 800;
}

.p-team-section ul {
    list-style: none;
    padding: 0;
}

.p-team-section li {
    padding: 5px 0;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-team-section li::before {
    content: '';
    color: #7c2d12;
    font-size: 20px;
}

.modal-right h4 {
    font-size: 18px;
    color: #7c2d12;
    margin-bottom: 15px;
    font-weight: 800;
}

.p-tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.p-tech-tags span {
    background: #fff7ed;
    color: #c2410c;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.p-features-section {
    background: #fff7ed;
    padding: 30px;
    border-radius: 24px;
}

.p-features-list {
    list-style: none;
    padding: 0;
}

.p-features-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #475569;
    font-weight: 500;
    line-height: 1.5;
}

.p-features-list li::before {
    content: '?';
    color: #c2410c;
    font-weight: 800;
}

/* Responsive Projects */
@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .modal-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-modal .modal-content {
        padding: 30px;
    }
    .modal-top .p-title {
        font-size: 28px;
    }
}

/* IQAC Section */
.iqac-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.iqac-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.iqac-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.iqac-gallery {
    margin-top: 40px;
}

.gallery-label {
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

.iqac-right {
    display: flex;
    flex-direction: column;
}

.iqac-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 20px;
}

.document-viewer-container {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 600px;
}

.doc-scroll-viewer {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doc-preview-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.doc-text-content {
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
}

.doc-text-content h4 {
    color: var(--cyber-black);
    margin-bottom: 5px;
    font-weight: 800;
}

.doc-meta-info {
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* Responsive IQAC */
@media (max-width: 1100px) {
    .iqac-layout {
        grid-template-columns: 1fr;
    }
    .document-viewer-container {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .iqac-container {
        padding: 0 20px;
    }
}

/* Student Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    text-align: center;
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-subtitle {
    color: #c2410c;
    font-weight: 500;
    margin-top: -10px;
    margin-bottom: 50px;
    font-size: 16px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.achievement-card {
    padding: 40px 25px;
    text-align: left;
    border-radius: 24px;
    border: 2px solid #c2410c;
    background: #fffcf9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 65, 12, 0.1);
    background: #fff7ed;
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.achievement-title {
    font-size: 18px;
    font-weight: 800;
    color: #431407;
    margin-bottom: 15px;
    line-height: 1.4;
}

.achievement-desc {
    font-size: 14px;
    color: #78716c;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.achievement-tag {
    background: #ffedd5;
    color: #9a3412;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

/* Achievement Modal */
.achievement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.achievement-modal.active {
    display: flex;
}

.achievement-modal .modal-content {
    width: 100%;
    max-width: 1100px;
    background: white;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.achievement-modal-header {
    background: #c2410c;
    color: white;
    padding: 30px 50px;
    text-align: left;
    position: relative;
}

.achievement-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.achievement-modal-header p {
    font-size: 16px;
    opacity: 0.9;
}

.achievement-modal .modal-close {
    top: 30px;
    right: 30px;
    color: white;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.achievement-modal .modal-body {
    padding: 50px;
}

.achievement-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
}

.a-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e7e5e4;
}

.a-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.a-details-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.a-icon-box {
    width: 60px;
    height: 60px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid #ffedd5;
}

.a-header-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #431407;
}

.a-header-text p {
    font-size: 15px;
    color: #c2410c;
    font-weight: 600;
}

.a-description {
    font-size: 16px;
    color: #57534e;
    line-height: 1.8;
    margin-bottom: 40px;
}

.a-team-section h4 {
    font-size: 18px;
    color: #431407;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.a-team-section h4 svg {
    color: #c2410c;
}

.a-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.a-team-grid div {
    background: #fffcf9;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #c2410c;
    font-weight: 700;
    color: #431407;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(194,65,12,0.05);
}

.modal-footer {
    padding: 30px 50px;
    text-align: right;
    border-top: 1px solid #f5f5f4;
}

.btn-close-modal {
    padding: 12px 35px;
    background: #c2410c;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: #9a3412;
    transform: scale(1.05);
}

/* Responsive Achievements */
@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .achievement-layout {
        grid-template-columns: 1fr;
    }
    .achievement-modal-header {
        padding: 30px;
    }
    .achievement-modal .modal-body {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .a-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Placement Excellence Section */
.placements-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.placements-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.placement-coordinators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.placement-actions {
    margin: 60px 0;
}

.btn-aptitude {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #c2410c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(194, 65, 12, 0.2);
}

.btn-aptitude:hover {
    background: #9a3412;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(194, 65, 12, 0.3);
}

.placement-subtitle {
    font-size: 28px;
    font-weight: 800;
    color: #431407;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.placement-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #c2410c;
    border-radius: 2px;
}

.placement-support {
    margin-top: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.support-card {
    padding: 40px 25px;
    text-align: left;
    border-radius: 20px;
    background: #fffcf9;
    border: 1px solid rgba(194, 65, 12, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: #c2410c;
    box-shadow: 0 15px 35px rgba(194, 65, 12, 0.08);
}

.support-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.support-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #431407;
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: #57534e;
    line-height: 1.6;
}

.placement-partners {
    margin-top: 100px;
}

.partners-logos-container {
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 30px;
}

.partner-logo {
    height: 35px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Placements */
@media (max-width: 1200px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .partners-logos-container {
        padding: 40px 20px;
        gap: 30px;
    }
    .partner-logo {
        height: 25px;
    }
}


/* Enhanced IQAC Document Viewer */
.document-viewer-container {
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.doc-title-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 4px 0;
}

.doc-title-section p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.doc-actions {
    display: flex;
    gap: 10px;
}

.doc-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--cyber-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.doc-action-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.doc-content-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.doc-preview-section {
    padding: 20px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
}

.doc-preview-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.doc-info-section {
    padding: 20px;
    background: #f8fafc;
}

.doc-info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.info-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 13px;
    color: var(--cyber-black);
    font-weight: 600;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.completed {
    background: #10b981;
    color: white;
}

.doc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.doc-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyber-black);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-timestamp {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}



/* Responsive IQAC Document */
@media (max-width: 1100px) {
    .doc-content-area {
        grid-template-columns: 1fr;
    }
    
    .doc-preview-section {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .doc-preview-img {
        height: 200px;
    }
    
    .doc-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .doc-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .doc-header {
        padding: 16px 20px;
    }
    
    .doc-actions {
        width: 100%;
        justify-content: center;
    }
    
    .doc-action-btn {
        flex: 1;
        justify-content: center;
    }
    
    .doc-preview-section,
    .doc-info-section {
        padding: 16px;
    }
    
    .doc-info-grid {
        gap: 12px;
    }
    
    .info-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .doc-footer {
        padding: 12px 20px;
    }
    
    .doc-stats {
        gap: 20px;
    }
}



/* Simplified IQAC PDF Viewer */
.document-viewer-container {
    flex: 1;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.pdf-viewer {
    flex: 1;
    min-height: 500px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}

.doc-actions {
    padding: 16px;
    background: white;
    display: flex;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cyber-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.download-buttons .download-btn {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

/* Responsive PDF Viewer */
@media (max-width: 1100px) {
    .pdf-viewer {
        min-height: 400px;
    }
    
    .pdf-frame {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .pdf-viewer {
        min-height: 300px;
    }
    
    .pdf-frame {
        min-height: 300px;
    }
    
    .doc-actions {
        padding: 12px;
    }
    
    .download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .download-buttons {
        gap: 10px;
    }
}

/* IQAC Section */
.iqac-section {
    padding: 100px 0;
    background: var(--cyber-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.iqac-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.iqac-info-section {
    margin-top: 60px;
}

.info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--cyber-white);
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.15);
    border-color: var(--cyber-green);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--cyber-green);
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cyber-black);
    margin-bottom: 15px;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* Student Projects Section */
.student-projects-section {
    padding: 100px 0;
    background: var(--cyber-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.student-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-showcase {
    margin-top: 60px;
}

.showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--cyber-white);
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.15);
    border-color: var(--cyber-green);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--cyber-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(22, 163, 74, 0.1);
    color: var(--cyber-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Responsive Design for IQAC and Projects Sections */
@media (max-width: 768px) {
    .iqac-section,
    .student-projects-section {
        padding: 60px 0;
    }
    
    .iqac-container,
    .student-projects-container {
        padding: 0 16px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card,
    .project-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
}

/* Research and Publications Section */
.research-section {
    padding: 100px 0;
    background: var(--cyber-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.research-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design for Research Section */
@media (max-width: 768px) {
    .research-section {
        padding: 60px 0;
    }
    
    .research-container {
        padding: 0 16px;
    }
}

/* Board of Studies Section */
.bos-section {
    padding: 100px 0;
    background: var(--cyber-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bos-members-section {
    background: var(--cyber-white);
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bos-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--cyber-black);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.bos-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.bos-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bos-member-card {
    background: var(--cyber-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bos-member-card:hover {
    border-color: var(--cyber-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.bos-member-info {
    text-align: center;
}

.bos-member-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyber-black);
    margin-bottom: 8px;
    line-height: 1.4;
}

.bos-member-designation {
    font-size: 14px;
    font-weight: 500;
    color: var(--cyber-green);
    margin-bottom: 6px;
}

.bos-member-university {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.bos-document-section {
    background: var(--cyber-white);
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.bos-pdf-viewer {
    background: var(--cyber-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive Design for BoS Section */
@media (max-width: 1200px) {
    .bos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bos-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bos-section {
        padding: 60px 0;
    }
    
    .bos-container {
        padding: 0 16px;
    }
    
    .bos-members-section,
    .bos-document-section {
        padding: 24px;
    }
    
    .bos-members-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bos-member-name {
        font-size: 14px;
    }
    
    .bos-member-designation {
        font-size: 13px;
    }
    
    .bos-member-university {
        font-size: 11px;
    }
}



/* Student Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.achievement-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.achievement-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 15px 0;
}

.achievement-description {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px 0;
}

.achievement-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.achievement-student {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-green);
}

.achievement-date {
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive Achievements */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .achievement-card {
        padding: 25px;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .achievement-title {
        font-size: 18px;
    }
    
    .achievement-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 40px 0;
    }
    
    .achievement-card {
        padding: 20px;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-title {
        font-size: 16px;
    }
    
    .achievement-description {
        font-size: 13px;
    }
    
    .achievement-details {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}



/* Improved Student Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 60px;
    font-weight: 500;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--cyber-green);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievement-card.featured {
    border-left: 6px solid var(--cyber-green);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.2);
}

.achievement-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-green), #00ffff);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.achievement-badge {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.achievement-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 15px 0;
}

.achievement-description {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px 0;
}

.achievement-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.achievement-student {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-green);
}

.achievement-date {
    font-size: 13px;
    color: #94a3b8;
}

.achievement-highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Responsive Improved Achievements */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievement-card {
        padding: 25px;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .achievement-title {
        font-size: 18px;
    }
    
    .achievement-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .achievements-section {
        padding: 40px 0;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .achievement-card {
        padding: 20px;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-title {
        font-size: 16px;
    }
    
    .achievement-description {
        font-size: 13px;
    }
    
    .achievement-details {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .achievement-highlight {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Placement Excellence Section */
.placements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.placements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.placements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.placement-stat-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.placement-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.placement-stat-card .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyber-green);
    margin-bottom: 8px;
    display: block;
}

.placement-stat-card .stat-label {
    font-size: 16px;
    color: var(--cyber-black);
    font-weight: 600;
    margin-bottom: 4px;
}

.placement-stat-card .stat-detail {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
}

.companies-section {
    margin: 80px 0;
}

.companies-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.companies-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.company-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
    border-color: var(--cyber-green);
}

.company-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-green);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
}

.company-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.company-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.package {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-section {
    margin: 80px 0 0 0;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

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

.testimonial-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 60px;
    color: rgba(22, 163, 74, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 14px;
    color: var(--cyber-green);
    margin: 0 0 2px 0;
    font-weight: 600;
}

.author-info span {
    font-size: 12px;
    color: #94a3b8;
}
/* Admission Section */
.admissions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.admissions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.admissions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 15px 0;
}

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

.info-card li {
    font-size: 15px;
    color: #475569;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

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

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: 700;
}

.admission-process h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 30px 0;
    position: relative;
}

.admission-process h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--cyber-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.fee-structure {
    margin: 80px 0;
}

.fee-structure h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.fee-structure h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.fee-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cyber-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.fee-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--cyber-green);
    color: white;
    font-weight: 600;
}

.fee-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-row.total {
    background: #f8fafc;
    font-weight: 700;
    color: var(--cyber-green);
}

.fee-col {
    padding: 16px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.fee-col:last-child {
    border-right: none;
}

.fee-header .fee-col {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.important-dates {
    margin: 80px 0;
}

.important-dates h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.important-dates h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.date-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.date-day {
    font-size: 32px;
    font-weight: 800;
    color: var(--cyber-black);
    margin-bottom: 8px;
}

.date-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.cta-section {
    margin: 80px 0 0 0;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: var(--cyber-green);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--cyber-green);
    transform: translateY(-2px);
}

/* Responsive Admission */
@media (max-width: 768px) {
    .admissions-section {
        padding: 60px 0;
    }
    
    .admission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .step {
        gap: 15px;
    }
    
    .fee-table {
        max-width: 100%;
    }
    
    .fee-header,
    .fee-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .fee-col {
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .fee-col:last-child {
        border-bottom: none;
    }
    
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .date-card {
        padding: 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .admissions-section {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .date-card {
        padding: 15px;
    }
    
    .date-day {
        font-size: 24px;
    }
    
    .cta-content h3 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}
/* Simplified Student Achievements */
.achievement-card {
    display: flex;
    flex-direction: column;
    background: var(--cyber-white);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.achievement-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.achievement-content {
    padding: 25px;
    text-align: center;
}

.achievement-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 12px 0;
}

.achievement-description {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px 0;
}

.achievement-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.achievement-team {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyber-green);
}

.achievement-prize {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Simplified Placement Excellence */
.placements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.placement-card {
    display: flex;
    flex-direction: column;
    background: var(--cyber-white);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
    overflow: hidden;
}

.placement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.placement-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.placement-content {
    padding: 25px;
    text-align: center;
}

.placement-company {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.placement-role {
    font-size: 16px;
    color: var(--cyber-green);
    font-weight: 600;
    margin: 0 0 15px 0;
}

.placement-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.placement-student {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.placement-package {
    font-size: 14px;
    color: var(--cyber-green);
    font-weight: 600;
}

/* Responsive for new layouts */
@media (max-width: 768px) {
    .achievements-grid,
    .placements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievement-photo,
    .placement-photo {
        height: 180px;
    }
    
    .achievement-content,
    .placement-content {
        padding: 20px;
    }
    
    .achievement-title,
    .placement-company {
        font-size: 18px;
    }
    
    .achievement-description {
        font-size: 14px;
    }
    
    .placement-role {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .achievement-photo,
    .placement-photo {
        height: 150px;
    }
    
    .achievement-content,
    .placement-content {
        padding: 15px;
    }
    
    .achievement-title,
    .placement-company {
        font-size: 16px;
    }
    
    .achievement-description {
        font-size: 13px;
    }
    
    .placement-role {
        font-size: 14px;
    }
}
/* Simplified Admission Section */
.coordinator-section {
    margin: 60px 0;
}

.coordinator-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--cyber-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.coordinator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.coordinator-photo {
    flex-shrink: 0;
}

.coordinator-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cyber-green);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.coordinator-details {
    flex: 1;
}

.coordinator-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.coordinator-role {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-green);
    margin: 0 0 20px 0;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--cyber-green);
}

/* Roadmap Process */
.process-roadmap {
    margin: 80px 0;
}

.roadmap-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.roadmap-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cyber-green);
    transform: translateX(-50%);
}

.roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.roadmap-step {
    display: flex;
    align-items: center;
    gap: 30px;
}

.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: var(--cyber-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.step-content {
    background: var(--cyber-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    border-left: 4px solid var(--cyber-green);
}

.roadmap-step:nth-child(even) .step-content {
    border-left: none;
    border-right: 4px solid var(--cyber-green);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Eligibility Section */
.eligibility-section {
    margin: 80px 0;
}

.eligibility-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.eligibility-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.eligibility-card {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.eligibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.eligibility-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 15px 0;
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-card li {
    font-size: 15px;
    color: #475569;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

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

.eligibility-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: 700;
}

/* Responsive Admission */
@media (max-width: 768px) {
    .coordinator-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .coordinator-img {
        width: 120px;
        height: 120px;
    }
    
    .roadmap-steps {
        gap: 30px;
    }
    
    .roadmap-step,
    .roadmap-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-content {
        border-left: 4px solid var(--cyber-green) !important;
        border-right: none !important;
    }
    
    .eligibility-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eligibility-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .coordinator-card {
        padding: 20px;
    }
    
    .coordinator-img {
        width: 100px;
        height: 100px;
    }
    
    .coordinator-name {
        font-size: 20px;
    }
    
    .coordinator-role {
        font-size: 16px;
    }
    
    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .eligibility-card {
        padding: 15px;
    }
    
    .eligibility-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .eligibility-card h4 {
        font-size: 18px;
    }
}
/* Placement Coordinator Section */
.placement-coordinator-section {
    margin: 60px 0;
}

/* Recruitment Partners Section */
.recruitment-partners-section {
    margin: 80px 0;
}

.partners-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyber-black);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-green);
    border-radius: 2px;
}

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

.partner-card {
    background: var(--cyber-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyber-green);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.partner-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.partner-info {
    padding: 20px;
    text-align: center;
}

.partner-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.partner-info p {
    font-size: 16px;
    color: var(--cyber-green);
    font-weight: 600;
    margin: 0;
}

/* Responsive Recruitment Partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-photo {
        height: 180px;
    }
    
    .partner-info {
        padding: 15px;
    }
    
    .partner-info h4 {
        font-size: 18px;
    }
    
    .partner-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-photo {
        height: 150px;
    }
    
    .partner-info {
        padding: 12px;
    }
    
    .partner-info h4 {
        font-size: 16px;
    }
    
    .partner-info p {
        font-size: 14px;
    }
}
/* Improved Roadmap Process */
.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.step-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

.step-marker svg {
    width: 24px;
    height: 24px;
}

.step-content {
    background: var(--cyber-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-green), #00ffff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-content:hover::before {
    opacity: 1;
}

.roadmap-step:nth-child(even) .step-content {
    border-left: none;
    border-right: 4px solid var(--cyber-green);
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 15px;
    color: #475569;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.step-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.step-duration,
.step-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.step-duration {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.step-status {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.step-duration::before {
    content: '?';
    font-size: 14px;
}

.step-status::before {
    content: '?';
    font-size: 14px;
}

/* Enhanced Roadmap Line */
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyber-green), #15803d);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.2);
}

/* Progress Animation */
.roadmap-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: linear-gradient(180deg, #00ffff, var(--cyber-green));
    transform: translateX(-50%);
    border-radius: 2px;
    animation: progressFlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes progressFlow {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 50%;
        opacity: 1;
    }
    100% {
        height: 0;
        opacity: 0;
        transform: translateY(100%);
    }
}

/* Responsive Improved Roadmap */
@media (max-width: 768px) {
    .step-marker {
        width: 50px;
        height: 50px;
    }
    
    .step-marker svg {
        width: 20px;
        height: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h4 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .step-details {
        gap: 10px;
    }
    
    .step-duration,
    .step-status {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .step-marker {
        width: 45px;
        height: 45px;
    }
    
    .step-marker svg {
        width: 18px;
        height: 18px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .step-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-duration,
    .step-status {
        justify-content: center;
        width: 100%;
    }
}
/* Simplified Recruitment Partners - Single Photo */
.partners-photo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partners-photo {
    background: var(--cyber-white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partners-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.partners-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partners-photo:hover .partners-img {
    transform: scale(1.02);
}

.partners-caption {
    font-size: 16px;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

/* Responsive Single Photo Layout */
@media (max-width: 768px) {
    .partners-photo {
        padding: 15px;
    }
    
    .partners-img {
        max-height: 300px;
    }
    
    .partners-caption {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .partners-photo {
        padding: 12px;
    }
    
    .partners-img {
        max-height: 250px;
    }
    
    .partners-caption {
        font-size: 14px;
    }
}
/* Simplified Horizontal Roadmap */
.roadmap-steps-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.step-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    background: var(--cyber-white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.step-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--cyber-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.step-content-horizontal h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cyber-black);
    margin: 0 0 10px 0;
}

.step-content-horizontal p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Horizontal Roadmap */
@media (max-width: 768px) {
    .roadmap-steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-horizontal {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-content-horizontal h4 {
        font-size: 16px;
    }
    
    .step-content-horizontal p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .roadmap-steps-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-horizontal {
        padding: 20px 15px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content-horizontal h4 {
        font-size: 15px;
    }
    
    .step-content-horizontal p {
        font-size: 12px;
    }
}


/* Fix Section Headings Alignment */
.achievements-container .section-title {
    text-align: left !important;
    margin-bottom: 10px;
}

.achievements-container .section-title::after {
    left: 0 !important;
    transform: none !important;
}

.placements-container .section-title {
    text-align: left !important;
    margin-bottom: 10px;
}

.placements-container .section-title::after {
    left: 0 !important;
    transform: none !important;
}

/* Blogs Section */
.blogs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: var(--cyber-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyber-green);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-category {
    background: linear-gradient(135deg, var(--cyber-green), #15803d);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 12px 0;
}

.blog-excerpt {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-read-more {
    color: var(--cyber-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #15803d;
    transform: translateX(3px);
}

/* Development Team Section */
.dev-team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.dev-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
}

.dev-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.developer-card {
    background: var(--cyber-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cyber-green);
}

.developer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.15);
}

.developer-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.developer-info {
    padding: 25px;
    text-align: center;
}

.developer-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--cyber-black);
    margin: 0 0 8px 0;
}

.developer-department {
    font-size: 16px;
    color: var(--cyber-green);
    font-weight: 600;
    margin: 0 0 20px 0;
}

.developer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.social-link:hover {
    background: var(--cyber-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cyber-green);
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.footer-logo p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyber-green);
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--cyber-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-footer:hover {
    background: var(--cyber-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* Responsive for New Sections */
@media (max-width: 768px) {
    .blogs-section,
    .dev-team-section {
        padding: 60px 0;
    }
    
    .blogs-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image,
    .developer-photo {
        height: 180px;
    }
    
    .blog-content,
    .developer-info {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blogs-section,
    .dev-team-section {
        padding: 40px 0;
    }
    
    .blog-image,
    .developer-photo {
        height: 150px;
    }
    
    .blog-content,
    .developer-info {
        padding: 15px;
    }
    
    .blog-title,
    .developer-name {
        font-size: 18px;
    }
    
    .developer-social {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo h3 {
        font-size: 20px;
    }
}


/* Title Logo in Hero Section */
.title-logo {
    margin-bottom: 20px;
    text-align: center;
}

.title-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.title-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Title Logo */
@media (max-width: 768px) {
    .title-logo img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .title-logo img {
        width: 50px;
        height: 50px;
    }
}



/* Enhanced Minimalistic Background Variations */

/* Hero Section - Keep Matrix Effect */
.hero-section {
    background: #000;
    position: relative;
}

/* About Department - Light Gradient */
.about-department-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* HOD Message - Subtle Pattern */
.hod-message-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

.hod-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(22, 163, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(22, 163, 74, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Vision & Mission - Clean White */
.vision-mission-section {
    background: #ffffff;
}

/* Programs & Courses - Very Light Gray */
.programs-courses-section {
    background: #fafbfc;
}

/* Student Achievements - Soft Gradient */
.achievements-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

/* Placement Excellence - Professional Gray */
.placements-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Admission - Clean with Accent */
.admissions-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

/* Blogs - Warm Light */
.blogs-section {
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
}

/* Development Team - Cool Tone */
.dev-team-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Research & Publications - Academic Feel */
.research-section,
.publications-section,
.student-projects-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

/* IQAC - Professional Blue */
.iqac-section {
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.1), transparent);
    margin: 0;
}

/* Add subtle shadows for depth */
.content-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Section transitions */
section {
    transition: all 0.3s ease;
}

/* Alternative Background Classes */
.bg-pattern-dots {
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-lines {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(22, 163, 74, 0.02) 10px,
        rgba(22, 163, 74, 0.02) 20px
    );
}

.bg-gradient-subtle {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.02) 0%, transparent 100%);
}


/* Hero Stats Styles */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Achievement & Blog Glassmorphism Enhancements */
.achievement-card, .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.achievement-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
}

/* Responsive fixes for new sections */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    .stat-number {
        font-size: 2rem;
    }
}


/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2500;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

.sticky-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.2);
    padding: 10px 40px;
}

.header-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(22, 163, 74, 0.3));
    transition: all 0.3s ease;
}

.sticky-header.scrolled .header-logo img {
    height: 50px;
}

.header-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(22, 163, 74, 0.5));
}




/* Responsive Design */
@media (max-width: 768px) {
    .bos-section,
    .student-projects-section,
    .iqac-section {
        padding: 60px 0;
    }
    
    .bos-members,
    .projects-showcase,
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bos-member-card,
    .project-card,
    .objective-item {
        padding: 25px 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .objectives-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .bos-description p,
    .iqac-description p {
        font-size: 16px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .objectives-title {
        font-size: 20px;
    }
}
