/* Google Fonts: Inter and Poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0b1c3c; /* Deep Blue/Navy */
  --secondary-color: #1a365d; /* Lighter Navy */
  --accent-color: #00b4d8; /* Cyan accent */
  --accent-hover: #0096c7;
  --gold-accent: #ffd700;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(11, 28, 60, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-soft);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
}

.logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
}

.logo-text span {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 28, 60, 0.9) 0%, rgba(11, 28, 60, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: left;
  color: var(--bg-white);
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* About Section */
.about {
  background-color: var(--bg-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-stats-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.stat-info h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.feature-item h5 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Accreditation Section */
.accreditation {
  background-color: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.acc-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.acc-item {
  background: var(--bg-white);
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  min-width: 200px;
}

.acc-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.acc-item h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.acc-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Programs Section */
.programs {
  background-color: var(--bg-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  z-index: 1;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition-smooth);
  z-index: -1;
  border-radius: 20px;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.program-card:hover::before {
  height: 100%;
}

.program-card:hover h3,
.program-card:hover p,
.program-card:hover .program-icon i {
  color: var(--bg-white);
}

.program-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition-smooth);
}

.program-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.program-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.program-card p {
  color: var(--text-muted);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.program-card:hover .program-link {
  color: var(--gold-accent);
}

/* Autonomous Features */
.features {
  background-color: var(--primary-color);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.features .section-title h2 {
  color: var(--bg-white);
}

.features .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Placements */
.placements {
  background-color: var(--bg-light);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-box {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-box .counter {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box .counter span {
  color: var(--accent-color);
}

.stat-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Gallery */
.gallery {
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 60, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--bg-white);
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.gallery-overlay span {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Principal Message */
.principal {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.principal-wrapper {
  background: var(--bg-white);
  border-radius: 30px;
  padding: 60px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.principal-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.principal-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.principal-content h4 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 500;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(0, 180, 216, 0.2);
  margin-bottom: 20px;
}

.principal-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  font-style: italic;
}

/* Footer */
footer {
  background-color: #051024;
  color: var(--bg-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-grid, .principal-wrapper {
    grid-template-columns: 1fr;
  }
  .about-img {
    max-width: 600px;
    margin: 0 auto;
  }
  .principal-wrapper {
    text-align: center;
  }
  .principal-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: 0.3s;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-buttons {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.nit-header-wrapper * {
    box-sizing: border-box;
}

.nit-announcement-bar {
    background: linear-gradient(135deg, var(--nit-accent-blue), #1d4ed8);
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nit-announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: nit-shimmer 3s infinite;
}

@keyframes nit-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nit-announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.nit-announcement-badge {
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nit-main-header {
    background: linear-gradient(180deg, var(--nit-primary-navy) 0%, var(--nit-secondary-navy) 100%);
    padding: 40px 30px;
    position: relative;
    border-bottom: 1px solid var(--nit-border-subtle);
}

.nit-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.nit-logo-frame {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nit-logo-frame img {
    height: 100px;
    width: auto;
}

.nit-title-section { text-align: center; }

.nit-college-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--nit-text-light);
    margin: 0 0 12px 0;
}

.nit-college-highlight {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nit-affiliation-text {
    color: var(--nit-text-muted);
    font-size: 13px;
    margin: 0 0 10px 0;
}

.nit-info-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.nit-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nit-border-subtle);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--nit-text-light);
}

.nit-accreditation-badge {
    background: white;
    padding: 8px;
    border-radius: 12px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nit-accreditation-badge img { height: 80px; width: auto; }

.nit-news-ticker {
    background: rgba(15, 23, 42, 0.95);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nit-news-label {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
}

.nit-ticker-track {
    display: flex;
    gap: 40px;
    animation: nit-scroll-ticker 30s linear infinite;
}

@keyframes nit-scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nit-main-navigation {
    background: rgba(10, 22, 40, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--nit-border-subtle);
}

.nit-nav-container { display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }

.nit-nav-menu { display: flex; list-style: none; margin: 0; padding: 0; }

.nit-nav-menu > li { position: relative; }

.nit-nav-menu > li > a {
    display: block;
    padding: 20px 16px;
    color: var(--nit-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nit-nav-menu > li:hover > a { color: white; }

.nit-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #1a2942;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nit-nav-menu > li:hover .nit-dropdown { opacity: 1; visibility: visible; }

.nit-dropdown a {
    display: block;
    padding: 10px;
    color: var(--nit-text-muted);
    text-decoration: none;
    font-size: 13px;
}

.nit-dropdown a:hover { color: white; background: rgba(255,255,255,0.05); }

.nit-nav-actions { display: flex; gap: 10px; }

.nit-nav-primary-btn {
    background: var(--nit-accent-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.nit-admission-banner {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: white;
}

.nit-banner-btn {
    background: white;
    color: #7c3aed;
    padding: 8px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
}

/* ========== THEMED HEADER STYLES ========== */
:root {
    --header-navy: #0b1c3c;
    --header-gold: #f1b44c;
    --header-light: #f8f9fa;
    --header-white: #ffffff;
}

.site-header-wrapper {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.top-announcement {
    background: var(--header-navy);
    color: var(--header-gold);
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(241, 180, 76, 0.2);
}

.main-brand-header {
    background: var(--header-white);
    padding: 20px 0;
}

.brand-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.brand-logo img {
    height: 90px;
    width: auto;
}

.brand-title {
    text-align: center;
    flex-grow: 1;
}

.brand-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--header-navy);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-title p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

.brand-badges {
    display: flex;
    gap: 15px;
}

.brand-badges img {
    height: 70px;
}

.nav-ticker-bar {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    overflow: hidden;
}

.ticker-wrap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: #d90429;
    color: white;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    margin-right: 20px;
}

.ticker-track {
    display: flex;
    gap: 50px;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.main-nav-bar {
    background: var(--header-navy);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: white;
    padding: 18px 18px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-list > li:hover > a {
    color: var(--header-gold);
    background: rgba(255,255,255,0.05);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.nav-list > li:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.nav-dropdown a:hover {
    background: #f1f5f9;
    color: var(--header-navy);
    padding-left: 25px;
}

.nav-cta {
    display: flex;
    gap: 10px;
    padding-right: 20px;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold {
    background: var(--header-gold);
    color: var(--header-navy);
}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .brand-title h1 { font-size: 20px; }
    .brand-badges { display: none; }
}

.nav-bottom-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.nav-list {
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        background: #0b1c3c;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        z-index: 1005;
        position: relative;
    }
    .nav-bottom-row {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #0b1c3c;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 30px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        white-space: normal;
    }
    .nav-bottom-row.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-list > li > a {
        padding: 15px 5px;
        justify-content: space-between;
        width: 100%;
        font-size: 13px;
    }
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }
    .nav-dropdown.mobile-open {
        display: block;
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
        gap: 15px;
    }
    .nav-actions .btn-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px;
    }
}

/* ========== THE PERFECT HEADER STYLES ========== */
:root {
    --nit-navy-deep: #0b1c3c;
    --nit-navy-mid: #162a50;
    --nit-gold: #f1b44c;
    --nit-gold-glow: rgba(241, 180, 76, 0.4);
    --nit-white: #ffffff;
    --nit-glass: rgba(11, 28, 60, 0.95);
}

.site-header-wrapper {
    width: 100%;
    position: relative; /* Solid for subpages */
    z-index: 1000;
    animation: headerSlideDown 0.6s ease-out;
    background: linear-gradient(180deg, var(--nit-navy-deep) 0%, #0d2148 100%);
}

.site-header-wrapper.index-header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

@keyframes headerSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 1. Top Bar - Unified Navy */
.top-announcement {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--nit-white);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(241,180,76,0.15);
    letter-spacing: 0.3px;
}

.top-apply-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(241, 180, 76, 0.5);
    color: var(--nit-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 800;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 10px;
    transition: 0.3s;
}

.top-apply-btn:hover {
    background: var(--nit-gold);
    color: var(--nit-navy-deep);
    transform: scale(1.05);
}

/* Top Bar Layout */
.top-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.top-contact i {
    color: var(--nit-gold);
    margin-right: 4px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-text {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
}

/* Nav Brand (logo + text inside dark nav) */
.nav-brand {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 5px 0 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 5px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo-img {
    transform: scale(1.08);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nav-brand-sub {
    color: var(--nit-gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.brand-badges-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 25px;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 25px;
}

.nav-badge {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.nav-brand:hover .nav-badge {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .top-contact { display: none; }
    .top-text { display: none; }
    .nav-brand-text { display: none; }
    .nav-logo-img { height: 40px; }
}

/* 3. Live Ticker - Integrated Sleekness */
.nav-ticker-bar {
    background: transparent;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    overflow: hidden;
}

.ticker-label {
    background: #d90429 !important;
    border-radius: 3px !important;
    box-shadow: 0 0 12px rgba(217,4,41,0.4) !important;
    animation: tickerPulse 2s ease-in-out infinite;
    color: #fff;
    font-weight: 700;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes tickerPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(217,4,41,0.3); }
    50% { box-shadow: 0 0 20px rgba(217,4,41,0.6); }
}

.ticker-wrap {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* 4. Nav Bar - Glassmorphism Sticky */
.main-nav-bar {
    background: transparent;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header-wrapper.index-header .main-nav-bar,
.site-header-wrapper.index-header .top-announcement {
    background: transparent;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: rgba(255,255,255,0.95);
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 11px;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--nit-gold);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list > li:hover > a::after {
    width: 70%;
}

.nav-list > li:hover > a {
    color: var(--nit-gold);
    background: rgba(255,255,255,0.03);
}

.nav-icon {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.nav-list > li:hover .nav-icon {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: linear-gradient(180deg, #0d2148 0%, var(--nit-navy-deep) 100%);
    border-top: 3px solid var(--nit-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}

.nav-list > li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

.nav-dropdown li:last-child a {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: rgba(241,180,76,0.08);
    color: var(--nit-gold);
    padding-left: 26px;
}

.nav-dropdown a i {
    color: var(--nit-gold);
    width: 18px;
    text-align: center;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.nav-dropdown a:hover i {
    transform: scale(1.15);
}

/* 5. CTA Buttons - Premium Shimmer */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav.btn-primary {
    background: var(--nit-gold);
    color: var(--nit-navy-deep);
    font-weight: 800;
}

.btn-nav.btn-primary:hover {
    background: #f9c96d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241,180,76,0.4);
}

.btn-nav.btn-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    background: transparent;
}

.btn-nav.btn-outline:hover {
    border-color: var(--nit-gold);
    color: var(--nit-gold);
    background: rgba(241,180,76,0.06);
    transform: translateY(-2px);
}

/* ========== SCROLL EFFECTS ========== */
.main-nav-bar {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav-bar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(11, 28, 60, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    border-bottom: 2px solid var(--nit-gold);
}

.main-nav-bar.scrolled .nav-logo-img {
    height: 38px;
}

.main-nav-bar.scrolled .nav-brand-name {
    font-size: 14px;
}

/* ========== NAV ACTIVE STATE ========== */
.nav-active {
    color: var(--nit-gold) !important;
}

.nav-list > li > a.nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--nit-gold);
    border-radius: 3px;
}

/* ========== STANDARDIZED PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, rgba(11, 28, 60, 0.92), rgba(26, 54, 93, 0.92)), url('../images/hero-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0 60px;
    color: white;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,180,216,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ========== PREMIUM FOOTER ========== */
.site-footer {
    background: linear-gradient(180deg, var(--nit-navy-deep) 0%, #060e1a 100%);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
    margin-top: 80px;
}

.site-footer .footer-logo {
    margin-bottom: 20px;
}

.site-footer .footer-logo img {
    height: 70px;
    filter: brightness(1.2);
}

.site-footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--nit-gold);
    border-radius: 3px;
}

.site-footer .footer-about p {
    line-height: 1.8;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.site-footer .social-links {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
    background: var(--nit-gold);
    color: var(--nit-navy-deep);
    border-color: var(--nit-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(241,180,76,0.3);
}

.site-footer .footer-links li {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.site-footer .footer-links a i {
    font-size: 10px;
    color: var(--nit-gold);
    transition: 0.3s;
}

.site-footer .footer-links a:hover {
    color: var(--nit-gold);
    transform: translateX(5px);
}

.site-footer .footer-contact ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.site-footer .footer-contact li i {
    color: var(--nit-gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* ========== CONTENT CONSISTENCY ========== */
.content-wrap {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #444;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nit-navy-deep);
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list > li > a {
        padding: 12px 15px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-dropdown.mobile-open {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255,255,255,0.04);
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        padding: 5px 0 5px 15px;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,0.2);
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        border-color: var(--nit-gold);
        color: var(--nit-gold);
    }

    .mobile-menu-toggle.active {
        border-color: var(--nit-gold);
        color: var(--nit-gold);
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* SSR Dashboard & Metric Pages Styles */
.page-header {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: #fff;
    margin-top: 100px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.content-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background: #f8fafc;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-view:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: -1;
}

.mini-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.metric-card {
    border-left: 5px solid var(--accent-color);
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-top: 80px; /* To prevent nav overlap */
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-top: 60px;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

