@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary-color: #0c2d61; /* Navy blue */
  --secondary-color: #d19f39; /* Gold/Yellow */
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-color: #e5e5e5;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #081d42;
  border-color: #081d42;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #b88a31;
  border-color: #b88a31;
  color: var(--primary-color);
}

.section-padding {
  padding: 80px 0;
}

/* Top Bar */
.top-bar {
  background-color: #07100a;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 120, 0, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.72);
}

.top-bar .form-check-label {
  color: rgba(255, 255, 255, 0.72);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 15px !important;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown .dropdown-menu {
    display: none;
  }
  .navbar .dropdown:hover .nav-link {
    color: var(--primary-color);
  }
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* Hero Section - Dark Redesign */
.hero-section {
  background: #0a1308;          /* fallback while canvas loads */
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Full-bleed canvas background */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* Keep .hero-tag for other pages */
.hero-tag {
  background: rgba(209, 159, 57, 0.1);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero-title-gold {
  background: linear-gradient(120deg, #d4a017 0%, #e8c060 50%, #c4880d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, #d4a017, transparent);
  margin: 16px 0 22px;
}

.hero-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 34px;
  line-height: 1.75;
  max-width: 420px;
}

/* Stats Box */
.stats-container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  padding: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  font-size: 24px;
  color: var(--primary-color);
}

.stat-info h5 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.stat-info p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Cards */
.custom-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 30px;
  height: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h3 {
  margin: 0;
  font-size: 24px;
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Featured Articles */
.nav-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.nav-tabs .nav-link {
  border: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 10px 0;
  margin-right: 30px;
  background: transparent;
  position: relative;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color);
}

.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.article-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.article-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Call for Papers */
.cfp-box {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
}

.cfp-box h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.cfp-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
}

.cfp-item h6 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.cfp-item p {
  font-size: 13px;
  color: #a0b2cc;
  margin: 0;
}

/* Editorial Board */
.author-card {
  text-align: center;
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.author-card h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-card p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer p {
  font-size: 14px;
  color: #a0b2cc;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #a0b2cc;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.social-icons a:hover {
  background: var(--secondary-color);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #a0b2cc;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin: 0;
  font-size: 3rem;
}

/* Contact Form */
.form-control {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(12, 45, 97, 0.25);
}

/* ================================================
   DARK HERO - NAVBAR & COMPONENT STYLES
   ================================================ */

/* Dark Navbar */
.hero-navbar {
  background: #0a1308 !important;
  border-bottom: 1px solid rgba(255, 120, 0, 0.1);
  padding: 16px 0 !important;
  box-shadow: none !important;
}

.hero-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link.active {
  color: #e8a040 !important;
}

.hero-navbar .navbar-brand h3 {
  color: #fff !important;
}

.hero-navbar .navbar-brand small {
  color: rgba(255, 255, 255, 0.45) !important;
}

.hero-navbar .dropdown-menu {
  background: #0f1e0c;
  border: 1px solid rgba(255, 120, 0, 0.15);
}

.hero-navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.75);
}

.hero-navbar .dropdown-item:hover,
.hero-navbar .dropdown-item:focus {
  background: rgba(255, 120, 0, 0.1);
  color: #e8a040;
}

.hero-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Light burst & conic rays */
.hero-light-burst {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 68%;
  height: 130%;
  background:
    radial-gradient(circle at 55% 40%,
      rgba(255, 210, 60, 1) 0%,
      rgba(255, 150, 20, 0.95) 2%,
      rgba(255, 90, 5, 0.85) 5%,
      rgba(230, 60, 0, 0.6) 12%,
      rgba(180, 40, 0, 0.3) 25%,
      rgba(100, 20, 0, 0.1) 42%,
      transparent 60%
    ),
    repeating-conic-gradient(
      from 0deg at 55% 40%,
      rgba(210, 75, 10, 0.22) 0deg 2deg,
      transparent 2deg 8deg
    );
  pointer-events: none;
  z-index: 0;
}

/* Bottom arc/planet horizon */
.hero-bottom-arc {
  position: absolute;
  bottom: -30px;
  right: 3%;
  width: 62%;
  height: 260px;
  background: radial-gradient(ellipse at 60% 90%,
    rgba(160, 55, 5, 0.65) 0%,
    rgba(90, 30, 0, 0.38) 32%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Hero badge pill */
.hero-badge {
  display: inline-block;
  border: 1.5px solid rgba(255, 160, 50, 0.4);
  color: rgba(255, 200, 120, 0.9);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  background: rgba(255, 140, 0, 0.05);
}

/* Buttons */
.hero-btn-orange {
  background: #c96010;
  border: none;
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(180, 80, 10, 0.4);
}

.hero-btn-orange:hover {
  background: #a84d0a;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(180, 80, 10, 0.55);
}

.hero-btn-dark-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-btn-dark-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}

/* Floating Issue Card */
.hero-issue-card {
  background: rgba(10, 18, 8, 0.82);
  border: 1px solid rgba(180, 90, 0, 0.42);
  border-radius: 14px;
  padding: 30px;
  width: 250px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 50px rgba(180, 70, 0, 0.2);
}

.hero-issue-card h6 {
  color: rgba(255, 200, 100, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin: 0;
}

.hero-card-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(180, 90, 0, 0.55);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 180, 80, 0.9);
  flex-shrink: 0;
}

.hero-card-vol {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 4px;
}

.hero-card-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin: 0;
}

/* Indexed In Bar */
.hero-indexed-bar {
  position: relative;
  z-index: 1;
  margin-top: 55px;
  background: rgba(4, 8, 3, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}

.indexed-label {
  color: #c49a20;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  font-family: 'Lora', serif;
}

.indexed-item {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.road-logo-text {
  color: #e05535;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.road-lines {
  color: #e05535;
  font-size: 13px;
}

.mla-globe {
  font-size: 17px;
}

.mla-text-block {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.rg-badge {
  display: inline-block;
  background: #19b096;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.rg-text {
  color: rgba(255, 255, 255, 0.78);
}

.academia-icon {
  font-size: 15px;
}

.academia-text {
  color: rgba(255, 255, 255, 0.72);
}

.google-scholar-text {
  font-size: 14px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-issue-card {
    width: 100%;
    max-width: 280px;
    margin: 30px auto 0;
  }
  .hero-light-burst {
    width: 100%;
    right: 0;
    opacity: 0.65;
  }
  .hero-indexed-bar .d-flex {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-section {
    padding-top: 50px;
  }
}
