/* =========================================
   CBSE MANDATORY DISCLOSURE
   Uses Global Font & Global Variables
========================================= */

.cbse-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px 60px;
}

/* =========================================
   SECTION TITLE
========================================= */

.cbse-container .section-title {
  color: var(--green-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 35px 0 18px;
  padding-left: 14px;
  border-left: 6px solid var(--gold);
}

.cbse-container .section-title:first-child {
  margin-top: 0;
}

/* =========================================
   TABLE WRAPPER
========================================= */

.cbse-container .table-wrapper {
  width: 100%;
  background: var(--white);
  border: 1px solid #d8e5da;
  padding: 5px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

/* =========================================
   CBSE TABLE
========================================= */

.cbse-container .cbse-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;

  /* Font is inherited from your global body */
  font-size: 15px;
  line-height: 1.45;
}

/* =========================================
   TABLE HEADER
========================================= */

.cbse-container .cbse-table th {
  background: var(--green);
  color: var(--white);
  padding: 11px 8px;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}

/* Document table header */

.cbse-container .document-table th {
  background: var(--gold);
  color: var(--text);
}

/* =========================================
   TABLE CELLS
========================================= */

.cbse-container .cbse-table td {
  background: #f8faf8;
  border: 1px solid #d9e2db;
  padding: 9px;
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hover */

.cbse-container .cbse-table tbody tr:hover td {
  background: #eef7f0;
}

/* =========================================
   COLUMN WIDTHS
========================================= */

.cbse-container .sl-no {
  width: 80px;
  text-align: center;
}

.cbse-container .information {
  width: 42%;
}

.cbse-container .details {
  width: auto;
}

.cbse-container .document {
  width: 235px;
}

/* =========================================
   DOCUMENT LINKS
========================================= */

.cbse-container .view-link {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.cbse-container .view-link:hover {
  color: #a88400;
  text-decoration: underline;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .cbse-container {
    padding: 25px 15px 50px;
  }

  .cbse-container .section-title {
    font-size: 27px;
  }

  .cbse-container .cbse-table {
    font-size: 14px;
  }

  .cbse-container .cbse-table th {
    padding: 9px 6px;
  }

  .cbse-container .cbse-table td {
    padding: 8px 6px;
  }
}

/* =========================================
   MOBILE
   SHRINK TABLE TO FIT SCREEN
========================================= */

@media (max-width: 767px) {
  .cbse-container {
    width: 100%;
    padding: 20px 15px 40px;
  }

  .cbse-container .section-title {
    font-size: 25px;
    margin: 20px 0 15px;
    padding-left: 10px;
    border-left-width: 5px;
  }

  .cbse-container .table-wrapper {
    padding: 3px;
    overflow: hidden;
    box-shadow: none;
  }

  .cbse-container .cbse-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-spacing: 3px;
    font-size: 12px;
  }

  .cbse-container .cbse-table th {
    padding: 8px 4px;
    font-size: 11px;
    line-height: 1.3;
  }

  .cbse-container .cbse-table td {
    padding: 7px 5px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
  }

  /* -------------------------------------
       GENERAL INFORMATION TABLE
       Sl.No. = Small
       Information = Medium
       Details = Large
    ------------------------------------- */

  .cbse-container .cbse-table .sl-no {
    width: 8%;
    text-align: center;
  }

  .cbse-container .cbse-table .information {
    width: 36%;
  }

  .cbse-container .cbse-table .details {
    width: 56%;
  }

  /* -------------------------------------
       DOCUMENT TABLE
    ------------------------------------- */

  .cbse-container .document-table .sl-no {
    width: 8%;
  }

  .cbse-container .document-table .information {
    width: 62%;
  }

  .cbse-container .document-table .document {
    width: 30%;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .cbse-container {
    padding: 15px 10px 35px;
  }

  .cbse-container .section-title {
    font-size: 22px;
    margin: 18px 0 13px;
    padding-left: 8px;
    border-left-width: 4px;
  }

  .cbse-container .table-wrapper {
    padding: 2px;
  }

  .cbse-container .cbse-table {
    border-spacing: 2px;
    font-size: 11px;
  }

  .cbse-container .cbse-table th {
    padding: 7px 3px;
    font-size: 10px;
  }

  .cbse-container .cbse-table td {
    padding: 6px 4px;
    font-size: 11px;
    line-height: 1.4;
  }

  /* General Information */

  .cbse-container .cbse-table .sl-no {
    width: 8%;
  }

  .cbse-container .cbse-table .information {
    width: 36%;
  }

  .cbse-container .cbse-table .details {
    width: 56%;
  }

  /* Document Information */

  .cbse-container .document-table .sl-no {
    width: 8%;
  }

  .cbse-container .document-table .information {
    width: 62%;
  }

  .cbse-container .document-table .document {
    width: 30%;
  }
}

/* =====================================================
   CBSE HERO
   Uses existing global :root colours
   ===================================================== */

.cbse-hero {
  position: relative;
  min-height: 600px;
  width: 100%;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 77, 28, 0.58),
      rgba(0, 109, 37, 0.3),
      rgba(0, 109, 37, 0.08)
    ),
    url("/cbse/images/banner.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  overflow: hidden;
}

/* Content */

.cbse-hero-content {
  width: min(1200px, 92%);
  margin: auto;
  padding: 70px 0 110px;

  position: relative;
  z-index: 2;
}

.cbse-label {
  display: inline-block;

  padding: 10px 22px;
  margin-bottom: 20px;

  background: var(--gold);
  color: var(--green-dark);

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cbse-hero h1 {
  max-width: 700px;

  color: var(--white);

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 20px;
}

.cbse-hero h1 span {
  color: var(--gold);
}

.cbse-hero p {
  max-width: 700px;

  color: var(--white);

  font-size: 18px;
  line-height: 1.7;

  margin-bottom: 30px;
}

/* Button */

.cbse-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 13px 25px;

  background: var(--gold);
  color: var(--green-dark);

  border: 2px solid var(--gold);
  border-radius: 30px;

  text-decoration: none;
  font-weight: 700;

  transition: 0.3s ease;
}

.cbse-hero-btn:hover {
  background: transparent;
  color: var(--white);
}

/* Down arrow */

.cbse-scroll {
  position: absolute;

  left: 50%;
  bottom: 30px;

  width: 42px;
  height: 42px;

  transform: translateX(-50%);

  border: 2px solid var(--gold);
  border-radius: 50%;

  z-index: 5;

  animation: cbseArrow 1.8s infinite ease-in-out;
}

.cbse-scroll::after {
  content: "";

  position: absolute;

  width: 9px;
  height: 9px;

  left: 14px;
  top: 11px;

  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);

  transform: rotate(45deg);
}

@keyframes cbseArrow {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.cbse-scroll p {
  position: absolute;
  bottom: 48px;
  left: 50%;

  transform: translateX(-50%);

  margin: 0;
  padding: 0;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;

  white-space: nowrap;
  text-align: center;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .cbse-hero {
    min-height: 550px;

    background-image:
     /*  linear-gradient(rgba(0, 77, 28, 0.78), rgba(0, 77, 28, 0.88)), */
      rgba(0, 77, 28, 0.58), rgba(0, 109, 37, 0.3), rgba(0, 109, 37, 0.08),
      url("/cbse/images/banner.png");

    background-position: center;
  }

  .cbse-hero-content {
    width: 90%;
    padding: 60px 0 110px;
    text-align: center;
  }

  .cbse-hero h1 {
    font-size: 38px;
  }

  .cbse-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cbse-hero {
    min-height: 520px;
  }

  .cbse-hero h1 {
    font-size: 32px;
  }

  .cbse-label {
    font-size: 12px;
  }
}

/* start*/

/* =========================================================
   CBSE SCHOOL INFORMATION
   BOOTSTRAP-FREE
   Uses Existing Global Website Theme
   ========================================================= */

.cbse-info-section {
  width: 100%;
  padding: 55px 0 70px;
  background: var(--cream, #fffde0);
}

/* Main Width */

.cbse-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* =========================================================
   PAGE TITLE
   ========================================================= */

.cbse-page-title {
  position: relative;
  margin: 0 0 30px;
  padding-left: 18px;

  font-family: inherit;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;

  color: var(--green-dark, #006d25);
}

/* Gold vertical line */

.cbse-page-title::before {
  content: "";

  position: absolute;
  left: 0;
  top: 5px;

  width: 5px;
  height: calc(100% - 10px);

  background: var(--gold, #ffd000);
  border-radius: 5px;
}

/* =========================================================
   TABLE
   ========================================================= */

.cbse-table {
  width: 100%;

  background: var(--white, #ffffff);

  border: 1px solid rgba(0, 109, 37, 0.18);
  border-radius: 8px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 80, 30, 0.07);
}

/* Each Row */

.cbse-table-row {
  display: grid;

  grid-template-columns: 65px minmax(0, 1fr) 245px;

  align-items: center;

  min-height: 54px;

  border-bottom: 1px solid rgba(0, 109, 37, 0.12);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

/* Remove border from last row */

.cbse-table-row:last-child {
  border-bottom: none;
}

/* =========================================================
   TABLE HEADER
   ========================================================= */

.cbse-table-header {
  min-height: 56px;

  background: var(--green, #00852b);

  color: var(--white, #ffffff);

  font-weight: 600;
}

.cbse-table-header .cbse-number {
  color: #ffffff;
}

.cbse-table-header .cbse-details {
  color: #ffffff;
}

.cbse-table-header .cbse-action {
  color: #ffffff;
}

/* =========================================================
   NUMBER COLUMN
   ========================================================= */

.cbse-number {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--green-dark, #006d25);

  font-weight: 600;

  border-right: 1px solid rgba(0, 109, 37, 0.12);
}

/* =========================================================
   DETAILS
   ========================================================= */

.cbse-details {
  padding: 14px 18px;

  color: var(--text, #222222);

  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   VIEW COLUMN
   ========================================================= */

.cbse-action {
  height: 100%;

  display: flex;
  align-items: center;

  padding: 0 18px;

  border-left: 1px solid rgba(0, 109, 37, 0.12);
}

.cbse-action a {
  display: inline-flex;
  align-items: center;

  color: var(--green, #00852b);

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition: color 0.25s ease;
}

/* Arrow */

.cbse-action a::after {
  content: "→";

  margin-left: 7px;

  transition: transform 0.25s ease;
}

.cbse-action a:hover {
  color: var(--green-dark, #006d25);
}

.cbse-action a:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   ALTERNATE ROW
   ========================================================= */

.cbse-table-row:not(.cbse-table-header):nth-child(odd) {
  background: #f7fbf7;
}

/* =========================================================
   HOVER
   ========================================================= */

.cbse-table-row:not(.cbse-table-header):hover {
  background: #edf8ee;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .cbse-info-section {
    padding: 40px 0 50px;
  }

  .cbse-container {
    width: 94%;
  }

  /* Heading */

  .cbse-page-title {
    margin-bottom: 24px;

    font-size: 30px;
  }

  /* Remove table outer appearance */

  .cbse-table {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }

  /* Hide desktop heading */

  .cbse-table-header {
    display: none;
  }

  /* Each item becomes a card */

  .cbse-table-row:not(.cbse-table-header) {
    display: grid;

    grid-template-columns: 50px minmax(0, 1fr);

    min-height: auto;

    margin-bottom: 8px;

    background: #ffffff;

    border: 1px solid rgba(0, 109, 37, 0.12);

    border-radius: 7px;

    overflow: hidden;
  }

  /* Number */

  .cbse-table-row:not(.cbse-table-header) .cbse-number {
    grid-row: span 2;

    padding: 15px 5px;

    border-right: 1px solid rgba(0, 109, 37, 0.12);
  }

  /* Details */

  .cbse-table-row:not(.cbse-table-header) .cbse-details {
    padding: 13px 15px 5px;

    font-size: 14px;
  }

  /* View */

  .cbse-table-row:not(.cbse-table-header) .cbse-action {
    height: auto;

    padding: 0 15px 13px;

    border-left: none;
  }

  .cbse-action a {
    font-size: 13px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .cbse-info-section {
    padding: 30px 0 40px;
  }

  .cbse-page-title {
    font-size: 27px;
    padding-left: 14px;
  }

  .cbse-page-title::before {
    width: 4px;
  }

  .cbse-details {
    word-break: normal;
  }
}
``` ### Your existing global CSS remains unchanged ```css :root {
  --green: #00852b;
  --green-dark: #006d25;
  --green-card: #4c913d;
  --gold: #ffd000;
  --cream: #fffde0;
  --text: #222;
  --white: #fff;
}
```

**No Bootstrap is required anywhere.** The page uses only your existing global theme variables and custom CSS.

/* =========================================================
   CBSE ABOUT SECTION
   ========================================================= */

.cbse-about-section {
  position: relative;
  padding: 90px 20px;
  background: #fff;
  overflow: hidden;
}

.cbse-about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.cbse-about-content {
  position: relative;
}

.cbse-section-label {
  display: inline-block;
  margin-bottom: 12px;

  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cbse-about-content h2 {
  margin: 0;

  color: #222;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.cbse-about-content h2 span {
  color: var(--green);
}

.cbse-title-line {
  width: 70px;
  height: 4px;

  margin: 20px 0 25px;

  background: var(--gold);
  border-radius: 5px;
}

.cbse-about-content p {
  margin: 0 0 17px;

  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.cbse-about-content .cbse-intro {
  color: #333;
  font-size: 18px;
  line-height: 1.75;
}

.cbse-about-content strong {
  color: var(--green-dark);
}

/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.cbse-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 15px;
  padding: 13px 22px;

  background: var(--green);
  color: #fff;

  border-radius: 5px;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.cbse-read-more span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cbse-read-more:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.cbse-read-more:hover span {
  transform: translateX(5px);
}

/* ---------------------------------------------------------
   HIGHLIGHT CARDS
   --------------------------------------------------------- */

.cbse-about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cbse-highlight-card {
  padding: 28px 22px;

  background: #f8faf8;
  border: 1px solid #e3ebe3;
  border-radius: 10px;

  text-align: center;

  transition: all 0.3s ease;
}

.cbse-highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cbse-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 65px;
  height: 65px;

  margin: 0 auto 15px;

  background: var(--green);
  color: var(--gold);

  border-radius: 50%;

  font-size: 18px;
  font-weight: 700;
}

.cbse-highlight-card h3 {
  margin: 0 0 10px;

  color: var(--green-dark);
  font-size: 18px;
}

.cbse-highlight-card p {
  margin: 0;

  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .cbse-about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cbse-about-content h2 {
    font-size: 36px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .cbse-about-section {
    padding: 65px 18px;
  }

  .cbse-about-content h2 {
    font-size: 30px;
  }

  .cbse-about-content .cbse-intro {
    font-size: 16px;
  }

  .cbse-about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cbse-about-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cbse-highlight-card {
    padding: 24px 20px;
  }

  .cbse-read-more {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   VIDYODAYA - VISION & MISSION PAGE
   ========================================================= */

.vm-page {
  position: relative;
  padding: 90px 20px 100px;
  background: #fff;
  overflow: hidden;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   PAGE HEADING
   ========================================================= */

.vm-heading {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.vm-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--green);
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.vm-heading h1 {
  margin: 0;

  color: #222;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.vm-heading-line {
  width: 70px;
  height: 4px;

  margin: 18px auto 20px;

  background: var(--gold);
  border-radius: 10px;
}

.vm-heading p {
  margin: 0;

  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   VISION & MISSION GRID
   ========================================================= */

.vm-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

/* =========================================================
   CARDS
   ========================================================= */

.vm-card {
  position: relative;

  display: flex;
  gap: 25px;

  padding: 38px;

  background: #f8faf8;

  border: 1px solid #e3ebe3;
  border-radius: 12px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);

  border-color: var(--green);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   ICON
   ========================================================= */

.vm-icon {
  flex: 0 0 65px;

  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--green);

  border-radius: 50%;

  color: var(--gold);

  font-size: 24px;
  font-weight: 700;
}

.vm-card-content {
  flex: 1;
}

.vm-card-label {
  display: block;

  margin-bottom: 5px;

  color: var(--green);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vm-card h2 {
  margin: 0 0 18px;

  color: #222;

  font-size: 27px;
  line-height: 1.3;
}

.vm-card p {
  margin: 0 0 15px;

  color: #555;

  font-size: 15px;
  line-height: 1.8;
}

.vm-card p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   VISION CARD
   ========================================================= */

.vm-vision {
  border-top: 4px solid var(--green);
}

/* =========================================================
   MISSION CARD
   ========================================================= */

.vm-mission {
  border-top: 4px solid var(--gold);
}

/* =========================================================
   CORE VALUES
   ========================================================= */

.vm-values {
  margin-top: 85px;
}

.vm-values-heading {
  margin-bottom: 35px;
  text-align: center;
}

.vm-values-heading h2 {
  margin: 0;

  color: #222;

  font-size: 32px;
}

/* =========================================================
   VALUES GRID
   ========================================================= */

.vm-values-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.vm-value {
  padding: 28px 22px;

  background: #fff;

  border: 1px solid #e5e5e5;
  border-radius: 10px;

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vm-value:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vm-value-icon {
  width: 50px;
  height: 50px;

  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--green);

  border-radius: 50%;

  color: var(--gold);

  font-size: 14px;
  font-weight: 700;
}

.vm-value h3 {
  margin: 0 0 10px;

  color: var(--green-dark);

  font-size: 18px;
}

.vm-value p {
  margin: 0;

  color: #666;

  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .vm-page {
    padding: 60px 18px 70px;
  }

  .vm-heading {
    margin-bottom: 40px;
  }

  .vm-heading h1 {
    font-size: 32px;
  }

  .vm-heading p {
    font-size: 15px;
  }

  .vm-card {
    flex-direction: column;

    padding: 28px 22px;

    gap: 18px;
  }

  .vm-icon {
    width: 55px;
    height: 55px;

    flex-basis: 55px;

    font-size: 20px;
  }

  .vm-card h2 {
    font-size: 23px;
  }

  .vm-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .vm-values {
    margin-top: 60px;
  }

  .vm-values-heading h2 {
    font-size: 27px;
  }

  .vm-values-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   VIDYODAYA FOOTER
   ========================================= */

.site-footer {
  background: var(--green-dark, #006d25);
  color: #fff;
  margin-top: 60px;
}

.site-footer .footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 25px;

  display: grid !important;
  grid-template-columns: 1.1fr 1fr 1.5fr 1fr !important;
  gap: 35px;

  box-sizing: border-box;
}

.site-footer .footer-column {
  min-width: 0;
}

.site-footer .footer-column h3 {
  color: var(--gold, #ffd000);
  font-size: 20px;
  margin: 0 0 20px;
  padding-bottom: 10px;
}

.site-footer .footer-column p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Links */

.site-footer .footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-footer .footer-links li {
  margin-bottom: 9px;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.site-footer .footer-links a:hover {
  color: var(--gold, #ffd000);
}

/* MAP */

.site-footer .map-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.site-footer .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SOCIAL ICONS */

.site-footer .footer-social {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  margin-top: 20px;
}

.site-footer .footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;

  text-decoration: none;
}

.site-footer .footer-social a:hover {
  background: var(--gold, #ffd000);
  color: var(--green-dark, #006d25);
}

/* HOME BUTTON */

.site-footer .footer-home-button {
  margin-top: 20px;
}

.site-footer .footer-home-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 16px;

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;

  color: #fff;
  text-decoration: none;
}

/* FOOTER BOTTOM */

.site-footer .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
}

.site-footer .footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;

  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr !important;
    padding: 40px 20px;
  }

  .site-footer .footer-bottom-container {
    flex-direction: column !important;
    text-align: center;
    gap: 10px;
  }
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

#backToTop {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 48px;
  height: 48px;

  border: none;
  border-radius: 50%;

  background: var(--green, #00852b);
  color: #ffffff;

  font-size: 24px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  transition: all 0.3s ease;

  z-index: 9999;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--green-dark, #006d25);
  transform: translateY(-3px);
}

#backToTop {
  width: 42px;
  height: 42px;

  right: 15px;
  bottom: 15px;

  font-size: 21px;
}

/* ========================================================= CONTACT US PAGE ========================================================= */
.contact-page {
  background: #fff;
} /* PAGE BANNER */
.contact-banner {
  min-height: 280px;
  background:
    linear-gradient(rgba(0, 85, 30, 0.72), rgba(0, 85, 30, 0.72)),
    url("/cbse/images/banner.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-banner-overlay {
  color: #fff;
  padding: 40px 20px;
}
.contact-banner h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
}
.contact-banner p {
  margin: 0;
  font-size: 18px;
} /* CONTACT SECTION */
.contact-section {
  padding: 70px 20px;
}
.contact-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
} /* CONTACT INFORMATION */
.section-label {
  color: var(--green, #00852b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
.contact-info h2 {
  color: var(--green-dark, #006d25);
  font-size: 34px;
  margin: 10px 0 15px;
}
.contact-intro {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
} /* CONTACT ITEM */
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green, #00852b);
  color: var(--gold, #ffd000);
  border-radius: 50%;
  font-size: 18px;
}
.contact-item h3 {
  margin: 0 0 5px;
  color: #333;
  font-size: 17px;
}
.contact-item p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.contact-item a {
  color: var(--green, #00852b);
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--green-dark, #006d25);
} /* MAP */
.contact-map h2 {
  color: var(--green-dark, #006d25);
  font-size: 28px;
  margin: 0 0 18px;
}
.map-wrapper {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
} /* DIRECTIONS BUTTON */
.map-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--green, #00852b);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s ease;
}
.map-button:hover {
  background: var(--green-dark, #006d25);
  transform: translateY(-2px);
} /* BOTTOM MESSAGE */
.contact-message {
  background: #f5f8f3;
  padding: 55px 20px;
  text-align: center;
  border-top: 1px solid #e2e8df;
}
.contact-message-inner {
  max-width: 800px;
  margin: auto;
}
.contact-message h2 {
  color: var(--green-dark, #006d25);
  font-size: 28px;
  margin: 0 0 12px;
}
.contact-message p {
  color: #555;
  font-size: 16px;
  margin: 0;
} /* ========================================================= MOBILE ========================================================= */
@media (max-width: 800px) {
  .contact-banner {
    min-height: 220px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-section {
    padding: 50px 18px;
  }
  .map-wrapper {
    height: 350px;
  }
}
@media (max-width: 500px) {
  .contact-banner h1 {
    font-size: 38px;
  }
  .contact-banner p {
    font-size: 16px;
  }
  .contact-info h2 {
    font-size: 28px;
  }
  .map-wrapper {
    height: 300px;
  }
}

/* =========================================================
   CONTACT US PAGE
   ========================================================= */

.contact-page {
  background: #fff;
}

/* PAGE BANNER */

.contact-banner {
  min-height: 280px;

  background:
    linear-gradient(rgba(0, 85, 30, 0.72), rgba(0, 85, 30, 0.72)),
    url("/cbse/images/banner.jpg");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.contact-banner-overlay {
  color: #fff;
  padding: 40px 20px;
}

.contact-banner h1 {
  margin: 0 0 10px;

  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
}

.contact-banner p {
  margin: 0;

  font-size: 18px;
}

/* CONTACT SECTION */

.contact-section {
  padding: 70px 20px;
}

.contact-container {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;

  gap: 60px;
}

/* CONTACT INFORMATION */

.section-label {
  color: var(--green, #00852b);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;
}

.contact-info h2 {
  color: var(--green-dark, #006d25);

  font-size: 34px;
  margin: 10px 0 15px;
}

.contact-intro {
  color: #555;

  font-size: 16px;
  line-height: 1.8;

  margin-bottom: 30px;
}

/* CONTACT ITEM */

.contact-item {
  display: flex;

  gap: 18px;

  margin-bottom: 25px;
}

.contact-icon {
  flex-shrink: 0;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--green, #00852b);

  color: var(--gold, #ffd000);

  border-radius: 50%;

  font-size: 18px;
}

.contact-item h3 {
  margin: 0 0 5px;

  color: #333;

  font-size: 17px;
}

.contact-item p {
  margin: 0;

  color: #555;

  font-size: 15px;

  line-height: 1.7;
}

.contact-item a {
  color: var(--green, #00852b);

  text-decoration: none;
}

.contact-item a:hover {
  color: var(--green-dark, #006d25);
}

/* MAP */

.contact-map h2 {
  color: var(--green-dark, #006d25);

  font-size: 28px;

  margin: 0 0 18px;
}

.map-wrapper {
  width: 100%;
  height: 430px;

  overflow: hidden;

  border-radius: 10px;

  border: 1px solid #ddd;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

/* DIRECTIONS BUTTON */

.map-button {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  margin-top: 18px;

  padding: 12px 22px;

  background: var(--green, #00852b);

  color: #fff;

  text-decoration: none;

  border-radius: 5px;

  font-weight: 600;

  transition: 0.3s ease;
}

.map-button:hover {
  background: var(--green-dark, #006d25);

  transform: translateY(-2px);
}

/* BOTTOM MESSAGE */

.contact-message {
  background: #f5f8f3;

  padding: 55px 20px;

  text-align: center;

  border-top: 1px solid #e2e8df;
}

.contact-message-inner {
  max-width: 800px;
  margin: auto;
}

.contact-message h2 {
  color: var(--green-dark, #006d25);

  font-size: 28px;

  margin: 0 0 12px;
}

.contact-message p {
  color: #555;

  font-size: 16px;

  margin: 0;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {
  .contact-banner {
    min-height: 220px;
  }

  .contact-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .contact-section {
    padding: 50px 18px;
  }

  .map-wrapper {
    height: 350px;
  }
}

@media (max-width: 500px) {
  .contact-banner h1 {
    font-size: 38px;
  }

  .contact-banner p {
    font-size: 16px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* =========================================================
   VIDYODAYA - HISTORY PAGE
   ========================================================= */

.history-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 85, 32, 0.82), rgba(0, 85, 32, 0.82)),
    url("/cbse/images/banner.jpg") center/cover no-repeat;
  color: #fff;
}

.history-hero-content {
  max-width: 850px;
  padding: 40px 20px;
}

.history-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 1px;
}

.history-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.history-section {
  padding: 70px 20px;
  background: #fff;
}

.history-container {
  max-width: 1100px;
  margin: auto;
}

.history-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.history-intro h2 {
  color: var(--green-dark, #006d25);
  font-size: 34px;
  margin-bottom: 18px;
}

.history-intro h2::after {
  content: "";
  display: block;
  width: 65px;
  height: 4px;
  background: var(--gold, #ffd000);
  margin: 14px auto 0;
  border-radius: 5px;
}

.history-intro p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* Timeline */

.history-timeline {
  position: relative;
  margin: 0 auto;
  padding: 10px 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #d7e6d9;
  transform: translateX(-50%);
}

.history-item {
  position: relative;
  width: 50%;
  padding: 0 45px 50px;
}

.history-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.history-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.history-dot {
  position: absolute;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--green, #00852b);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #d7e6d9;
  z-index: 2;
}

.history-item:nth-child(odd) .history-dot {
  right: -9px;
}

.history-item:nth-child(even) .history-dot {
  left: -9px;
}

.history-card {
  background: #f8fbf8;
  border-radius: 12px;
  padding: 28px 30px;
  border-left: 4px solid var(--green, #00852b);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.history-item:nth-child(odd) .history-card {
  border-left: 0;
  border-right: 4px solid var(--green, #00852b);
}

.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history-year {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 15px;
  background: var(--green, #00852b);
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.history-card h3 {
  color: var(--green-dark, #006d25);
  margin: 0 0 12px;
  font-size: 22px;
}

.history-card p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0;
}

/* Founder section */

.founder-message {
  margin-top: 30px;
  padding: 35px;
  background: #fffde0;
  border-top: 4px solid var(--gold, #ffd000);
  border-radius: 10px;
  text-align: center;
}

.founder-message p {
  margin: 0;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
}

/* Closing section */

.history-closing {
  padding: 65px 20px;
  background: var(--green-dark, #006d25);
  color: #fff;
  text-align: center;
}

.history-closing-content {
  max-width: 900px;
  margin: auto;
}

.history-closing h2 {
  margin: 0 0 18px;
  font-size: 34px;
}

.history-closing p {
  margin: 0;
  line-height: 1.9;
  font-size: 17px;
}

/* Mobile */

@media (max-width: 768px) {
  .history-hero {
    min-height: 280px;
  }

  .history-hero h1 {
    font-size: 40px;
  }

  .history-hero p {
    font-size: 16px;
  }

  .history-section {
    padding: 50px 15px;
  }

  .history-intro {
    margin-bottom: 40px;
  }

  .history-intro h2 {
    font-size: 28px;
  }

  .history-timeline::before {
    left: 12px;
  }

  .history-item,
  .history-item:nth-child(even),
  .history-item:nth-child(odd) {
    width: 100%;
    left: 0;
    padding: 0 0 35px 40px;
    text-align: left;
  }

  .history-item:nth-child(odd) .history-card {
    border-right: 0;
    border-left: 4px solid var(--green, #00852b);
  }

  .history-dot,
  .history-item:nth-child(odd) .history-dot,
  .history-item:nth-child(even) .history-dot {
    left: 3px;
    right: auto;
  }

  .history-card {
    padding: 22px 20px;
  }

  .history-card h3 {
    font-size: 20px;
  }

  .history-card p {
    font-size: 15px;
  }

  .history-closing {
    padding: 50px 20px;
  }

  .history-closing h2 {
    font-size: 28px;
  }

  .history-closing p {
    font-size: 16px;
  }
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */

.about-hero {
  height: 330px;

  background:
    linear-gradient(rgba(0, 82, 28, 0.72), rgba(0, 82, 28, 0.72)),
    url("/cbse/images/banner.jpg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  color: #fff;
}

.about-hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
}

.about-hero-content p {
  margin-top: 8px;
  font-size: 20px;
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading span {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--green-dark);
  font-size: 38px;
}

/* =========================================================
   HISTORY
   ========================================================= */

.about-history {
  max-width: 1050px;
  margin: auto;
  padding: 75px 25px 65px;
}

.history-text {
  max-width: 900px;
  margin: auto;
}

.history-text p {
  margin: 0 0 18px;
  color: #444;
  font-size: 17px;
  line-height: 1.85;
  text-align: justify;
}

.history-text p:first-child {
  font-size: 18px;
}

.history-text strong {
  color: var(--green-dark);
}

/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-section {
  max-width: 1150px;
  margin: auto;
  padding: 65px 25px 85px;
}

.leaders-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* =========================================================
   LEADER CARD
   ========================================================= */

.leader-card {
  background: #fff;
  overflow: hidden;
  border-radius: 18px;
  border-top: 5px solid var(--green);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* PHOTO AT TOP */

.leader-photo {
  width: 100%;
  height: 430px;
  background: #f3f3f3;
  overflow: hidden;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center top;
}

/* NAME + DESIGNATION */

.leader-details {
  padding: 22px 20px 25px;
  text-align: center;
}

.leader-details h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 26px;
  font-weight: 700;
}

.leader-details p {
  margin: 6px 0 0;
  color: #777;
  font-size: 16px;
  font-weight: 600;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .about-hero {
    height: 260px;
  }

  .about-hero-content h1 {
    font-size: 44px;
  }

  .about-hero-content p {
    font-size: 17px;
  }

  .about-history {
    padding: 55px 20px 45px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .history-text p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .leaders-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .leadership-section {
    padding: 45px 20px 60px;
  }

  .leader-photo {
    height: 380px;
  }

  .leader-details h3 {
    font-size: 23px;
  }
}
/* =========================================================
   EXPLORE HISTORY BUTTON
   ========================================================= */

.history-button {
  text-align: center;
  margin-top: 30px;
}

.history-button a {
  display: inline-block;
  padding: 13px 28px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.history-button a:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.history-button a::after {
  content: " →";
  margin-left: 5px;
}

/* =========================================================
   CAMPUS PAGE
   ========================================================= */

.campus-page {
  background: #f7faf6;
  padding-bottom: 70px;
}

/* HERO */

.campus-hero {
  background:
    linear-gradient(rgba(0, 85, 30, 0.82), rgba(0, 85, 30, 0.82)),
    url("/cbse/images/banner.jpg") center/cover no-repeat;

  min-height: 300px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  padding: 50px 20px;
}

.campus-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 700;
}

.campus-hero p {
  margin: 12px 0 0;
  font-size: 18px;
}

/* INTRO */

.campus-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 35px;
  text-align: center;
}

.campus-intro h2 {
  margin: 0 0 12px;
  color: #006d25;
  font-size: 32px;
}

.campus-intro h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #ffd000;
  margin: 12px auto;
}

.campus-intro p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* GALLERY */

.campus-gallery {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */

.campus-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.campus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

/* IMAGE */

.campus-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
}

.campus-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.4s ease;
}

.campus-card:hover .campus-photo img {
  transform: scale(1.05);
}

/* ZOOM ICON */

.zoom-icon {
  position: absolute;

  right: 15px;
  bottom: 15px;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 19px;

  opacity: 0;

  transition: 0.25s ease;
}

.campus-card:hover .zoom-icon {
  opacity: 1;
}

/* CAPTION */

.campus-caption {
  padding: 17px 18px 19px;

  color: #006d25;

  font-size: 17px;

  font-weight: 600;

  text-align: center;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.campus-lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.94);

  z-index: 99999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 30px;
}

.campus-lightbox.active {
  display: flex;
}

/* IMAGE AREA */

.lightbox-content {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  position: relative;

  overflow: hidden;
}

.lightbox-image {
  max-width: 90%;
  max-height: 82%;

  object-fit: contain;

  transition: transform 0.25s ease;

  user-select: none;
}

/* CLOSE */

.lightbox-close {
  position: fixed;

  top: 20px;
  right: 25px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  font-size: 28px;

  cursor: pointer;

  z-index: 10;
}

.lightbox-close:hover {
  background: #00852b;
}

/* PREVIOUS / NEXT */

.lightbox-nav {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  width: 52px;
  height: 52px;

  border: none;

  border-radius: 50%;

  background: #00852b;

  color: #fff;

  font-size: 30px;

  cursor: pointer;

  z-index: 10;
}

.lightbox-nav:hover {
  background: #ffd000;
  color: #006d25;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

/* TOOLBAR */

.lightbox-toolbar {
  position: fixed;

  bottom: 25px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 8px;

  z-index: 10;
}

.lightbox-toolbar button {
  width: 43px;
  height: 40px;

  border: 1px solid rgba(255, 255, 255, 0.5);

  background: rgba(0, 0, 0, 0.6);

  color: #fff;

  border-radius: 7px;

  cursor: pointer;

  font-size: 18px;
}

.lightbox-toolbar button:hover {
  background: #00852b;
}

/* COUNTER */

.lightbox-counter {
  color: #fff;

  font-size: 14px;

  margin-left: 8px;
  margin-right: 8px;

  white-space: nowrap;
}

/* CAPTION */

.lightbox-caption {
  position: fixed;

  bottom: 78px;

  left: 50%;

  transform: translateX(-50%);

  color: #fff;

  font-size: 17px;

  text-align: center;

  max-width: 80%;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .campus-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .campus-hero {
    min-height: 440px;
  }

  .campus-hero h1 {
    font-size: 40px;
  }

  .campus-hero p {
    font-size: 15px;
  }

  .campus-intro {
    padding: 35px 18px 25px;
  }

  .campus-intro h2 {
    font-size: 27px;
  }

  .campus-gallery {
    grid-template-columns: 1fr;
    padding: 0 14px;
    gap: 20px;
  }

  .campus-photo {
    height: 440px;
  }

  .zoom-icon {
    opacity: 1;
  }

  .lightbox-image {
    max-width: 94%;
    max-height: 75%;
  }

  .lightbox-nav {
    width: 43px;
    height: 43px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    bottom: 85px;
    font-size: 15px;
    max-width: 85%;
  }
}

/* ================================
   CO-SCHOLASTIC PAGE
================================ */

.coscholastic-page {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text, #222);
  background: #fff;
}

/* Hero */
.coscholastic-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(0, 82, 32, 0.78), rgba(0, 82, 32, 0.78)),
    url("/cbse/images/banner.jpg") center/cover no-repeat;
  color: #fff;
}

.coscholastic-hero-content {
  max-width: 900px;
  padding: 60px 20px;
}

.coscholastic-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 15px;
  font-weight: 700;
}

.coscholastic-hero h1 span {
  color: var(--gold, #ffd000);
}

.coscholastic-hero p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 760px;
}

/* Introduction */
.coscholastic-intro {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px 40px;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--green, #00852b);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.coscholastic-intro h2 {
  color: var(--green-dark, #006d25);
  font-size: 34px;
  margin: 5px 0 20px;
}

.coscholastic-intro h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gold, #ffd000);
  margin: 15px auto 0;
  border-radius: 5px;
}

.coscholastic-intro p {
  max-width: 900px;
  margin: 25px auto 0;
  line-height: 1.8;
  font-size: 17px;
  color: #555;
}

/* Activities */
.activities-section {
  background: #f7faf5;
  padding: 65px 20px 75px;
}

.activities-container {
  max-width: 1200px;
  margin: auto;
}

.activities-heading {
  text-align: center;
  margin-bottom: 40px;
}

.activities-heading h2 {
  color: var(--green-dark, #006d25);
  font-size: 34px;
  margin: 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Cards */
.activity-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--green, #00852b);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.activity-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eaf5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.activity-card h3 {
  color: var(--green-dark, #006d25);
  margin: 0 0 12px;
  font-size: 21px;
}

.activity-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* Highlight */
.coscholastic-highlight {
  max-width: 1100px;
  margin: 70px auto;
  padding: 45px 35px;
  background: var(--green-dark, #006d25);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coscholastic-highlight::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -70px;
  left: -50px;
}

.coscholastic-highlight h2 {
  color: var(--gold, #ffd000);
  margin: 0 0 15px;
  font-size: 30px;
}

.coscholastic-highlight p {
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  font-size: 17px;
}

/* Gallery */
.coscholastic-gallery {
  max-width: 1200px;
  margin: 0 auto 75px;
  padding: 0 20px;
}

.coscholastic-gallery h2 {
  text-align: center;
  color: var(--green-dark, #006d25);
  font-size: 34px;
  margin-bottom: 35px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .coscholastic-hero {
    min-height: 300px;
  }

  .coscholastic-hero p {
    font-size: 16px;
  }

  .coscholastic-intro {
    padding-top: 50px;
  }

  .activities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    padding: 25px 20px;
  }

  .coscholastic-highlight {
    margin: 45px 20px;
    padding: 35px 22px;
  }
}
/******** */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card h3 {
  color: var(--green-dark, #006d25);
  font-size: 20px;
  margin: 18px 20px 8px;
  text-align: center;
}

.gallery-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 20px 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.explore-gallery {
  text-align: center;
  margin: 45px 0 20px;
}

.explore-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--green, #00852b);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.explore-gallery-btn span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.explore-gallery-btn:hover {
  background: var(--green-dark, #006d25);
  transform: translateY(-2px);
}

.explore-gallery-btn:hover span {
  transform: translateX(5px);
}
