* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1d3c8c;
  --secondary: #5f2c99;
  --accent: #d4a52f;
  --bg: #f7f8fc;
  --text: #1f2937;
  --muted: #5f6b7a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(29, 60, 140, 0.12);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8ecf4;
  backdrop-filter: blur(8px);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #132c66;
}

.brand img,
.footer-brand img {
  width: 120px;
  height: 42px;
  border-radius: 5%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 600;
  color: #20335f;
  transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  border: none;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.btn-sm {
  background:#101f46;
  color: white;
  border: 2px solid #101f46;
   padding: 9px 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 12px;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #475c91,
                0 0 10px #475c91;
  }
 100%{
  box-shadow:  0 0 5px #475c91,
                0 0 10px #475c91; 
 }
}

.hero,
.page-banner {
  background: linear-gradient(rgba(10, 19, 50, 0.58), rgba(10, 19, 50, 0.58)), var(--hero-image) center/cover;
  color: var(--white);
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
}

.page-banner {
  min-height: 42vh;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  color: #e8d090;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  color: #101f46;
  line-height: 1.2;
}

.hero h1,
.page-banner h1,
.hero p {
  color: #fff;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #eef2ff;
}

.two-col,
.cards-grid,
.stats-grid,
.gallery-grid,
.timeline-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.cards-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(19, 44, 102, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary);
}

.rounded-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 300px;
  object-fit: cover;
 
}
.rounded-media-book{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.text-link {
  font-weight: 700;
  color: var(--secondary);
}

.gallery-grid img,
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item:hover img,
.preview-grid img:hover {
  transform: scale(1.06);
}

.testimonial-card {
  display: grid;
  gap: 8px;
}

.person-photo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.rating {
  color: #f3b533;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.muted {
  color: #728098;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li::before {
  content: "♪";
  color: var(--secondary);
  margin-right: 8px;
}

.contact-form,
#donationForm {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  font-weight: 600;
  color: #2f3f63;
  display: grid;
  gap: 6px;
}

input,
textarea {
  border: 1px solid #ccd5ea;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: #1f2937;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #7f95de;
  outline: none;
}
#subject{
   border: 1px solid #ccd5ea;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: #1f2937;
  background: #fff;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 10px;
  margin-top: 12px;
}

.site-footer {
  background: #111f47;
  color: #d7e1ff;
  padding: 58px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
align-items: flex-start;}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.site-footer h3,
.site-footer h4 ,.footer_p{
  color: #fff;
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.social-links {
  display: grid;
  gap: 8px;
}
 
.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(198, 212, 255, 0.2);
  padding-top: 16px;
  text-align: center;
}

.footer-bottom ul{
  list-style: none;
  display: flex;
  column-gap: 20%;
  margin-left: 15%;
  margin-bottom: 10px;
}
.music-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--secondary), var(--primary));
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 28, 0.88);
  z-index: 1500;
  animation: fadeIn 0.24s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(980px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 26px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid.three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7ebf5;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    display: none;
    padding: 8px 4%;
  }

  .site-header.active .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .section {
    padding: 64px 0;
  }

  .two-col,
  .cards-grid.two-col,
  .cards-grid.three-col,
  .stats-grid,
  .gallery-grid,
  .preview-grid,
  .timeline-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .music-toggle {
    bottom: 12px;
    right: 12px;
    font-size: 0.85rem;
  }
}

.faq_container {
  max-width: 1000px;
  margin: auto;
}
.faq_a{
   max-width: 1000px;
background: white;
  padding: 22px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(19, 44, 102, 0.247);
}

.faq_container h3 {
  font-size: 2.0rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #101f46;
  position: relative;
  letter-spacing: 0.5px;
}


.faq_container h3::after {
  content: "";
  width: 70px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq {
  background: white;
  padding: 22px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
  box-shadow: 0 8px 22px rgba(19, 44, 102, 0.247);
}

.ques{
  font-size: 1rem;
  font-weight: 300;
  color: #101f46;;
  margin-bottom: 10px;
  line-height: 1.45;
}

.ans {
  display: none;
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  max-width: 900px;
}


@media (max-width: 768px) {

  .faq {
    padding: 50px 16px 60px;
  }

  .faq_container h3 {
    font-size: 1.7rem;
    margin-bottom: 28px;
  }

  .faq_container {
    padding: 18px 18px;
  }
}
.policy__content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.policy__section {
  position: relative;
  padding: 18px 20px 18px 22px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.policy__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #101f46;
  border-radius: 2px;
}


.policy__section:hover {
  transform: translateY(-3px);
  border-color: #cbd5f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.policy__section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.policy__section h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  margin-top: 14px;
  margin-bottom: 6px;
}

.policy__section p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}

.policy__section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.policy__section li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #475569;
}

.policy__section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #101f46;
  border-radius: 50%;
  opacity: 0.6;
}

.policy__note {
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #101f46;
  background: #eef2ff;
  border-radius: 6px;
}

#contact p {
  line-height: 1.8;
}

@media (max-width: 600px) {
  .policy__content {
    margin: 40px auto;
  }

  .policy__section {
    padding: 16px;
  }
}

.policy__header {
  max-width: 760px;
  margin: 60px auto 30px;
  padding: 0 16px;
}

.policy__header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}


.policy__intro {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  max-width: 600px;
}

.policy__header::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 50px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
}


@media (max-width: 600px) {
  .policy__header {
    margin: 40px auto 20px;
  }

  .policy__header h1 {
    font-size: 1.5rem;
  }
}

.resources {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
.resources__section {
  margin-left:10px;
}
.resources__header {
  max-width: 700px;
  margin-bottom: 40px;
}

.resources__header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.resources__intro {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.resources__section {
  margin-bottom: 50px;
}

.resources__section h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px ;
  color: #0f172a;  
}
.resources__section.faq h2{
  margin-bottom: 30px ;  
 text-align: center;
}


.resources__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.resource__item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 16px 16px 18px;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.resource__item:hover {
  transform: translateY(-4px);
  border-color: #cbd5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.resource__item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #101f46;
}

.resource__item p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}


.faq {
  max-width: 1100px;
  margin: 0 auto;
}


.faq__item {
  padding: 14px ;
  width: 100%;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e2e8f0;
}
.faq__item h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}
.faq__item p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.faq__item:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  .resources {
    margin: 40px auto;
  }

  .resources__header h1 {
    font-size: 1.5rem;
  }
}
