@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
        
        :root {
            --accent: #FFD700;
        }
        /* Page Transition: Slide Up and Fade In */
@keyframes pageSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Apply to the body so the entire layout slides together */
body {
    animation: pageSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Smooth Navigation Underline effect for Desktop Menu */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

        body {
            font-family: 'Inter', sans-serif;
            background-color: #080808;
            color: #ffffff;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Spotlight Effect */
        #spotlight {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 215, 0, 0.05) 0%, rgba(0,0,0,0) 50%);
            z-index: 999;
        }

        .yellow-accent { color: var(--accent); }
        .bg-yellow-accent { background-color: var(--accent); }
        
        .heading-tight { letter-spacing: -0.025em; line-height: 1.2; }
        .text-micro { font-size: 0.65rem; letter-spacing: 0.08em; }

        /* Card Interaction */
        .interactive-card {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .interactive-card:hover {
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
        }

        .input-focus:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }

        /* Animations */
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-reveal { animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        .loader-bar {
            width: 0%;
            height: 2px;
            background: var(--accent);
            transition: width 1s ease-in-out;
        }

        /* Emoji Burst Container */
        #burst-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        .particle {
            position: absolute;
            font-size: 24px;
            animation: particleAnim 1s ease-out forwards;
        }

        @keyframes particleAnim {
            0% { transform: translate(0, 0) scale(1); opacity: 1; }
            100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
        }

        /* Styling for Info Table to match Results Table */
.info-table td {
    background: rgba(24, 24, 27, 0.4);
}

@media print {
    /* Force B&W Print */
    html, body {
        background: #fff !important;
        color: #000 !important;
    }

    .no-print {
        display: none !important;
    }
    /* Hide non-essential UI */
    nav, footer, .search-section, .search-container-box, 
    #spotlight, #burst-container, .no-print, #semesterSelect {
        display: none !important;
    }

    /* Professional Boxed Styling for both Info and Result Tables */
    .info-table, .boxed-table, table {
        width: 100% !important;
        border: 2px solid #000 !important;
        border-collapse: collapse !important;
        margin-bottom: 15px !important;
    }

    td, th {
        border: 1px solid #000 !important;
        padding: 5px 8px !important;
        color: #000 !important;
    }

    /* Label and value formatting inside the table cells */
    .text-micro {
        font-size: 8px !important;
        border-bottom: 0.5px solid #000 !important;
        margin-bottom: 2px !important;
        display: block !important;
    }
    
    .font-bold {
        font-size: 11px !important;
    }
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #27272a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-size: 16px;
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: #FFD700;
  color: #000;
  border-color: #FFD700;
  transform: translateY(-4px);
}

.nav-link {
    white-space: nowrap; /* Prevents links from breaking into two lines */
    display: inline-block;
}

/* Optional: Hide less important items on smaller tablets to keep alignment clean */
@media (max-width: 1024px) {
    .md\:flex.items-center.space-x-4 a:nth-last-child(-n+2) {
        display: none;
    }
}

/* Credit Table Specific Styles */
.credit-table td {
    border: 1px solid #27272a; /* matches zinc-800 */
}

/* Ensure text is strictly uppercase as per JNTUH style */
#studentName, #collegeName, #branchName {
    text-transform: uppercase;
}

/* Print optimization for the Credit Table */
@media print {
    .bg-zinc-900 { background-color: #f3f4f6 !important; color: #000 !important; }
    .text-blue-400, .text-blue-300 { color: #000 !important; font-weight: bold !important; }
    .border-zinc-700 { border-color: #000 !important; }
}




/* Staggered Slide Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Pulse effect for the search button when active */
.btn-pulse:active {
    transform: scale(0.95);
    box-shadow: 0 0 15px var(--accent);
}

/* Shimmer effect for the loading state */
.shimmer {
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.animate-reveal {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
