*{
  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;
  z-index: 1;
}
/* ================= VEDIC MOVING 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); }
}

/* ===== 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; */
  }
}

/* HERO SECTION */
.au-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */

  background: url("img/performing.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #333;
  padding: 0 20px;
  text-align: center; /* center text */
}

/* CONTENT */
.au-hero-content {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.au-hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* PARAGRAPH */
.au-hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto; /* center paragraph block */
  line-height: 1.6;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .au-hero {
    min-height: 65vh;
    background-position: center;
  }

  .au-hero-content h1 {
    font-size: 30px;
  }

  .au-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .au-hero-content h1 {
    font-size: 24px;
  }

  .au-hero-content p {
    font-size: 15px;
  }
}


/* ===== OUR MISSION SECTION ===== */

.mission-section {
  padding: 40px 20px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* soft background glow */
/* .mission-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(255,122,24,0.06);
  border-radius: 50%;
  top: -120px;
  right: -120px;
} */

.mission-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Small Label */
.mission-tag {
  display: inline-block;
  background: rgba(255,122,24,0.12);
  color: #ff7a18;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}

/* Main Mission Text */
.mission-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.7;
  color: #2c1d14;
}

/* Highlight important words (optional future use) */
.mission-heading strong {
  background: linear-gradient(135deg, #ff7a18, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-section {
    padding: 80px 20px;
  }

  .mission-heading {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .mission-heading {
    font-size: 20px;
    line-height: 1.6;
  }
}

/* ===== ABOUT BRAND SECTION ===== */

.about-brand-section {
  padding: 40px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* subtle premium accent */
.about-brand-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,122,24,0.05);
  border-radius: 50%;
  bottom: -120px;
  left: -120px;
}

.about-brand-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Tag */
.about-brand-tag {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255,122,24,0.12);
  color: #ff7a18;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* Title */
.about-brand-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #2c1d14;
}

/* Paragraph */
.about-brand-text {
  font-size: 17px;
  line-height: 1.8;
  color: #5c4b3c;
  margin-bottom: 20px;
}

/* Highlighted Words */
.highlight {
  font-weight: 700;
  background: linear-gradient(135deg, #ff7a18, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .about-brand-section {
    padding: 80px 20px;
  }

  .about-brand-title {
    font-size: 26px;
  }

  .about-brand-text {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .about-brand-title {
    font-size: 22px;
  }

  .about-brand-text {
    font-size: 14px;
    line-height: 1.7;
  }
}



/* ===== WHAT SETS US APART ===== */

.apart-section {
  padding: 40px 20px;
  background: transparent;
}

.apart-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #2c1d14;
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.apart-card {
  background: #fff;
  border-radius: 26px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.45s ease;
  border: 1px solid rgba(255,122,24,0.15);
  position: relative;
  overflow: hidden;
}

/* Glow effect */
/* .apart-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,122,24,0.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: 0.4s ease;
} */

.apart-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 65px rgba(255,152,0,0.25);
}

.apart-card:hover::before {
  background: rgba(255,122,24,0.15);
}

/* Icon */
.apart-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a18, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(255,122,24,0.4);
}

.apart-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #2c1d14;
}

.apart-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c4b3c;
}

/* Responsive */
@media (max-width: 768px) {
  .apart-section {
    padding: 80px 20px;
  }

  .apart-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .apart-card {
    padding: 32px 22px;
  }
}

@media (max-width: 420px) {
  .apart-title {
    font-size: 24px;
  }

  .apart-card h3 {
    font-size: 18px;
  }

  .apart-card p {
    font-size: 14px;
  }
}
