/* Base Reset & Font */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #e6d89c;
  line-height: 1.6;
}

/* Main Container */
.jigyansa-section .container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px 40px;
  background: linear-gradient(135deg, #0a0a0a 0%, #3d2f04 100%);
  border-left: 6px solid #c4a424;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(196, 164, 36, 0.6);
}

/* Titles */
.title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #c4a424;
  margin-bottom: 0.3em;
  text-shadow: 1px 1px 3px rgba(196, 164, 36, 0.5);
  font-family: 'Georgia', serif;
}

.subtitle {
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  color: #d0bb57;
  margin-bottom: 1em;
}

.odia-quote {
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  color: #bba949;
  margin-bottom: 2em;
}

.odia-text {
  display: block;
  margin-top: 0.3em;
  font-weight: 600;
  font-family: 'Noto Sans Oriya', serif, sans-serif;
}

/* Alternating Layout */
.alt-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.alt-section.reverse {
  flex-direction: row-reverse;
}

.alt-section .text-content {
  flex: 1 1 50%;
}

.alt-section .image-content {
  flex: 1 1 40%;
}

.alt-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* Section Heading */
.section-heading {
  color: #c4a424;
  font-size: 1.8rem;
  border-bottom: 2px solid #c4a424;
  padding-bottom: 4px;
  margin-bottom: 10px;
}

/* Lists */
.activities-list,
.languages-list {
  padding-left: 20px;
  color: #e6d89c;
}

.activities-list > li {
  margin-bottom: 1em;
}

.activities-list ul {
  margin-top: 0.3em;
  margin-left: 1.2em;
  color: #d3c271;
  list-style-type: disc;
}

.languages-list {
  list-style-type: square;
  margin-left: 1em;
}

/* Student Voice Background Block */
.student-voice {
  background: url('images/student.jpg') no-repeat center center/cover;
  padding: 100px 30px;
  margin: 40px 0;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.student-voice::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  border-radius: 10px;
}

.student-voice blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  border-left: 4px solid #c4a424;
  padding-left: 20px;
  max-width: 600px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 6px;
  margin: 0 auto;
}

/* Final Quotes */
.language-tagline,
.closing-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4c46d;
  text-align: center;
  margin: 1.5em 0 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .alt-section {
    flex-direction: column;
  }
  .alt-section.reverse {
    flex-direction: column;
  }
  .title {
    font-size: 2.2rem;
  }
  .section-heading {
    font-size: 1.5rem;
  }
  .subtitle,
  .odia-quote,
  blockquote {
    font-size: 1rem;
  }
}
.about-banner {
  position: relative;
  height: 60vh;
  background: url('/images/bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.5); /* subtle dark overlay for contrast */
  z-index: 1;
}

.about-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  color: #f7c873;
  text-align: center;
  margin: 0;
}
