

               /* About Section */
    
         body {
    font-family: Georgia, serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0px;
  }


        /* Section heading style with horizontal lines */
  .section-header {
    text-align: center;
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 1.8rem;
    color: #4a4a4a;
    margin: 40px 0 30px 0;
    position: relative;
  }
  .section-header::before,
  .section-header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #7a7a7a;
  }
  .section-header::before {
    left: 0;
  }
  .section-header::after {
    right: 0;
  }

  /* Paragraph text */
  .intro-text {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #222;
  }

  /* Content grid with two columns */
  .content-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  /* Distinctives */
  .distinctives {
    flex: 1;
    font-family: Arial, sans-serif;
  }
  .distinctives h3 {
    font-family: Georgia, serif;
    font-weight: normal;
    color: #4a4a4a;
    margin-bottom: 10px;
  }
  .distinctives ul {
    padding-left: 20px;
    margin-top: 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .distinctives ul li {
    margin-bottom: 10px;
  }

  /* Mission */
  .mission {
    flex: 0.6;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #222;
  }
  .mission h4 {
    font-family: Georgia, serif;
    font-weight: normal;
    color: #4a4a4a;
    margin-bottom: 10px;
  }

  /* Bottom section header */
  .bottom-header {
    text-align: center;
    font-family: Georgia, serif;
    font-weight: normal;
    font-size: 1.8rem;
    color: #4a4a4a;
    margin: 60px 0 20px 0;
    position: relative;
  }
  .bottom-header::before,
  .bottom-header::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #7a7a7a;
  }
  .bottom-header::before {
    left: 0;
  }
  .bottom-header::after {
    right: 0;
  }
         
         /* vision Section */
        .vision-hero {
            background: var(--primary);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
        }

        .vision-hero h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        .vision-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        .vision-section {
            margin-bottom: 3rem;
        }

        .vision-section h2 {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .vision-section p {
            color: var(--muted-foreground);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .value-card {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid var(--border);
        }

        .value-card h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--muted-foreground);
        }

       /* list*/
    .inspire-list {
        list-style: none;
        max-width: 1000px;
        margin: 3rem auto;
        padding: 0;
        display: grid;
        gap: 1.2rem;
        font-family: "Segoe UI", Tahoma, sans-serif;
    }

    .inspire-list li {
        background: linear-gradient(135deg, #ffffff, #f8fafc);
        padding: 1.1rem 1.5rem;
        border-radius: 0.9rem;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
        font-size: 1.05rem;
        color: #1f2937;
        text-align: center;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .inspire-list li::before {
        content: "✦";
        color: #facc15;
        font-size: 1.1rem;
        position: absolute;
        left: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .inspire-list li:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    }

    @media (max-width: 600px) {
        .inspire-list li {
            font-size: 1rem;
            padding: 1rem 1.2rem;
        }
    }
/*list*/

/* Navbar & Footer Styles */
.top-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15rem;
  margin: 1rem 0;
  background: rgba(140, 170, 190, 0.85);
  padding: 20px 40px;
  font-family: Georgia, serif;
}

.nav-link {
  color: #1e3a8a;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-center {
  color: #1e3a8a;
  font-size: 26px;
  font-weight: bold;
  pointer-events: none;
  text-align: center;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .top-div {
    flex-direction: column;
    gap: 1rem;
    padding: 15px;
  }

  .nav-link,
  .nav-center {
    font-size: 22px;
  }
}
