*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  color:#333;
  position: relative;
  font-family:'Poppins',sans-serif;
  background: transparent;
}

/* ============================= */
/* MOVING VEDIC BACKGROUND */
/* ============================= */

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:url('img/vedic.jpeg') center/cover no-repeat;
opacity:0.08;
z-index:-1;
animation:moveBg 60s linear infinite;
pointer-events:none;
}

/* ANIMATION */

@keyframes moveBg{
0%{ transform:scale(1) translate(0,0); }
50%{ transform:scale(1.05) translate(-20px,-20px); }
100%{ transform:scale(1) translate(0,0); }
}
:root {
  --primary-color: #ff7a18;
  --primary-soft: rgba(255, 122, 24, 0.12);
  --bg-light: #fff7ed;
  --text-dark: #2c1d14;
  --text-muted: #6d5b4b;
  --border-light: #f1e2d4;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ===== BREADCRUMB ===== */
.au-breadcrumb {
  background: #fffaf3;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 122, 24, 0.15);
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6d5b4b;
  flex-wrap: wrap;
}

.breadcrumb-list a {
  text-decoration: none;
  color: #ff7a18;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #bfa48a;
  font-size: 12px;
}

.breadcrumb-current {
  color: #2c1d14;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .breadcrumb-list {
    font-size: 13px;
    gap: 6px;
    /* row-gap: 6px; */
  }
}

.pg-blog {
  padding: 80px 20px;
  background: transparent;
}

/* HERO */
.blog-hero {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeUp 1s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.blog-hero h1 {
  font-size: 42px;
  margin: 12px 0;
  font-weight: 700;
}

.blog-hero p {
  color: var(--text-muted);
  font-size: 17px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* SEARCH */
.blog-search-wrap {
  max-width: 520px;
  margin: 0 auto 45px;
  position: relative;
}

.blog-search-wrap input {
  width: 100%;
  padding: 16px 22px;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  font-size: 15px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.blog-search-wrap input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

/* LAYOUT */
.blog-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CATEGORIES */
.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.blog-categories button {
  border: 1px solid var(--border-light);
  padding: 10px 18px;
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.blog-categories button:hover {
  background: var(--primary-soft);
  border-color: var(--primary-color);
}

.blog-categories .active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* BLOG LIST */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.blog-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:all .4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.blog-card.show {
  opacity: 1;
  transform: translateY(0);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 18px;
}
.blog-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
}
.blog-content h3 {
  margin: 10px 0;
  font-size: 18px;
}
.blog-content p {
  color: var(--text-muted);
  font-size: 14px;
}
.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

/* SIDEBAR */
.blog-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  margin-top: 65px;
}
.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 25px;
  border: 1px solid #ff7a18;
}
.sidebar-box h4 {
  margin-bottom: 10px;
}
.highlight {
  background: var(--primary-soft);
}
.subscribe-form input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
}
.subscribe-form button {
  width: 100%;
  padding: 10px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}

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