/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  margin: 0 0 1rem 0;
  color: #8b0000;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #444;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}



/* Header Styles */
.site-header {
  background-color: #fff8db;
  border-bottom: 2px solid #ddd;
  font-family: 'Poppins', sans-serif;
}

/* First Row Styles */
.header-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.top-col {
  text-align: center;
  color: #5f5030;
}

.nav-center {
  font-size: 1.7rem;
  font-weight: bold;
  color: #8b0000;
  text-align: center;
  cursor: pointer;
}

.symbol {
  font-size: 3rem;
  color: #8b0000;
  cursor: pointer;
  text-align: center;
}

.logo img {
  height: 125px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.founder-trustees {
  text-align: center;
  color: #5f5030;
  font-size: 1rem;
  line-height: 1.4;
}

.founder-trustees strong {
  color: #8c6500;
}

/* Second Row Styles */
.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;               /*  Adds equal spacing between flex items */
  background-color: #fffaf0;
  padding: 0.8rem 1rem;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  justify-content: center;   /*  Centers horizontally */
  align-items: center;       /*  Centers vertically */
  gap: 2.5rem;               /*  THIS adds spacing between each <a> */
  text-align: center;
  font-size: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: #5f5030;
  font-weight: bold;
  transition: 0.8s ease-in;
}

.nav a:hover {
  color: #8b0000;
  text-transform: uppercase;
}

.nav a:focus {
  outline: 2px solid #8b0000;
  outline-offset: 2px;
}


/* BUTTON */
.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #f7c600;
  outline: none;
}

/* HERO SECTION */
/* NSP Intro Container */
.nsp-intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 2rem;
}

/* Text Box */
.nsp-text-box {
  background-color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  flex: 1 1 500px;
}

.nsp-text-box h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #800000;
  margin-bottom: 1.2rem;
}

.nsp-text-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.nsp-text-box strong {
  font-weight: 700;
  color: #000;
}

.nsp-text-box .cta-button {
  background-color: #ffd700;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nsp-text-box .cta-button:hover {
  background-color: #f7c600;
}

/* Logo Image Circle */
.nsp-logo-circle {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nsp-logo-circle img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .nsp-intro-container {
    flex-direction: column;
    text-align: center;
  }

  .nsp-logo-circle img {
    width: 220px;
    height: 220px;
  }
}


/* SECTION: Fullscreen Layout */
.fullscreen-section {
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Content box in center */
.content-box {
  background-color: #fff8db;
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  max-width: 900px;
  width: 100%;
  text-align: left;
  border: 1px solid #e5e5e5;
}

/* BACKGROUND COLOR VARIANTS */
.bg-red {
  background: #fff8db;
}

.bg-white {
   background: linear-gradient(90deg, #b6f025 0%, #e62319d2 100%);
}

/* BUTTON */
.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #f7c600;
  outline: none;
}

/* IMAGE DEFAULTS */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* MISSION & VISION SIDE BY SIDE */
.mission-vision-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
}

.box {
  flex: 1 1 400px;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #f18913;
}

.box h2 {
  color: #8b0000;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.box p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.box ul {
  padding-left: 1.2rem;
}

.box li {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .mission-vision-wrap {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .box {
    width: 100%;
    max-width: 600px;
  }

  .box h2 {
    font-size: 1.5rem;
  }

  .box li {
    font-size: 1rem;
  }
}


/* GURUJI SECTION */
.guruji-wrapper {
  width: 100vw;
  max-width: 1200px;
  margin: auto;
  padding: 2.5rem;
  background: #fff8db;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

.guruji-content {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
}

.guruji-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 0.5rem;
  text-align: center;
}

.guruji-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.5rem;
  text-align: center;
}

.guruji-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.guruji-content li {
  margin-bottom: 0.5rem;
  color: #444;
}

.guruji-quote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #8b0000;
  color: #555;
  background-color: #fff6f6;
  border-radius: 6px;
}

/* Prevent overflow into other sections */
.fullscreen-section {
  height: 100vh;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .guruji-wrapper {
    width: 90vw;
    padding: 1.5rem;
  }

  .guruji-title {
    font-size: 1.5rem;
  }

  .guruji-subtitle {
    font-size: 1.1rem;
  }
}




