/* =============== RESET & BASE =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0a001a 0%, #1a0033 100%);
  color: #f0f0ff;
  font-family: 'Exo 2', sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* GLOBAL PARAGRAPH GAPS – fixes "no gaps between paragraphs" */
p {
  margin: 0 0 1.1rem;
}

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

/* Background glow */
.star-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
  animation: twinkle 20s infinite alternate;
}

/* =============== HEADER =============== */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 0, 30, 0.9);
  border-bottom: 2px solid rgba(0, 255, 255, 0.4);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap; /* force one line */
}

.site-logo a {
  font-family: 'Orbitron';
  font-size: 40px;
  text-decoration: none;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px rgba(124,58,237,0.6);
}
.site-logo span {
  /* keep span so HTML doesn’t break, but we use same gradient */
  text-shadow: 0 0 20px rgba(34,211,238,0.7);
}


/* Menu – horizontal, non-wrapping, scrollable if needed */
/* MAIN MENU BAR */
.menu-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;          /* allow wrapping on very small widths */
  /* IMPORTANT: remove horizontal scrolling + nowrap here */
  /* no overflow-x, no white-space here */
}

.menu-nav a {
  position: relative;
  color: #ddd;
  margin-left: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Neon underline */
.menu-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #4f46e5);
  box-shadow: 0 0 10px rgba(56,189,248,0.7);
  transition: width 0.3s ease;
}

/* Hover effect */
.menu-nav a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
}
.menu-nav a:hover::after {
  width: 100%;
}


/* =============== HOME HERO =============== */
.hero {
  padding: 120px 0 70px; /* space for fixed header */
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: gradient 4s ease infinite;
}

.hero-subtitle {
  font-size: 20px;
  color: #00ffff;
  margin: 14px 0;
}

.hero-odia-text {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 22px;
  color: #ff99ff;
  margin: 14px 0;
}

.hero-lead {
  font-size: 16px;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  position: relative;
  z-index: 5; /* keep above any overlapping elements */
}

/* Make sure animated hero buttons never stay hidden */
.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}


/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition: 0.35s;
}

.btn-primary {
  background: linear-gradient(45deg, #00ffff, #00ccff);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.9);
}

.btn-secondary {
  border: 2px solid #00ffff;
  color: #00ffff;
}

.btn-secondary:hover {
  background: #00ffff;
  color: #000;
}

/* Hero video */
.video-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 255, 255, 0.35);
}

.video-container iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* =============== HOME MAIN CONTENT =============== */
.main-content {
  padding: 40px 0 140px; /* bottom gap before footer */
}

.content-title {
  font-size: 32px;
  text-align: center;
  color: #00ffff;
  margin-bottom: 50px;
  text-shadow: 0 0 18px #00ffff;
}

/* SIDE-BY-SIDE CARDS – text + image */
.content-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); /* text wider than image */
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 70px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.text-panel h3 {
  color: #00ffff;
  font-size: 22px;
  margin-bottom: 10px;
}

.text-panel p {
  font-size: 15px;
}

/* ORGANIZED IMAGE SIZE – fixes "images too big" */
.image-panel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.image-panel img.organized-img {
  display: block;
  width: 100%;
  max-width: 260px;       /* NEAT IMAGE SIZE */
  height: auto;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-panel img.organized-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 255, 255, 0.45);
}

/* Quote block (home) */
.quote-block {
  text-align: center;
  margin: 70px 0;
  padding: 32px 24px;
  background: rgba(255, 153, 255, 0.12);
  border-radius: 18px;
  border-left: 4px solid #00ffff;
  border-right: 4px solid #ff99ff;
}

.quote-block blockquote {
  font-size: 20px;
  color: #ffb3ff;
  font-style: italic;
}

/* Closing (home) */
.closing {
  text-align: center;
  margin-top: 40px;
}

.closing p {
  font-size: 16px;
}

.odia-closing {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 24px;
  color: #00ffff;
  margin-top: 14px;
}

/* =============== ABOUT PAGE =============== */
.about-hero {
  padding: 140px 0 80px;
  background: rgba(10, 0, 40, 0.4);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.about-title {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: gradient 4s ease infinite;
}

.about-subtitle {
  font-size: 20px;
  color: #00ffff;
  margin: 14px 0;
}

.about-lead {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-odia-big {
  font-size: 24px;
  color: #ff99ff;
  font-family: 'Noto Sans Oriya', sans-serif;
  margin-top: 18px;
}

.hero-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 255, 255, 0.4);
}

/* About main content */
.about-content {
  padding: 40px 0 160px;
}

.section-heading {
  font-size: 30px;
  text-align: center;
  color: #00ffff;
  margin-bottom: 50px;
  text-shadow: 0 0 18px #00ffff;
}

/* About blocks – SIDE-BY-SIDE text + image */
.about-block {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 70px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.about-block.reverse .text-side {
  order: 2;
}

.about-block.reverse .img-side {
  order: 1;
}

.text-side h3 {
  color: #00ffff;
  font-size: 22px;
  margin-bottom: 10px;
}

.text-side p {
  font-size: 15px;
}

/* mission list */
.mission-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.mission-list li {
  font-size: 15px;
  margin-bottom: 0.7rem;
  color: #ccffff;
}

/* About images – controlled size */
.img-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 255, 255, 0.5);
}

/* About quote */
.about-quote {
  text-align: center;
  margin: 80px 0;
  padding: 32px 24px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 22px;
  border: 2px dashed #00ffff;
}

.about-quote blockquote {
  font-size: 20px;
  color: #ff99ff;
  line-height: 1.8;
}

.quote-author {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #00ffff;
}

/* About final section */
.about-final {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 0, 255, 0.08);
  border-radius: 24px;
}

.about-final h3 {
  font-size: 26px;
  color: #00ffff;
  margin-bottom: 20px;
}

.final-odia {
  font-size: 22px;
  color: #ff99ff;
  margin: 24px 0;
  font-family: 'Noto Sans Oriya', sans-serif;
}

.blessing {
  font-size: 24px;
  color: #00ffff;
  margin-top: 10px;
  text-shadow: 0 0 25px #00ffff;
}

/* =============== ODISSI DANCER =============== */
.odissi-anim {
  position: fixed;
  bottom: 22px;
  right: 18px;
  width: 80px;
  height: 80px;
  background: url('https://media.giphy.com/media/3o7btPCcdNniyf0ArS/giphy.gif') center/contain no-repeat;
  z-index: 999;
  opacity: 0.8;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.5);
  pointer-events: none;
}

/* =============== FOOTER =============== */
.footer-global {
  width: 100%;
  padding: 40px 0 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.88);
  color: #999;
  font-size: 14px;
  margin-top: 80px; /* long, clean gap from body content */
}

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

/* =============== KEYFRAMES =============== */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes twinkle {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
  .hero-layout,
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero {
    padding-top: 110px;
  }

  .content-card,
  .about-block {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .image-panel,
  .img-side {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .site-logo a {
    font-size: 22px;
  }

  .hero-title,
  .about-title {
    font-size: 32px;
  }

  .hero-subtitle,
  .about-subtitle {
    font-size: 18px;
  }

  .hero-odia-text,
  .about-odia-big {
    font-size: 19px;
  }

  .video-container iframe {
    height: 240px;
  }

  .content-title,
  .section-heading {
    font-size: 24px;
  }

  .odissi-anim {
    width: 64px;
    height: 64px;
    bottom: 16px;
    right: 14px;
  }
}
/* ===== NAV DROPDOWN FOR ODIA FOODIES ===== */
/* ===== NAV DROPDOWN FOR ODIA FOODIES ===== */
.menu-item {
  position: relative;
  margin-left: 18px;
}

.parent-link {
  color: #ddd;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;             /* ← clickable */
  transition: 0.3s;
}

.menu-item:hover .parent-link {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* Dropdown base */
.sub-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 210px;
  background: rgba(10, 0, 35, 0.98);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1500;
}

/* Show on hover (desktop) */
.has-sub:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Show when JS adds .open (click/tap) */
.has-sub.open .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sub-menu a {
  display: block;
  padding: 8px 16px;
  margin: 0;
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
}

/* ===== FOOD PAGES: HERO & LAYOUT ===== */
.food-hero {
  padding: 140px 0 80px;
}

.food-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.food-title {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: gradient 4s ease infinite;
}

.food-subtitle {
  font-size: 20px;
  color: #00ffff;
  margin-bottom: 10px;
}

.food-odia {
  font-size: 22px;
  color: #ff99ff;
  margin-bottom: 16px;
  font-family: 'Noto Sans Oriya', sans-serif;
}

.food-lead {
  font-size: 16px;
  margin-bottom: 14px;
}

.food-hero-img {
  display: flex;
  justify-content: center;
}

.hero-food-img {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 255, 255, 0.4);
}

/* ===== SWEETS & FOODS CONTENT ===== */
.sweets-content,
.foods-content {
  padding: 40px 0 160px;
}

/* Shared card layout – SIDE BY SIDE text + image */
.sweet-card,
.food-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 70px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.sweet-card.reverse .sweet-text,
.food-card.reverse .food-text {
  order: 2;
}

.sweet-card.reverse .sweet-img,
.food-card.reverse .food-img {
  order: 1;
}

.sweet-text h3,
.food-text h3 {
  color: #00ffff;
  font-size: 22px;
  margin-bottom: 10px;
}

.sweet-text p,
.food-text p {
  font-size: 15px;
}

/* IMAGES – same organised look as other pages */
.sweet-img,
.food-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sweet-img img,
.food-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sweet-img img:hover,
.food-img img:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 255, 255, 0.5);
}

/* Final blocks */
.sweet-final,
.food-final {
  text-align: center;
  padding: 40px 24px;
  background: rgba(0, 255, 255, 0.08);
  border-radius: 24px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .food-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .sweet-card,
  .food-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .sweet-img,
  .food-img {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .food-title {
    font-size: 32px;
  }

  .food-odia {
    font-size: 19px;
  }

  .hero-food-img {
    max-width: 320px;
  }
}

/* ===== ODIA CLASSIC SONGS PAGE ===== */
.songs-hero {
  padding: 140px 0 80px;
}

.songs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.songs-title {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: gradient 4s ease infinite;
}

.songs-subtitle {
  font-size: 20px;
  color: #00ffff;
  margin: 14px 0;
}

.songs-odia {
  font-size: 22px;
  color: #ff99ff;
  margin-bottom: 16px;
  font-family: 'Noto Sans Oriya', sans-serif;
}

.songs-lead {
  font-size: 16px;
  margin-bottom: 14px;
}

.songs-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Extra outline style button for songs tabs */
.btn-outline {
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 2px dashed #ff99ff;
  color: #ff99ff;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ff99ff;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 153, 255, 0.7);
}

.songs-hero-visual {
  display: flex;
  justify-content: center;
}

.hero-singer-img {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(255, 0, 255, 0.45);
}

/* Songs main content */
.songs-content {
  padding: 40px 0 160px;
}

.songs-intro {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
}

/* Categories */
.song-category {
  margin-top: 70px;
}

.category-header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.category-title {
  font-size: 26px;
  color: #00ffff;
  margin-bottom: 12px;
  text-shadow: 0 0 18px #00ffff;
}

.category-intro {
  font-size: 15px;
}

/* Grid of songs */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.song-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 16px 20px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.song-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.song-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 255, 255, 0.45);
  border-color: rgba(0, 255, 255, 0.4);
}

.song-card:hover::before {
  opacity: 1;
}

.song-card iframe {
  width: 100%;
  height: 210px;
  border-radius: 14px;
  border: none;
}

.song-meta {
  margin-top: 10px;
}

.song-meta h4 {
  color: #00ffff;
  font-size: 16px;
  margin-bottom: 6px;
  text-align: left;
}

.song-meta p {
  font-size: 14px;
  opacity: 0.9;
}

/* Final section */
.songs-final {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 0, 255, 0.08);
  border-radius: 24px;
  margin-top: 70px;
}

.songs-final h3 {
  font-size: 26px;
  color: #ff99ff;
  margin-bottom: 18px;
}

/* Reuse existing .blessing class size is okay */

/* Responsive for songs page */
@media (max-width: 992px) {
  .songs-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .songs-hero-visual {
    margin-top: 20px;
  }
}

@media (max-width: 700px) {
  .songs-title {
    font-size: 32px;
  }

  .songs-odia {
    font-size: 19px;
  }

  .hero-singer-img {
    max-width: 320px;
  }

  .songs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== BLOG PAGE – LISTING ===== */
.blog-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.blog-title {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: gradient 4s ease infinite;
}
.blog-subtitle {
  font-size: 20px;
  color: #ff99ff;
  margin: 14px 0;
  font-family: 'Noto Sans Oriya', sans-serif;
}
.blog-lead {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-content {
  padding: 30px 0 140px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 18px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  pointer-events: none;        /* ← THIS LINE IS THE FIX */
  transition: opacity 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 255, 255, 0.45);
  border-color: rgba(0, 255, 255, 0.4);
}
.blog-card:hover::before {
  opacity: 1;
}
.blog-img img {
  width: 100%;
  border-radius: 14px;
  height: 100%;
  object-fit: cover;
}
.blog-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.blog-text h3 a {
  color: #ffffff;
  text-decoration: none;
}
.blog-text h3 a:hover {
  color: #00ffff;
}
.blog-meta {
  font-size: 13px;
  color: #ccccff;
  margin-bottom: 8px;
}
.blog-excerpt {
  font-size: 14px;
  margin-bottom: 10px;
}
.read-more {
  font-size: 14px;
  color: #00ffff;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/* ===== SINGLE POST ===== */
.post-hero {
  padding: 140px 0 40px;
  text-align: center;
}
.post-title {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.post-meta {
  font-size: 14px;
  color: #ccccff;
  margin-top: 8px;
}
.post-featured-img {
  width: 100%;
  max-width: 700px;
  margin: 22px auto 0;
  display: block;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 255, 255, 0.35);
}

.post-content {
  padding: 20px 0 140px;
}
.post-body {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.9;
}
.post-body p {
  margin-bottom: 1rem;
}

/* COMMENTS */
.comments-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.comments-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00ffff;
}
.comment {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comment:last-child {
  border-bottom: none;
}
.comment p {
  margin: 4px 0;
}
.comment small {
  font-size: 11px;
  color: #aaaaee;
}
.no-comments {
  font-size: 14px;
  color: #ccccff;
  margin-bottom: 10px;
}
.comment-form-title {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 18px;
}
.comment-form {
  margin-top: 6px;
}
.comment-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 0, 30, 0.7);
  color: #f0f0ff;
  font-family: inherit;
  font-size: 14px;
}
.comment-form .form-row input {
  flex: 1;
}
.comment-form button {
  margin-top: 4px;
}
.success {
  font-size: 13px;
  color: #88ffcc;
  margin-top: 8px;
}

/* ===== ADMIN STYLES ===== */
.admin-body {
  background: linear-gradient(135deg, #050012 0%, #120033 100%);
  color: #f0f0ff;
  font-family: 'Exo 2', sans-serif;
}
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-card {
  width: 100%;
  max-width: 380px;
  padding: 30px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.8);
}
.admin-login-card h1 {
  font-size: 22px;
  margin-bottom: 6px;
}
.admin-login-card p {
  font-size: 13px;
  margin-bottom: 14px;
}
.admin-login-card input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 0, 30, 0.7);
  color: #f0f0ff;
}
.admin-login-btn {
  width: 100%;
  margin-top: 8px;
}
.admin-small-note {
  font-size: 11px;
  margin-top: 10px;
  color: #bbbbff;
}
.admin-error {
  color: #ff8888;
  font-size: 13px;
  margin-bottom: 10px;
}
.admin-success {
  color: #88ffcc;
  font-size: 13px;
  margin-bottom: 10px;
}

.admin-header {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  background: rgba(5, 0, 20, 0.95);
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header-inner h1 {
  font-size: 20px;
}
.admin-header-inner nav a {
  margin-left: 18px;
  font-size: 14px;
  text-decoration: none;
  color: #ddddff;
}
.admin-header-inner nav a:hover {
  color: #00ffff;
}

.admin-main {
  padding: 30px 0 40px;
}
.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.admin-add-btn,
.admin-save-btn {
  font-size: 13px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th,
.admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.admin-table th {
  font-weight: 600;
  color: #ccffff;
}
.admin-link {
  color: #00ffff;
  text-decoration: none;
  font-size: 13px;
}
.admin-link:hover {
  text-decoration: underline;
}
.admin-danger {
  color: #ff8888;
}

.admin-form {
  max-width: 800px;
  margin: 0 auto;
}
.admin-form label {
  display: block;
  font-size: 13px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.admin-form input[type=\"text\"],
.admin-form input[type=\"file\"],
.admin-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 0, 30, 0.7);
  color: #f0f0ff;
  font-family: inherit;
  font-size: 14px;
}
.admin-form textarea {
  resize: vertical;
}
.admin-thumb-wrap {
  margin-bottom: 8px;
}
.admin-thumb {
  width: 150px;
  border-radius: 10px;
}

/* Responsive blog/post */
@media (max-width: 900px) {
  .blog-card {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 700px) {
  .blog-title {
    font-size: 30px;
  }
  .post-title {
    font-size: 24px;
  }
}
/* ===== ODISHa NEWS PAGE ===== */
.news-hero {
  padding: 180px 0 60px;
  text-align: center;
}
.news-title {
  font-size: 90px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.news-subtitle {
  font-size: 36px;
  color: #00ffff;
}
.news-odia {
  font-size: 42px;
  color: #ff99ff;
  margin: 24px 0 14px;
  font-family: 'Noto Sans Oriya';
}
.news-lead {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.news-content {
  padding: 40px 0 260px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}
.news-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 18px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  border: 1px solid rgba(0,255,255,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,255,255,0.2), transparent 55%);
  opacity: 0;
  pointer-events: none; /* important: do not block clicks on links */
  transition: opacity 0.35s ease;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 90px rgba(0,255,255,0.4);
  border-color: rgba(0,255,255,0.5);
}
.news-card:hover::before {
  opacity: 1;
}
.news-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.news-text h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.news-text h3 a {
  color: #ffffff;
  text-decoration: none;
}
.news-text h3 a:hover {
  color: #00ffff;
  text-shadow: 0 0 16px #00ffff;
}
.news-meta {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 6px;
}
.news-excerpt {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.8;
}
.read-more {
  color: #00ffff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}
.news-update {
  text-align: center;
  margin-top: 60px;
  color: #888;
  font-size: 14px;
}

@media (max-width: 980px) {
  .news-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .news-title {
    font-size: 64px;
  }
  .news-odia {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .news-title {
    font-size: 44px;
  }
}
/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 180px 0 100px;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.contact-title {
  font-size: 90px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-subtitle {
  font-size: 30px;
  color: #00ffff;
  margin: 12px 0 20px;
}
.contact-lead {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 14px;
}
.contact-info p {
  font-size: 17px;
  margin: 8px 0;
}
.contact-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 255, 255, 0.4);
  object-fit: cover;
}

/* Form section */
.contact-form-section {
  padding: 60px 0 260px;
}
.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 32px 48px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.24);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  background: rgba(5, 5, 35, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 18px;
  color: #ffffff;
  font-size: 16px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaaaee;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  outline: none;
}
.submit-btn {
  margin-top: 14px;
  background: linear-gradient(45deg, #00ffff, #00ccff);
  color: #000;
  padding: 16px 40px;
  border: none;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.submit-btn .arrow {
  font-size: 20px;
}
.submit-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 80px rgba(0, 255, 255, 1);
}
.success-msg,
.error-msg {
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 22px;
  text-align: center;
  font-size: 16px;
}
.success-msg {
  background: rgba(0, 255, 0, 0.12);
  border: 2px solid #00ff7f;
  color: #9cffc2;
}
.error-msg {
  background: rgba(255, 0, 80, 0.2);
  border: 2px solid #ff4e95;
  color: #ffb6d4;
}
.contact-note {
  margin-top: 10px;
  font-size: 14px;
  color: #ccccff;
}

/* Verify page */
.verify-page {
  padding: 180px 0 220px;
  text-align: center;
}
.verify-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
.verify-page p {
  font-size: 16px;
  margin-bottom: 8px;
}
.verify-odia {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 28px;
  color: #00ffff;
  margin-top: 18px;
}

/* Admin contact queries */
.query-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.query-card.verified {
  border-color: rgba(0, 255, 130, 0.7);
}
.query-card.pending {
  border-color: rgba(255, 200, 0, 0.7);
}
.query-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.query-chip {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.chip-verified {
  background: rgba(0, 255, 130, 0.15);
  color: #8dffce;
}
.chip-pending {
  background: rgba(255, 200, 0, 0.15);
  color: #ffe48e;
}
.query-meta {
  font-size: 14px;
  color: #ccccff;
  margin: 6px 0;
}
.query-message {
  font-size: 15px;
  margin: 4px 0 6px;
}
.query-date {
  font-size: 12px;
  color: #aaaaee;
}

/* Responsive contact */
@media (max-width: 992px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-title {
    font-size: 64px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .contact-title {
    font-size: 44px;
  }
}
/* ===== ADMIN GLOBAL ===== */
.admin-body {
  background: radial-gradient(circle at top, #0b0016 0%, #05000b 50%, #000000 100%);
  color: #f5f5ff;
  font-family: 'Exo 2', sans-serif;
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 0, 30, 0.94);
  border-bottom: 1px solid rgba(0,255,255,0.25);
  backdrop-filter: blur(20px);
}
.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.admin-header-inner h1 {
  font-size: 24px;
}
.admin-nav a {
  margin-left: 18px;
  color: #d7d7ff;
  text-decoration: none;
  font-size: 14px;
}
.admin-nav a:hover {
  color: #00ffff;
}
.admin-main {
  padding: 40px 0 80px;
}
.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.admin-card {
  display: block;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,255,0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.8);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}
.admin-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
}
.admin-card p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #c8c8ff;
}
.admin-card-link {
  font-size: 13px;
  color: #00ffff;
}
.admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,255,255,0.4);
  border-color: rgba(0,255,255,0.7);
}

/* Admin login */
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-card {
  max-width: 420px;
  width: 100%;
  padding: 30px 26px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(0,255,255,0.25);
  box-shadow: 0 20px 70px rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  text-align: center;
}
.admin-login-card h1 {
  font-size: 26px;
  margin-bottom: 6px;
}
.admin-login-sub {
  font-size: 13px;
  color: #ccccff;
  margin-bottom: 14px;
}
.admin-login-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,255,0.25);
  background: rgba(0,0,40,0.8);
  color: #ffffff;
}
.admin-login-form input::placeholder {
  color: #aaaaee;
}
.admin-login-btn {
  width: 100%;
  margin-top: 8px;
}
.admin-error,
.admin-success {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.admin-error {
  background: rgba(255,0,72,0.12);
  border: 1px solid #ff4e92;
  color: #ffb6d4;
}
.admin-success {
  background: rgba(0,255,120,0.12);
  border: 1px solid #18ffb0;
  color: #a8ffd7;
}

/* Simple table/utilities used in news/contact/etc. */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}
.admin-table th,
.admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.admin-table th {
  text-align: left;
  color: #b8b8ff;
}
.admin-link {
  color: #00ffff;
  text-decoration: none;
  font-size: 13px;
}
.admin-link:hover {
  text-decoration: underline;
}
.admin-danger {
  color: #ff6e9e;
}

/* Generic admin form */
.admin-form {
  max-width: 800px;
}
.admin-form label {
  display: block;
  font-size: 14px;
  margin-top: 14px;
  margin-bottom: 4px;
}
.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,255,0.25);
  background: rgba(0,0,40,0.9);
  color: #ffffff;
  font-size: 14px;
}
.admin-form textarea {
  min-height: 140px;
  resize: vertical;
}
.admin-save-btn {
  margin-top: 16px;
}

/* Small image preview */
.admin-thumb-wrap {
  margin: 8px 0 4px;
}
.admin-thumb {
  max-width: 160px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
}
