@font-face {
  font-family: 'OrangeAvenue';
  src: url('font/OrangeAvenueDEMO-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* PAGE LAYOUT FIX */
html, body {
    min-height: 100%;
}
body{
overflow-x:hidden;
overflow-y:auto;
}
body {
    display: flex;
    flex-direction: column;
    background: #fdf8f3;
    color: #4b2e1e;
}

main {
    flex: 1;
    margin-top: 120px;
}


.top-bar {
    background:#f7bd60;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #000000;

    position: fixed;
    overflow:hidden;

    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
/* progress line inside top bar */

.topbar-progress{
position:absolute;
bottom:0;
left:0;

height:2.5px;
width:0%;

background:#915d0f;

box-shadow:
0 0 6px rgba(242,210,155,0.8),
0 0 12px rgba(242,210,155,0.6);

transition:width 0.08s linear;
}

header {
    background: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 32px; /* below top bar */
    left: 0;
    width: 100%;
    z-index: 999;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    transition: padding 0.3s ease;
}
header.shrink {
    padding: 4px 40px; /* reduced height */
}


.header-left {
    display: flex;
    align-items: center;
}

.header-left img {

width: 120px;
height: auto;

margin-right: 18px;

filter:
drop-shadow(0 8px 16px rgba(0,0,0,0.28))
;

transform: translateY(-4px);

transition: width 0.35s ease, transform 0.35s ease;

}
.header.scrolled .header-left img {

width: 95px;

transform: translateY(0);

}


.header-left h1 {
    font-size: 2.0rem;
    font-weight: 700;
    transition: font-size 0.3s ease;
}

header.shrink .header-left h1 {
    font-size: 1.3rem;
}
/* Normal header */
.header {
  padding: 18px 40px;
  transition: padding 0.3s ease;
}

/* Header after scroll */
.header.scrolled {
  padding: 6px 40px;   /* 🔥 THIS makes it shrink more */
}

.menu-toggle{
display:none;
}
/* NAV */

nav a, nav button {
    margin-left: 18px;
    text-decoration: none;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #4b2e1e;
}
nav a.active,
.dropdown-btn.active {
  color: #c89b5c;
  font-weight: 600;
}

.dropdown-btn.active {
  position: relative;
}

.dropdown-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #c89b5c;
}

/* ================================
   DROPDOWN MENU – ABSOLUTE FINAL FIX
================================ */

.dropdown {
    position: relative;
}

/* DROPDOWN CONTAINER */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;
    background: #ffffff;

    /* HARD RESET */
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;

    overflow: hidden; /* 🔑 CLIP EVERYTHING */

    box-shadow: 0 12px 30px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);

    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1000;
}

/* SHOW */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEMS */
.dropdown-content a {
    display: flex;              /* 🔑 fills full width */
    width: 100% !important;

    padding: 14px 22px;
    margin: 0 !important;

    background: transparent;
    border-radius: 0 !important;

    color: #4b2e1e;
    text-decoration: none;
    font-weight: 500;

    box-sizing: border-box;

    transition: background-color 0.35s ease;
}

/* HOVER — FULL WIDTH GUARANTEED */
.dropdown-content a:hover {
    background-color: #f3e6d6;
}




/* SECTIONS */
.section {
    padding: 70px 80px;
    text-align: center;
}

/* Common section heading with side lines */
.section-heading {
  position: relative;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #4a2c17;
  margin-bottom: 18px;
}

/* Left & Right lines */
.section-heading::before,
.section-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 2px;
  background-color: #d2b48c;
}

/* Left line */
.section-heading::before {
  left: 0;
}

/* Right line */
.section-heading::after {
  right: 0;
}


/* FOOTER (NOW ALWAYS AT BOTTOM) */
footer {
    background: #4b2e1e;
    color: white;
    text-align: center;
    padding: 15px;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    height: 150px;
    background: #ead7c0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.hero {
    padding: 100px 20px;
}
/* ================================
   HOMEPAGE ALIGNMENT FIX
================================ */

/* HERO CENTERING */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* WELCOME SECTION CENTER */
.home-center {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* DIRECTOR & PRINCIPAL DESK CENTERING */
.home-desk {
    justify-content: center;
    text-align: left;
    max-width: 1000px;
    margin: 60px auto;
}

.home-desk .photo-box {
    margin-right: 30px;
}
/* ================================
   DROPDOWN BUTTON (ARROW ANIMATION)
================================ */

.dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #4b2e1e;
    font-size: 1rem;

    transition: color 0.25s ease;
}

/* Optional: change text color on hover */
.dropdown:hover .dropdown-btn {
    color: #000;
}
/* ================================
   MAIN HEADER NAV – FORCE HORIZONTAL
   (Fix vertical menu issue)
================================ */

header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Top-level nav items only */
header nav > a,
header nav > .dropdown > button {
    display: inline-flex;
    align-items: center;
}
/* ================================
   SCHOOL ADDRESS (HEADER)
================================ */

.school-text {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.school-address {
    font-size: 0.75rem;        /* small font */
    color: #6b4a32;
    margin-top: 2px;
    line-height: 1.3;
}
.header.scrolled .school-text {
  transform: translateY(10px);
}

.header.scrolled .school-address {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* ================================
   FLOATING BACKGROUND SHAPES
================================ */

.bg-shape {
    position: absolute;
    background: #d9d9d9;
    opacity: 0.45;
    z-index: 0;
}


.pentagon {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #fffdfd;
    opacity: 0.35;

    clip-path: polygon(
        50% 0%,
        100% 38%,
        82% 100%,
        18% 100%,
        0% 38%
    );

    pointer-events: none;
}




/* Ensure text stays above shapes */
.welcome-section h2,
.welcome-section p {
    position: relative;
    z-index: 1;
}
/* ================================
   HOME LINKS / CONTACT SECTION
================================ */

.home-links {
    background-color: #ffd071;   /* soft yellow */
    padding: 30px 0;
}

.home-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side */
.home-links-left h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #2e3a46;
}

.home-links-left p {
    margin: 6px 0;
    color: #2e3a46;
    line-height: 1.6;
}

/* Right side (social icons) */
.home-links-right a {
    font-size: 1.4rem;
    margin-left: 22px;
    color: #2e3a46;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.home-links-right a:hover {
    transform: translateY(-4px);
    color: #000;
}
.home-links-right a:nth-child(1):hover { color: #1877f2; } /* Facebook */
.home-links-right a:nth-child(2):hover { color: #e1306c; } /* Instagram */
.home-links-right a:nth-child(3):hover { color: #ea4335; } /* Maps */
/* ================================
   GOOGLE MAP SECTION (REFINED)
================================ */

.map-section {
    background: #ffd071;
    padding: 25px 0;   /* 🔥 reduced from 70px */
}


.map-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;   /* 🔥 reduced gap */
}



/* Map iframe refined */
.map-container iframe {
    width: 360px;        /* reduced width */
    height: 300px;       /* reduced height */
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
    align-items: flex-start;
}
/* Map heading */
.map-heading {
    font-size: 1.2rem;   /* smaller */
    font-weight: 600;
    color: #3a2a1a;
    margin-bottom: 10px;
}
/* ================================
   DIRECTOR'S DESK SECTION
================================ */

.director-section {
    padding: 60px 0;
    background: #fffaf3;
}

.director-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    gap: 40px;
}

.director-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.director-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #3a2a1a;
}

.director-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a3a2a;
}

.director-image img:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.director-name {
    margin-top: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3a2a1a;
    text-align: center;
}

.director-designation {
    display: block;
    font-size: 0.9rem;
    font-style: italic;
    color: #6b4f3a;
    margin-top: 2px;
    text-align: center;
}
/* ================================
   FADE-IN ON SCROLL ANIMATION
================================ */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================
   DIRECTOR – SMOOTH LUXURY HOVER
================================== */

/* ==================================
   DIRECTOR ANGLED SLIDE HOVER
================================== */

.director-section {
  position: relative;
  overflow: hidden;
}

/* Sliding overlay */
.director-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2d1608 0%, #5a2e0c 45%, #8c5a1e 100%);
  transform: translateX(98%) rotate(0deg);
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}

/* Slide in */
.director-section:hover::before {
  transform: translateX(0%) rotate(0deg);
}

/* Keep content above */
.director-container {
  position: relative;
  z-index: 2;
  transition: color 0.6s ease;
}

/* Text color change */
.director-section:hover h3,
.director-section:hover p,
.director-section:hover span {
  color: #fffdfc;
}

/* Image smooth lift */
.director-section img {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  border-radius: 50%;
}

.director-section:hover img {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/* ================================
   PRINCIPAL'S DESK SECTION
================================ */

.principal-section {
    padding: 60px 0;
    background: #fffaf3;
}

.principal-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    gap: 40px;
}

/* Text */
.principal-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #3a2a1a;
}

.principal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a3a2a;
}

/* Image */
.principal-image {
    text-align: center;
}

.principal-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.principal-image img:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.principal-name {
    margin-top: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3a2a1a;
}

.principal-designation {
    display: block;
    font-size: 0.9rem;
    font-style: italic;
    color: #6b4f3a;
    margin-top: 2px;
}
/* ==================================
   PRINCIPAL – OPPOSITE SLIDE HOVER
================================== */

.principal-section {
  position: relative;
  overflow: hidden;
}

/* Opposite sliding overlay */
.principal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2d1608 0%, #5a2e0c 45%, #8c5a1e 100%); /* SAME colors */
  transform: translateX(-98%); /* OPPOSITE direction */
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}

/* Slide in from left */
.principal-section:hover::before {
  transform: translateX(0%);
}

/* Keep content above overlay */
.principal-container {
  position: relative;
  z-index: 2;
}

/* Text color change */
.principal-section:hover h3,
.principal-section:hover p,
.principal-section:hover span {
  color: #fffdfc;
}

/* Image lift effect (same as director) */
.principal-section img {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  border-radius: 50%;
}

.principal-section:hover img {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/* ================================
   EDUCATION WITH VALUES
================================ */

.values-section {
    padding: 100px 40px;
    text-align: center;
    background: #d2c3ae;
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #3a2a1a;
}

/* .values-tagline {
    font-size: 1.05rem;
    color: #6b4f3a;
    margin-bottom: 50px;
    font-style: italic;
} */
/* Increase space below the subtitle */
.values-subtitle {
  margin-bottom: 25px; /* increase this if needed */
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-box {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-box h4 {
    margin-bottom: 10px;
    color: #3a2a1a;
    font-size: 1.1rem;
}

.value-box p {
    font-size: 0.95rem;
    color: #4a3a2a;
    line-height: 1.6;
}
/* Value icon */
.value-icon {
    font-size: 2rem;
    color: #c49a6c;
    margin-bottom: 16px;
}

/* Value box hover effect */


/* Value card base */
.value-box {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: 
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Hover background like dropdown */
.value-box:hover {
    background: #d9d9d9; /* same family as dropdown hover */
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* Fancy animated title */
.fancy-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-weight: 700;
}

/* Text stays above lines */
.fancy-title span {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* Left & right lines */
.fancy-title::before,
.fancy-title::after {
    content: "";
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #c49a6c,
        transparent
    );
    width: 0;
    opacity: 0;
    animation: growLine 1.4s ease-out forwards;
}

/* Left line */
.fancy-title::before {
    animation-delay: 0.1s;
}

/* Right line */
.fancy-title::after {
    animation-delay: 0.1s;
}

/* Animation */
@keyframes growLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}
@media (min-width: 1200px) {
    .fancy-title::before,
    .fancy-title::after {
        width: 160px;
    }
}
.section-subtitle {
    margin-bottom: 60px; /* increase space */
}
/* Facilities Section */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4b2e1f;
}
/* remove side lines ONLY for facilities heading */
.no-line::before,
.no-line::after {
  display: none !important;
}


.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #6b4a35;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;

  max-width: 1200px;
  margin: 70px auto 0;
  padding: 0 40px;

  align-items: stretch;
}







/* Facility Card */
.facility-card {
  background: #ffffff;
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  box-shadow: 0 12px 30px rgba(60,42,26,0.08);
  display: flex;
  flex-direction: column;
  height: auto;            /* ADD THIS */
  align-self: start;       /* ADD THIS */
  border: 1px solid rgba(180,150,110,0.12);
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #e5d3bd, #c49a6c) border-box;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(60,42,26,0.10);
}


/* Image */
.facility-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}


/* Content */
.facility-content {
    padding: 24px 22px 28px;
    text-align: center;
}

.facility-content i {
    font-size: 26px;
    color: #c49a6c;
    margin-bottom: 12px;
}
.facility-content h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #3a2a1f;
  margin-top: 8px;
}

.facility-content a {
  font-size: 13px;
  font-weight: 600;
  color: #b07a47;
  transition: color 0.3s ease;
}

.facility-content a:hover {
  color: #8a5a2f;
}


.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(60,42,26,0.12);
}

/* wipe container */
.wipe-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

/* the wipe layer */
.wipe-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120%;
  height: 100%;
  background: #c9a46b; /* SAME as section background */
  animation: wipeReveal 4.5s ease-in-out infinite;
}

/* wipe animation */
@keyframes wipeReveal {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}


#facilities-section {
  position: relative;
  min-height: 600px; /* IMPORTANT */
  padding: 80px 0;
  background: #d9b576; /* fallback color */
  overflow: hidden;
  isolation: isolate; /* CRITICAL */
}
.facilities-content {
  position: relative;
  z-index: 2; /* keeps content above animation */
}
#facilities-section canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 1 !important;
  pointer-events: none; /* VERY IMPORTANT */
}
.facilities-title {
  display: flex;
  justify-content: center;
  align-items: baseline;   /* keeps text on same baseline */
  gap: 5px;
  color: #3b2414;
  font-size: 42px;
  font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.08);

  white-space: nowrap;     /* absolutely no wrapping */
}


/* School */
.school-text {
  font-family: "OrangeAvenue", sans-serif;
  color: #4b2e1f;
  margin-right: 10px;
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
}

/* Facilities wrapper */
.facilities-text {
  position: relative;
  display: inline-flex;
  font-family: "OrangeAvenue", sans-serif;
  color: #9d6334;
  font-weight: 900;
  align-items: baseline;
  position: relative;
}

/* Actual text */
.facilities-inner {
    position: relative;
  display: inline-block;
  font-family: "OrangeAvenue", sans-serif;
  animation: textWipe 4s infinite ease-in-out;
}

/* Thin wipe line */
.wipe-line {
  position: absolute;
  top: 0.10em;
  left: calc(100% + 2em);
  width: 2px;
  height: 0.9em;
  background: #b3834a;
  border-radius: 2px;
  animation: lineSweep 4s infinite ease-in-out;
}




/* TEXT WIPE (not block) */
@keyframes textWipe {
  0%   { clip-path: inset(0 0 0 0); }
  25%  { clip-path: inset(0 100% 0 0); }
  40%  { clip-path: inset(0 100% 0 0); }
  65%  { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

/* LINE MOTION */
@keyframes lineSweep {
  0%   { left: 100%; }
  25%  { left: 0%; }
  40%  { left: 0%; }
  65%  { left: 100%; }
  100% { left: 100%; }
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
/* ================================
   ADMISSIONS SECTION
================================ */

.admission-section {
  background: linear-gradient(135deg, #fff3e3, #f5e2c8);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.admission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
  pointer-events: none;
}

.admission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.admission-left {
  flex: 1;
}

.admission-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.admission-highlight {
  color: #3a2a1a;
  font-weight: 700;
  display: block;
  opacity: 0;
  transform: translateY(25px);
}

.admission-year {
  color: #9d6334;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  opacity: 0;
  transform: translateY(25px);
}

.admission-subtext {
  font-size: 1.05rem;
  color: #5a3d28;
  margin-bottom: 30px;
  line-height: 1.7;
}

.admission-details {
  margin-bottom: 35px;
  line-height: 1.8;
  color: #4b2e1e;
  font-weight: 500;
}

.admission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.admission-item i {
  font-size: 18px;
  color: #c49a6c;
  min-width: 22px;
}

.admission-item:hover {
  transform: translateX(6px);
}

/* RIGHT SIDE */
.admission-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

#admission-animation {
  width: 320px;
  height: 320px;
  animation: floatAnimation 5s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Reveal Animations */

.admission-highlight {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #3a2a1a 0%,
    #3a2a1a 40%,
    #efebe6 50%,
    #3a2a1a 60%,
    #3a2a1a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Keep reveal animation */
.admission-section.active .admission-highlight {
  animation:
    fadeSlideUp 0.8s ease forwards,
    gradientFlow 4s linear 1s infinite;
}

/* Moving gold wave */
@keyframes gradientFlow {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}



.admission-section.active .admission-year {
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* LOOP ONLY FOR "Admission Open !" */

@keyframes headingPulse {
  0%, 100% {
    color: #3a2a1a;
  }
  50% {
    color: #c49a6c;
  }
}


/* Underline animation */

.admission-underline {
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #c49a6c, transparent);
  margin: 18px 0 30px 0;
  border-radius: 3px;
}

.admission-section.active .admission-underline {
  animation: underlineGrow 1.2s ease forwards;
  animation-delay: 0.6s;
}

@keyframes underlineGrow {
  from { width: 0; opacity: 0; }
  to { width: 120px; opacity: 1; }
}

/* ================================
   ADMISSION BUTTONS
================================ */

.admission-buttons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.enquire-btn {
  background: linear-gradient(135deg, #c49a6c, #9d6334);
  color: #fff;
  box-shadow: 0 8px 20px rgba(157, 99, 52, 0.25);
}

.enquire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(157, 99, 52, 0.35);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #1ebd5a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Button Shine */

.admission-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
  0% { left: -120%; }
  50% { left: 130%; }
  100% { left: 130%; }
}

/* ================================
   DESK HEADING HOVER EFFECT
================================ */

.director-content h3,
.principal-content h3 {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Underline animation */
.director-content h3::after,
.principal-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffaf5a;
  transition: width 0.3s ease;
}

/* Activate heading hover when whole section is hovered */
.director-section:hover .director-content h3 {
  color: #ffffff;
  transform: translateY(-3px);
}

.director-section:hover .director-content h3::after {
  width: 100%;
}

/* PRINCIPAL – SAME UNDERLINE EFFECT */
.principal-section:hover .principal-content h3 {
  color: #ffffff;
  transform: translateY(-3px);
}

.principal-section:hover .principal-content h3::after {
  width: 100%;
}
/* ================================
   WELCOME SECTION – FINAL CLEAN
================================ */

.welcome-section {
    position: relative;
    max-width: 1300px;      /* 🔥 wider = more rectangular */
    margin: 60px auto;
    padding: 50px 70px;     /* 🔥 less height */
    background: linear-gradient(
  135deg,
  #f8f4ee 25%,
  #f1e7d8 50%,
  #fdc065 100%
);


    border: 1.2px solid rgba(196,154,108,0.5);
    border-radius: 6px;

    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);

    transition: all 0.6s ease;

}

/* FLEX LAYOUT */
.welcome-section .welcome-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Animation */
.welcome-animation {
    flex: 0 0 280px;
     transform: translateY(-10px);
}

#welcome-lottie {
    width: 340px;
    height: 340px;

    transform: translateY(-10px) scale(1.05);
}
#welcome-lottie {
    animation: floatBoy 4s ease-in-out infinite;
}

@keyframes floatBoy {
    0%, 100% { transform: translateY(-8px); }
    50% { transform: translateY(-18px); }
}


/* Text */
.welcome-content {
    flex: 1;
}

/* PREMIUM TYPOGRAPHY */
.welcome-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2f1f14; /* deeper premium brown */
    margin-bottom: 22px;

    letter-spacing: 0.5px;
    line-height: 1.3;

    text-align: center;   /* force clean alignment */
    width: 100%;
}
.welcome-content h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 18px auto 0;

    background: linear-gradient(to right, #cc8942, transparent);
    border-radius: 2px;
}


.welcome-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #4a2c1a;

    max-width: 720px;
    margin: 0 auto;

    font-weight: 400;
    letter-spacing: 0.2px;
}
.welcome-content b {
    color: #8c5a2b;
}

.welcome-section {
    opacity: 0;
    transform: translateY(40px);
}

.welcome-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}


/* ================================
   ADMISSION PAGE
================================ */

/* =========================
   ADMISSION HERO PREMIUM
========================= */

.admission-hero {
  position: relative;
  padding: 120px 20px 70px;
  text-align: center;
  background: linear-gradient(135deg, #f3e7d8, #e6d3b8);
  overflow: hidden;
}

/* Floating light overlay */
.admission-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,108,0.2), transparent 70%);
  top: -200px;
  right: -150px;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(20px); }
  100% { transform: translateY(0); }
}

.admission-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.admission-badge {
  display: inline-block;
  background: #c49a6c;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Heading */
.admission-hero h1 {
  font-size: 54px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Highlight year */
.year-highlight {
  color: #feaf5b;
  position: relative;
}

/* Underline animation */
.hero-underline {
  width: 120px;
  height: 3px;
  background: #c49a6c;
  margin: 0 auto 25px;
  animation: expandLine 1.2s ease forwards;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 120px; }
}

/* Paragraph */
.admission-hero p {
  font-size: 18px;
  color: #ffebdb;
  line-height: 1.7;
  margin-bottom: 35px;
}




/* =============================
   Admission Enquiry Section
============================= */

.admission-enquiry-section {
  padding: 60px 20px;   /* reduced from 100px */
  background: #f8f5f2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* FORM BOX */
.enquiry-form-box {
  flex: 1.2;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}


.enquiry-form-box h2 {
  text-align: left;
  margin-bottom: 25px;
  font-size: 24px;
  color: #4b2e1f;
}

.enquiry-form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.enquiry-form-box form .full-width {
  grid-column: 1 / -1;
}


/* Inputs smaller */
.enquiry-form-box input,
.enquiry-form-box select,
.enquiry-form-box textarea {
  padding: 10px 12px;   /* smaller */
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.enquiry-form-box textarea {
  height: 90px;   /* fixed height */
  resize: none;
}

.enquiry-form-box input:focus,
.enquiry-form-box select:focus,
.enquiry-form-box textarea:focus {
  border-color: #c49a6c;
}

/* Button */
.enquiry-form-box button {
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #c49a6c, #a87142);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}/* =========================
   FORM BOX
========================= */

.enquiry-form-box {
  flex: 1.2;
  background: #ffffff;
  padding: 45px 50px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* CENTER HEADING */
.enquiry-form-box h2 {
  margin-bottom: 35px;
  color: #4b2e1f;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.5px;
}

/* 2 COLUMN GRID */
.enquiry-form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.enquiry-form-box label {
  font-size: 14px;
  font-weight: 500;
  color: #4b2e1f;
  display: block;
  margin-bottom: 6px;
}

/* INPUTS */
.enquiry-form-box input,
.enquiry-form-box select,
.enquiry-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2d8cf;
  background: #faf8f6;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* PROPER SELECT WIDTH */
.enquiry-form-box select {
  width: 100%;
}

/* BIGGER TEXTAREA */
.enquiry-form-box textarea {
  min-height: 120px;
  resize: none;
}

/* FOCUS */
.enquiry-form-box input:focus,
.enquiry-form-box select:focus,
.enquiry-form-box textarea:focus {
  border-color: #c49a6c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196,154,108,0.1);
  outline: none;
}

/* FULL WIDTH ROWS */
.full-width {
  grid-column: 1 / -1;
}

/* BUTTON */
.submit-btn {
  padding: 16px;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


/* ANIMATION SIDE */
.enquiry-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enquiry-animation lottie-player {
  width: 100%;
  max-width: 500px;   /* increased */
}


/* =========================
   SHINE EFFECT (Looping)
========================= */

.shine-effect {
  position: relative;
  overflow: hidden;
}

/* Shine layer */
.shine-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% { left: -75%; }
  100% { left: 125%; }
}
/* =========================
   Fade In Animation
========================= */

.fade-in-form {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==============================
   PREMIUM ANIMATED ADMISSION HERO
============================== */

.admission-hero {
  position: relative;
  padding: 140px 20px 100px;
  text-align: center;
  background: linear-gradient(145deg, #2d1608 0%, #5a2e0c 45%, #8c5a1e 100%);
  overflow: hidden;
}

/* MAIN CONTENT ABOVE ANIMATION */
.admission-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: auto;
}

/* ==============================
   BACKGROUND ANIMATION LAYER
============================== */

.hero-bg-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Floating gold circles */
.hero-bg-animation::before,
.hero-bg-animation::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,108,0.35), transparent 70%);
  animation: floatCircle 12s ease-in-out infinite alternate;
}

.hero-bg-animation::before {
  top: -120px;
  left: -120px;
}

.hero-bg-animation::after {
  bottom: -120px;
  right: -120px;
  animation-delay: 5s;
}

/* Floating animation */
@keyframes floatCircle {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px,40px); }
}


/* ==============================
   ENHANCED FLOATING ICONS
============================== */

.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-icons i {
  position: absolute;
  color: rgba(255, 244, 232, 0.35);   /* darker & more visible */
  animation: floatIcons 18s ease-in-out infinite alternate;
}

/* Bigger Primary Icons */
.floating-icons i:nth-child(1) {
  top: 15%;
  left: 8%;
  font-size: 70px;
}

.floating-icons i:nth-child(2) {
  top: 60%;
  left: 18%;
  font-size: 60px;
}

.floating-icons i:nth-child(3) {
  top: 25%;
  right: 12%;
  font-size: 75px;
}

.floating-icons i:nth-child(4) {
  bottom: 15%;
  right: 20%;
  font-size: 65px;
}

/* Smaller Depth Icons */
.floating-icons i:nth-child(5) {
  top: 40%;
  left: 45%;
  font-size: 40px;
  opacity: 0.50;
}

.floating-icons i:nth-child(6) {
  bottom: 30%;
  left: 30%;
  font-size: 35px;
  opacity: 0.25;
}

.floating-icons i:nth-child(7) {
  top: 10%;
  right: 35%;
  font-size: 45px;
  opacity: 0.3;
}

/* Floating Motion */
@keyframes floatIcons {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-40px) rotate(8deg);
  }
}
/* Button Loading State */
.submit-btn {
  position: relative;
  overflow: hidden;
}

/* Loader Spinner */
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ==============================
   PREMIUM ADMISSION PROCESS
============================== */

.admission-process-section {
  padding: 120px 20px;
  background: #fdfaf6;
  text-align: center;
  overflow: hidden;
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

.process-title {
  font-size: 38px;
  font-weight: 700;
  color: #3e2a1f;
  margin-bottom: 12px;
}

.process-subtitle {
  font-size: 16px;
  color: #6b4a35;
  margin-bottom: 70px;
}

/* STEPS GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;

  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

/* Fade Up Animation */
.process-steps.active {
  opacity: 1;
  transform: translateY(0);
}

/* CLEAN CONNECTING LINE (No animation) */
.process-steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #c49a6c, #a87442);
  z-index: 0;
}

/* STEP CARD */
.process-step {
  position: relative;
  z-index: 1;
}

/* ICON CIRCLE */
.step-circle {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  color: white;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

/* Glow on reveal */
.process-steps.active .step-circle {
  box-shadow: 0 0 20px rgba(196,154,108,0.6);
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #3e2a1f;
}

.process-step p {
  font-size: 14px;
  color: #6b4a35;
  line-height: 1.6;
}

/* Hover Effect */
.process-step:hover .step-circle {
  transform: scale(1.1);
}



/* =========================
   GLOBAL SCROLL REVEAL
========================= */

.reveal-section {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal-section.active {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   FORM SLIDE UP ANIMATION
========================= */

.enquiry-form-box {
  transform: translateY(80px);
  opacity: 0;
  transition: all 1.2s ease;
}

.enquiry-form-box.active {
  transform: translateY(0);
  opacity: 1;
}


/* =========================
   WHY CHOOSE SECTION CLEAN
========================= */

.why-choose-section {
  position: relative;
  padding: 120px 20px;
  background: #f8f5f2; /* clean soft beige */
  overflow: hidden;
  text-align: center;
}





/* ===============================
   CONTENT ABOVE MESH
================================ */

.why-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #3e2a1f;
  margin-bottom: 10px;
}

.why-header span {
  color: #c49a6c;
}

.why-header p {
  font-size: 16px;
  color: #6b4a35;
  margin-bottom: 70px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* ICON */
.why-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  color: white;
  font-size: 26px;
  transition: 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(196,154,108,0.5);
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #3e2a1f;
}

.why-card p {
  font-size: 14px;
  color: #6b4a35;
  line-height: 1.6;
}


/* ==================================
   PREMIUM DARK LUXURY STATS
================================== */

.premium-stats-section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;

  background: linear-gradient(135deg, #2c1b12, #3a2418, #1f120b);
  color: #f5e6d8;
}

/* Soft radial glow */
.premium-stats-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(196,154,108,0.15), transparent 70%);
  top: -200px;
  left: -200px;
  filter: blur(80px);
  z-index: 0;
}

/* Floating particles */
.premium-stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(247, 247, 247) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: moveParticles 60s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

@keyframes moveParticles {
  from { background-position: 0 0; }
  to { background-position: 400px 400px; }
}

.premium-stats-container {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =========================
   HEADING
========================= */

.premium-stats-section h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(45deg, #f6f6f6, #fbfaf9);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  animation: shineText 6s linear infinite;
}

@keyframes shineText {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.stats-subtitle {
  font-size: 18px;
  color: #fcfcfc;
  margin-bottom: 100px;
}

/* =========================
   GRID
========================= */

.premium-stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* =========================
   STAT ITEM
========================= */

.premium-stat {
  flex: 1;
  position: relative;
  transition: 0.4s ease;
}

.premium-stat:hover {
  transform: translateY(-10px);
}

/* Vertical divider */
.premium-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 35%;
  height: 140px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196,154,108,0.4),
    transparent
  );
}

/* =========================
   ICON STYLE
========================= */

.stat-icon {
  font-size: 70px;
  color: #c49a6c;
  margin-bottom: 20px;
  transition: 0.4s ease;
  
}

.premium-stat:hover .stat-icon {
  transform: scale(1.2);
  color: #f5d1a4;
}

/* =========================
   NUMBERS
========================= */

.premium-stat h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: #ffffff;
 
}

.premium-stat h3::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #ede2d7;
  margin: 16px auto 0;
  opacity: 0.7;
}

.premium-stat p {
  font-size: 18px;
  color: #ffffff;
}


/* ======================================
   TESTIMONIALS – FROM SCRATCH
====================================== */

.testimonials-section {
  padding: 120px 60px;
  background: radial-gradient(circle at 20% 30%, #ffffff 0%, #ddd9d9 40%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle glow overlay */
.testimonials-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.testimonials-container {
  max-width: 1300px;
  margin: auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  font-size: 56px;
  font-weight: 700;
  color: #3a2416;
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
}



.testimonials-header p {
  font-size: 18px;
  color: #6b4a35;
}

.testimonial-card {
  display: flex;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  height: 420px; /* reduced from 480 */
}
.testimonial-left {
  flex: 1.1; /* slightly bigger */
  background: #d9c1a5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#testimonial-lottie {
  width: 460px;
  height: 460px;
  transform: translateY(35px); /* pushes it to touch bottom */
}

/* RIGHT SIDE */

.testimonial-right {
  flex: 1.2;
  padding: 70px 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  filter: blur(6px);
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  position: relative;
}
.stars {
  color: #c49a6c;
  font-size: 25px;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(196,154,108,0.4);
}

.testimonial-item p {
  font-size: 21px;
  line-height: 1.7;
  color: #2f1f14;
  margin-bottom: 30px;
}

.testimonial-item span {
  font-weight: 600;
  color: #9d6334;
}
.testimonial-right {
  flex: 1.2;
  padding: 70px 80px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #fdfaf7, #ffffff);
}
/* DOTS */

.testimonial-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}

.testimonial-dots span {
  width: 9px;
  height: 9px;
  background: rgba(100,60,30,0.3);
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  background: #c49a6c;
  transform: scale(1.3);
}
/* =========================
   3D PARALLAX EFFECT
========================= */

.testimonial-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* ==============================
   LIFE AT SCHOOL SECTION
============================== */

.school-life-section {
  padding: 80px 60px;
  background: #fdfaf6;
  text-align: center;
}

.life-container {
  max-width: 1300px;
  margin: auto;
}

.life-header h2 {
  font-size: 55px;
  font-weight: 700;
  color: #3e2a1f;
  margin-bottom: 15px;
}

.life-header p {
  font-size: 16px;
  color: #6b4a35;
  max-width: 700px;
  margin: 0 auto 70px;
}

/* GRID */

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */

.life-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.life-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;

  will-change: transform;
  transform: translateZ(0);
}
.life-card:hover img {
  transform: scale3d(1.08,1.08,1);
}
.school-life-section {
  contain: layout style;
}
/* Overlay */

.life-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    transparent
  );
  color: white;
  text-align: left;
}

.life-overlay h4 {
  font-size: 20px;
  font-weight: 600;
}

/* Hover lift */

.life-card:hover {
  transform: translate3d(0,-10px,0);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}


/* ==============================
   MEDIA GALLERY PREVIEW SECTION
============================== */

.media-gallery-section {
  padding: 120px 60px;
  background: white;
  text-align: center;
  position: relative;
}

.media-gallery-container {
  max-width: 1300px;
  margin: auto;
}

.media-gallery-header h2 {
  font-size: 52px;
  font-weight: 700;
  color: #3e2a1f;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.media-gallery-header h2::after {
  content: "";
  width: 80%;
  height: 2px;
  background: #c49a6c;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2px;
  border-radius: 2px;
}
.media-gallery-header p {
  font-size: 16px;
  color: #472f1f;
  margin-bottom: 50px;
}

/* GRID */
.media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 10px;
}

/* MEDIA ITEM */
.media-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  background:#f3f3f3;
  cursor:pointer;

  transform:translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  box-shadow:
    0 6px 16px rgba(0,0,0,0.06);

  will-change:transform;
}

/* Big top-left image */
.media-item.large {
  grid-row: span 2;
}

/* Bottom wide image (spans 2 columns only) */
.media-item.wide-bottom {
  grid-row: span 1;
}

/* Images & Videos */
.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover */
.media-item:hover{

  transform:translateY(-8px);



}
.media-item:hover img{
  transform:scale(1.04);
  filter:brightness(1.10);
}
.media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-item:hover::after {
  opacity: 1;
}


/* Button */
.media-gallery-btn {
  margin-top: 70px;
}

.media-gallery-btn a {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 50px;
  background: #3e2a1f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(62,42,31,0.2);
}

.media-gallery-btn a:hover {
  background: #c49a6c;
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(196,154,108,0.3);
}
.media-grid {
  perspective: 1000px;
}


/* gallery reveal animation */

.media-item{
  opacity:0;
  transform:translateY(30px);
  transition:transform 0.6s ease, opacity 0.6s ease;
}

.media-item.gallery-visible{
  opacity:1;
  transform:translateY(0);
}

/* subtle hover */

.media-item img{
  transition:transform 0.5s ease, filter 0.4s ease;
}

.media-item:hover img{
  transform:scale(1.05);
  filter:brightness(1.05);
}

/* =========================
   FAQ SECTION
========================= */

/* ==============================
   PREMIUM FAQ SECTION
============================== */

.faq-section{
  padding:110px 20px;
  background:linear-gradient(180deg,#f9e9d6,#ffffff);
}

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-header{
  text-align:center;
  margin-bottom:70px;
}

.faq-header h2{
  font-size:52px;
  font-weight:700;
  color:#3e2a1f;
  margin-bottom:10px;
}

.faq-header p{
  font-size:16px;
  color:#6b4a35;
}

/* FAQ Item */

.faq-item{
  background:#ffffff;
  border-radius:14px;
  margin-bottom:18px;
  overflow:hidden;
  box-shadow:0 5px 18px rgba(0,0,0,0.06);
  transition:all 0.3s ease;
}

/* Hover premium effect */

.faq-item:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

/* Question */

.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 26px;
  font-size:19px;
  font-weight:600;
  cursor:pointer;
  color:#3e2a1f;
}

/* Icon */

.faq-icon{
  font-size:22px;
  transition:transform 0.35s ease;
}

/* Rotate when active */

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* Answer */

.faq-answer{
  height:0;
  overflow:hidden;
  padding:0 26px;
  transition:height 0.35s ease, padding 0.35s ease;
  line-height:1.8;
  color:#3c1a05;
  font-size:16px;
}


/* Premium accent animation */

.faq-item{
  position:relative;
}

/* left accent line */

.faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0;
  background:#c49a6c;
  border-radius:14px 0 0 14px;
  transition:width 0.35s ease;
}

/* show line on hover */

.faq-item:hover::before{
  width:6px;
}

/* stronger when open */

.faq-item.active::before{
  width:10px;
}

/* ==============================
   FAQ CONTACT CTA
============================== */

.faq-contact{
  text-align:center;
  margin-top:60px;
}

.faq-contact p{
  font-size:22px;
  font-weight:600;
  color:#3e2a1f;
  margin-bottom:8px;
}

.faq-contact span{
  display:block;
  font-size:15px;
  color:#6b4a35;
  margin-bottom:22px;
}

.faq-contact-btn a{
  display:inline-block;
  padding:12px 32px;
  border-radius:40px;
  border:2px solid #c49a6c;
  background:#482f14;
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
}

.faq-contact-btn a:hover{
  background:#c49a6c;
  color:white;
  transform:translateY(-2px);
}
/* ==============================
FAQ STAGGER ANIMATION
============================== */

.faq-item{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

/* odd items slide from left */

.faq-item:nth-child(odd){
  transform:translateX(-40px);
}

/* even items slide from right */

.faq-item:nth-child(even){
  transform:translateX(40px);
}

/* when visible */

.faq-item.faq-visible{
  opacity:1;
  transform:translateX(0) translateY(0);
}

/* ====================================
   PREMIUM SCHOOL FOOTER
==================================== */
.school-footer{

position:relative;
overflow:hidden;

background:linear-gradient(
135deg,
#3a2816,
#2b1a10
);
border-top:1px solid rgba(255,255,255,0.08);
color:#f3e7db;

padding:100px 0 0;
width:100%;

}


/* subtle golden glow */

.school-footer::before{

content:"";
position:absolute;

right:-200px;
bottom:-200px;

width:700px;
height:700px;

background:radial-gradient(
circle,
rgba(196,154,108,0.18),
transparent 70%
);

filter:blur(80px);

pointer-events:none;

}
.school-footer::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:1px;

background:linear-gradient(
90deg,
transparent,
rgba(196,154,108,0.7),
transparent
);

}

/* watermark logo */

.school-footer::after{

content:"";

position:absolute;

right:-100px;
bottom:-350px;

width:1200px;
height:1200px;

background:url("logo.webp") no-repeat center;

background-size:contain;

opacity:0.045;

filter:grayscale(100%) contrast(150%);

pointer-events:none;

}



/* =========================
   FOOTER GRID
========================= */

.footer-wrapper{

max-width:1300px;
margin:auto;

padding:0 40px 80px;

display:grid;
grid-template-columns:2fr 1fr 1.2fr 1.4fr;

gap:70px;

position:relative;
z-index:2;

}



/* =========================
   FOOTER BRAND AREA
========================= */

.footer-brand{
max-width:340px;
display:flex;
flex-direction:column;
align-items:flex-start;


}

/* School name */

.footer-brand h3{

font-size:30px;
font-weight:600;

letter-spacing:0.3px;

margin-bottom:1px;
margin-left: 50px;
color:#ffffff;

}

/* Motto */

.footer-motto{

font-size:14.5px;

font-weight:500;

color:#c49a6c;

letter-spacing:0.4px;

line-height:1.4;

margin-top:6px;

margin-bottom:10px;
margin-left: 35px;
font-style:italic;

}


/* =========================
   PREMIUM SOCIAL ICONS
========================= */

.footer-social{

display:flex;

align-items:center;

gap:30px;

margin-top:40px;
margin-left: 135px;

}

.footer-social a{

font-size:20px;

color:#e3d4c3;

transition:all .25s ease;

}

.footer-social a:hover{

color:#c49a6c;

transform:translateY(-2px);

}

/* hover animation */
s
.footer-social a:hover{

color:#c49a6c;

transform:translateY(-3px) scale(1.1);

text-shadow:0 0 12px rgba(173, 145, 114, 0.425);

}

.footer-social a:hover::after{

width:100%;

}


/* =========================
   QUICK LINKS
========================= */

.footer-links h4{

font-size:19px;
font-weight:600;

margin-bottom:20px;

letter-spacing:0.5px;

color:#ffffff;

}

.footer-links ul{

list-style:none;

}

.footer-links li{

margin-bottom:13px;

}

.footer-links a{

font-size:15px;

text-decoration:none;

color:#e7d7c7;

transition:.3s;

}

.footer-links a:hover{

color:#c49a6c;

padding-left:6px;

}



/* =========================
   CONTACT AREA
========================= */

.footer-contact h4{

font-size:19px;
font-weight:600;

margin-bottom:20px;

letter-spacing:0.5px;
color: white;

}

.footer-contact p{

display:flex;
gap:10px;

margin-bottom:14px;

font-size:15px;

color:#e7d7c7;

}

.footer-contact i{

color:#c49a6c;

}



/* enquiry button */

.footer-btn{

display:inline-block;

margin-top:16px;

padding:13px 30px;

border-radius:40px;

background:linear-gradient(
135deg,
#c49a6c,
#a87442
);

color:white;

text-decoration:none;

font-weight:600;

font-size:15px;

transition:.35s;

}

.footer-btn:hover{

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(0,0,0,0.3);

}



/* =========================
   MAP
========================= */

.footer-map h4{

font-size:19px;
font-weight:600;

margin-bottom:20px;
color: white;
}

.footer-map iframe{

width:100%;
height:190px;

border:0;
border-radius:14px;

box-shadow:0 12px 30px rgba(0,0,0,0.25);

}

.footer-map iframe{

border-radius:16px;

box-shadow:0 20px 40px rgba(0,0,0,0.35);

border:1px solid rgba(255,255,255,0.08);

}

/* =========================
   FOOTER BOTTOM BAR
========================= */

.footer-bottom{

padding:22px;

text-align:center;

font-size:14px;

color:#e6d7c7;

letter-spacing:0.4px;

background:rgba(0,0,0,0.35);

border-top:1px solid rgba(255,255,255,0.05);

}





/* depth transition between page and footer */

.school-footer{

position:relative;

box-shadow:
0 -40px 60px rgba(0,0,0,0.25);

}
.school-footer::before{

content:"";

position:absolute;

top:-80px;
left:0;

width:100%;
height:80px;

background:linear-gradient(
to bottom,
transparent,
rgba(58,36,22,0.85),
#3a2416
);

pointer-events:none;

}
/* footer logo */

.footer-logo{

width:150px;

margin-bottom:20px;
margin-left: 109px;
filter:brightness(1.1);
filter:drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
/* affiliation number */

.footer-affiliation{

font-size:13px;

font-weight:500;

letter-spacing:0.6px;

color:#d7b489;

margin-top:3px;
margin-bottom:10px;
margin-left: 95px;
}
.footer-affiliation::after{

content:"";

display:block;

width:180px;
height:1px;

background:#ffffff;

margin:30px auto 12px;

opacity:0.7;

}

/* ===============================
   FLOATING ENQUIRE BUTTON
================================ */

.floating-enquire{

position:fixed;
bottom:30px;
right:30px;

display:flex;
align-items:center;
gap:8px;

background:linear-gradient(135deg,#c99a5c,#e0b676);
color:#3a2416;

font-weight:600;
font-size:14px;

padding:14px 24px;
border-radius:40px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,0.25);

z-index:3000;

transition:all 0.35s ease;

opacity:0;
transform:translateY(40px);
pointer-events:none;
}

/* show state */

.floating-enquire.show{
opacity:1;
transform:translateY(0);
pointer-events:auto;
}

/* hover */

.floating-enquire:hover{
transform:translateY(-4px);
box-shadow:0 14px 30px rgba(0,0,0,0.35);
}

/* ===============================
   FLOATING WHATSAPP BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 6px 18px rgba(37, 211, 102, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 10px 28px rgba(37, 211, 102, 0.5));
}

/* Icon circle */
.whatsapp-float-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c44);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  flex-shrink: 0;
  position: relative;
}

/* Pulse ring */
.whatsapp-float-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 1; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

/* Tooltip label */
.whatsapp-float-label {
  background: #fff;
  color: #128c44;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 16px 7px 14px;
  border-radius: 20px;
  margin-left: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 18px;
  }
  .whatsapp-float-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .whatsapp-float-label {
    display: none;
  }
}

/* ===============================
   ADMISSION BADGE
================================ */

.enquire-badge{

position:absolute;

top:-14px;
right:18px;

background:#8b5a1e;
color:#fff;

font-size:11px;
font-weight:600;

padding:4px 12px;

border-radius:20px;

white-space:nowrap;   /* keeps text in one line */

letter-spacing:0.3px;

box-shadow:0 4px 10px rgba(0,0,0,0.25);

animation:badgePulse 3s infinite;

}

@keyframes badgePulse{

0%{ transform:scale(1); }

50%{ transform:scale(1.08); }

100%{ transform:scale(1); }

}
.mobile-title-banner {
  display: none;
}
.mobile-action-bar{
  display: none;
}

/*Privacy Policy Page/*

/* ============================================
   PRIVACY POLICY PAGE — privacy.css
   Theme: Warm gold/cream, matches AG Public School
============================================ */

/* ── HERO SECTION ── */
.pp-hero {
  position: relative;
  background: linear-gradient(135deg, #4b2e1e 0%, #7a4a20 50%, #a87442 100%);
  padding: 90px 40px 70px;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.pp-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pp-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #f7bd60;
}

.pp-shape.s1 {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -80px;
  animation: ppFloat 8s ease-in-out infinite alternate;
}

.pp-shape.s2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 10%;
  animation: ppFloat 6s ease-in-out infinite alternate-reverse;
}

.pp-shape.s3 {
  width: 160px;
  height: 160px;
  top: 30%;
  right: 5%;
  opacity: 0.06;
  animation: ppFloat 10s ease-in-out infinite alternate;
}

@keyframes ppFloat {
  from { transform: translateY(0px) scale(1); }
  to   { transform: translateY(20px) scale(1.04); }
}

.pp-hero-content {
  position: relative;
  z-index: 2;
}

.pp-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(247, 189, 96, 0.18);
  border: 2px solid rgba(247, 189, 96, 0.4);
  border-radius: 50%;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.pp-icon-wrap i {
  font-size: 2rem;
  color: #f7bd60;
}

.pp-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.pp-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.pp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.pp-breadcrumb a {
  color: #f7bd60;
  text-decoration: none;
  transition: color 0.2s;
}

.pp-breadcrumb a:hover {
  color: #fff;
}

.pp-breadcrumb span {
  opacity: 0.5;
}

/* ── CONTENT LAYOUT ── */
.pp-content-section {
  padding: 60px 40px 80px;
  background: #fdf8f3;
}

.pp-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── SIDEBAR ── */
.pp-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pp-toc {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(75,46,30,0.08);
  border: 1px solid #f0e4d4;
}

.pp-toc h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a87442;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-toc ul li a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #6b4226;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.pp-toc ul li a:hover,
.pp-toc ul li a.toc-active {
  background: #fdf0e0;
  color: #a87442;
  border-left-color: #c49a6c;
  padding-left: 16px;
}

.pp-contact-card {
  background: linear-gradient(135deg, #4b2e1e, #7a4a20);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  color: #fff;
}

.pp-contact-card i {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 12px;
  display: block;
}

.pp-contact-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pp-contact-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pp-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5bee41;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pp-contact-link:hover {
  background: #92e795;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ── ARTICLE BLOCKS ── */
.pp-article {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-block {
  display: flex;
  gap: 22px;
  padding: 36px 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.pp-block.pp-visible {
  opacity: 1;
  transform: translateY(0);
}

.pp-block-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(196,154,108,0.35);
  margin-top: 4px;
}

.pp-block-icon i {
  font-size: 1.2rem;
  color: #4b2e1e;
}

.pp-block-body {
  flex: 1;
}

.pp-block-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.pp-block-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f7bd60, #c49a6c);
  border-radius: 2px;
}

.pp-block-body p {
  font-size: 0.95rem;
  color: #6b4226;
  line-height: 1.8;
}

/* List */
.pp-list {
  list-style: none;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: #6b4226;
  line-height: 1.6;
}

.pp-list li i {
  color: #c49a6c;
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Highlight box */
.pp-highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  border-left: 4px solid #c49a6c;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #6b4226;
  line-height: 1.6;
}

.pp-highlight-box i {
  font-size: 1.3rem;
  color: #a87442;
  flex-shrink: 0;
}

/* Mini cards row */
.pp-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.pp-mini-card {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(75,46,30,0.05);
}

.pp-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196,154,108,0.2);
  border-color: #c49a6c;
}

.pp-mini-card i {
  font-size: 1.5rem;
  color: #c49a6c;
  margin-bottom: 10px;
  display: block;
}

.pp-mini-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 6px;
}

.pp-mini-card p {
  font-size: 0.8rem;
  color: #8a6040;
  line-height: 1.5;
}

/* Contact row */
.pp-contact-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.pp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.25s ease;
}

.pp-contact-item:hover {
  box-shadow: 0 6px 18px rgba(196,154,108,0.18);
  border-color: #c49a6c;
}

.pp-contact-item > i {
  font-size: 1.2rem;
  color: #c49a6c;
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.pp-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pp-contact-item span {
  font-size: 0.75rem;
  color: #a87442;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pp-contact-item strong {
  font-size: 0.92rem;
  color: #4b2e1e;
  font-weight: 600;
  display: block;
}

/* Divider */
.pp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0d9b8 20%, #f0d9b8 80%, transparent);
  margin: 0;
}

/* Last updated */
.pp-last-updated {
  margin-top: 40px;
  padding: 14px 20px;
  background: #fdf0e0;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #8a6040;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f0d9b8;
}

.pp-last-updated i {
  color: #c49a6c;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }

  .pp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pp-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pp-hero {
    padding: 80px 20px 50px;
  }

  .pp-hero-content h1 {
    font-size: 1.7rem;
  }

  .pp-content-section {
    padding: 40px 20px 60px;
  }

  .pp-sidebar {
    grid-template-columns: 1fr;
  }

  .pp-block {
    flex-direction: column;
    gap: 14px;
  }

  .pp-block-icon {
    width: 44px;
    height: 44px;
  }
}

.privacy-note {
  font-size: 0.82rem;
  color: #8a6040;
  text-align: center;
  margin-top: 10px;
  line-height: 1.8;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  border-radius: 8px;
  padding: 10px 14px;
  display: block;
  width: 100%; /* ← add this */
  box-sizing: border-box; /* ← and this, ensures padding doesn't cause overflow */
}

.privacy-note i {
  color: #c49a6c;
  margin-right: 5px;
}

.privacy-note a {
  color: #a87442;
  font-weight: 600;
  text-decoration: underline;
}

.privacy-note a:hover {
  color: #4b2e1e;
}

/*Legacy/*

/* ============================================
   LEGACY & VISION PAGE — legacy.css
   Theme: Warm gold/cream — A.G. Public School
============================================ */

/* ── SCROLL REVEAL ── */
.lv-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lv-reveal.lv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SHARED ── */
.lv-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.lv-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a87442;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.lv-section-label.lv-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #f7e0b8;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.lv-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('gallery/visionbanner.webp') center/cover no-repeat;
  text-align: center;
}

.lv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(43,20,8,0.88) 0%,
    rgba(90,50,15,0.80) 50%,
    rgba(140,90,30,0.72) 100%);
}

.lv-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.lv-hs {
  position: absolute;
  border-radius: 50%;
  background: rgba(247,189,96,0.07);
  animation: lvFloat 9s ease-in-out infinite alternate;
}
.lv-hs1 { width:400px; height:400px; top:-140px; left:-100px; }
.lv-hs2 { width:280px; height:280px; bottom:-80px; right:8%; animation-duration:7s; animation-direction:alternate-reverse; }
.lv-hs3 { width:180px; height:180px; top:30%; right:4%; opacity:0.05; animation-duration:11s; }

@keyframes lvFloat {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(18px) scale(1.05); }
}

.lv-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.lv-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,189,96,0.15);
  border: 1px solid rgba(247,189,96,0.35);
  color: #f7bd60;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.lv-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lv-italic {
  font-style: italic;
  color: #f7bd60;
}

.lv-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 26px;
}

.lv-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.lv-breadcrumb a { color: #f7bd60; text-decoration: none; transition: color 0.2s; }
.lv-breadcrumb a:hover { color: #fff; }
.lv-breadcrumb span { opacity: 0.4; }

/* ══════════════════════════════════
   OUR STORY
══════════════════════════════════ */
.lv-story {
  padding: 80px 40px;
  background: #fdf8f3;
}

.lv-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lv-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #4b2e1e;
  line-height: 1.3;
  margin-bottom: 20px;
}

.lv-story-text p {
  font-size: 0.97rem;
  color: #6b4226;
  line-height: 1.85;
  margin-bottom: 16px;
}

.lv-story-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.lv-story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(75,46,30,0.22);
  display: block;
  transition: transform 0.4s ease;
}
.lv-story-img:hover { transform: scale(1.02); }

.lv-img-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(196,154,108,0.4);
}

.lv-badge-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: #4b2e1e;
  line-height: 1;
}

.lv-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b2e1e;
  line-height: 1.4;
}

/* ══════════════════════════════════
   TIMELINE
══════════════════════════════════ */
.lv-timeline-section {
  padding: 80px 40px;
  background: #fff;
}

.lv-timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e1e;
  text-align: center;
  margin-bottom: 56px;
}

.lv-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* vertical line */
.lv-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #f7bd60, #c49a6c, #a87442);
  border-radius: 2px;
}

.lv-tl-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}

.lv-tl-dot {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196,154,108,0.4);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.lv-tl-item:hover .lv-tl-dot { transform: scale(1.12); }

.lv-tl-dot i {
  font-size: 1.1rem;
  color: #4b2e1e;
}

.lv-tl-card {
  background: #fdf8f3;
  border: 1px solid #f0e4d4;
  border-radius: 14px;
  padding: 22px 26px;
  flex: 1;
  transition: all 0.25s ease;
  position: relative;
  top: 6px;
}
.lv-tl-card:hover {
  border-color: #c49a6c;
  box-shadow: 0 8px 24px rgba(196,154,108,0.18);
  transform: translateX(4px);
}

.lv-tl-year {
  display: inline-block;
  background: linear-gradient(135deg, #4b2e1e, #7a4a20);
  color: #f7bd60;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.lv-tl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 6px;
}

.lv-tl-card p {
  font-size: 0.88rem;
  color: #7a5c3a;
  line-height: 1.7;
}

/* ══════════════════════════════════
   PHOTOS
══════════════════════════════════ */
.lv-photos-section {
  padding: 80px 40px;
  background: #fdf8f3;
}

.lv-photos-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e1e;
  text-align: center;
  margin-bottom: 40px;
}

.lv-photos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.lv-photo-main,
.lv-photo-small {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.lv-photo-main { height: 420px; }
.lv-photo-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lv-photo-small { height: 200px; }

.lv-photo-main img,
.lv-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lv-photo-main:hover img,
.lv-photo-small:hover img {
  transform: scale(1.06);
}

.lv-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43,20,8,0.82), transparent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 28px 18px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lv-photo-caption i { color: #f7bd60; }

/* ══════════════════════════════════
   VISION
══════════════════════════════════ */
.lv-vision-section {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}

.lv-vision-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4b2e1e 0%, #7a4a20 50%, #a87442 100%);
  z-index: 0;
}

.lv-vision-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lv-vision-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 18px;
}

.lv-vision-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.lv-vision-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lv-vc {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 30px 22px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.lv-vc:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

.lv-vc-icon {
  width: 52px;
  height: 52px;
  background: rgba(247,189,96,0.18);
  border: 1px solid rgba(247,189,96,0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lv-vc-icon i { font-size: 1.2rem; color: #f7bd60; }

.lv-vc h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.lv-vc p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ══════════════════════════════════
   LEADERSHIP
══════════════════════════════════ */
.lv-leadership-section {
  padding: 80px 40px;
  background: #fff;
}

.lv-leadership-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e1e;
  text-align: center;
  margin-bottom: 48px;
}

.lv-leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.lv-leader-card {
  background: #fdf8f3;
  border: 1px solid #f0e4d4;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.lv-leader-card:hover {
  box-shadow: 0 16px 40px rgba(196,154,108,0.22);
  transform: translateY(-4px);
  border-color: #c49a6c;
}

.lv-leader-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.lv-leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.lv-leader-card:hover .lv-leader-img-wrap img {
  transform: scale(1.04);
}

.lv-leader-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  color: #4b2e1e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.lv-leader-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lv-quote-icon i {
  font-size: 1.6rem;
  color: #c49a6c;
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.lv-quote-text {
  font-size: 0.91rem;
  color: #6b4226;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.lv-leader-info {
  border-top: 1px solid #f0e4d4;
  padding-top: 16px;
}
.lv-leader-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 4px;
}
.lv-leader-info span {
  font-size: 0.82rem;
  color: #a87442;
  font-weight: 600;
}

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.lv-stats {
  background: white;
  padding: 60px 40px;
}

.lv-stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.lv-stat {
  padding: 20px 10px;
  border-right: 1px solid rgba(74, 43, 12, 0.407);
  transition: transform 0.25s ease;
}
.lv-stat:last-child { border-right: none; }
.lv-stat:hover { transform: translateY(-4px); }

.lv-stat i {
  font-size: 1.6rem;
  color: #f7bd60;
  margin-bottom: 12px;
  display: block;
}

.lv-stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #5f3b1a;
  margin-bottom: 6px;
}

.lv-stat p {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.lv-cta {
  padding: 80px 40px;
  background: #fdf8f3;
  text-align: center;
}

.lv-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lv-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #4b2e1e;
  margin-bottom: 14px;
}

.lv-cta-inner p {
  font-size: 1rem;
  color: #7a5c3a;
  line-height: 1.7;
  margin-bottom: 32px;
}

.lv-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(168,116,66,0.35);
  transition: all 0.3s ease;
}
.lv-btn-primary:hover {
  background: linear-gradient(135deg, #d4af7f, #b8834e);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(168,116,66,0.45);
}

.lv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #4b2e1e;
  border: 2px solid #c49a6c;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lv-btn-secondary:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.3);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  .lv-story-grid,
  .lv-leaders-grid,
  .lv-photos-grid {
    grid-template-columns: 1fr;
  }

  .lv-vision-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .lv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lv-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .lv-stat:nth-child(3), .lv-stat:last-child { border-bottom: none; }

  .lv-img-badge { bottom: -16px; left: -12px; }
}

@media (max-width: 640px) {
  .lv-hero-content h1 { font-size: 2.4rem; }
  .lv-hero { min-height: 400px; }

  .lv-story, .lv-timeline-section, .lv-photos-section,
  .lv-vision-section, .lv-leadership-section, .lv-cta {
    padding: 56px 20px;
  }

  .lv-timeline::before { left: 22px; }
  .lv-tl-dot { width: 46px; height: 46px; }

  .lv-vision-cards { grid-template-columns: 1fr; }
  .lv-stats-grid { grid-template-columns: repeat(2, 1fr); }

  .lv-photo-main { height: 280px; }
  .lv-photo-small { height: 160px; }

  .lv-leader-img-wrap { height: 220px; }
}

/* ============================================
   AIMS & OBJECTIVES — aims.css
============================================ */

.ao-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ao-reveal.ao-visible {
  opacity: 1;
  transform: translateY(0);
}

.ao-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.ao-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a87442;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ══ HERO ══ */
.ao-hero {
  min-height: 520px;
  background: linear-gradient(145deg, #2d1608 0%, #5a2e0c 45%, #8c5a1e 100%);
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  overflow: hidden;
  position: relative;
}

.ao-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(247,189,96,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}

.ao-hero-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ao-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,189,96,0.12);
  border: 1px solid rgba(247,189,96,0.3);
  color: #f7bd60;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.ao-hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ao-hero-left h1 em {
  font-style: italic;
  color: #f7bd60;
}

.ao-hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}

.ao-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.ao-breadcrumb a { color: #f7bd60; text-decoration: none; }
.ao-breadcrumb span { opacity: 0.4; }

.ao-hero-right {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ao-hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 10px;
  backdrop-filter: blur(10px);
  min-width: 300px;
}

.ao-hc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 0.25s ease;
}
.ao-hc-row:hover { background: rgba(247,189,96,0.1); }

.ao-hc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f7bd60;
  opacity: 0.7;
  min-width: 36px;
}

.ao-hc-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.3px;
}

/* ══ CORE AIMS ══ */
.ao-aims {
  padding: 80px 40px;
  background: #fdf8f3;
}

.ao-sec-top {
  text-align: center;
  margin-bottom: 52px;
}

.ao-sec-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #4b2e1e;
  margin-bottom: 12px;
}

.ao-sec-top p {
  font-size: 0.97rem;
  color: #7a5c3a;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.ao-aims-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ao-aim-card {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ao-aim-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f7bd60, #c49a6c);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.ao-aim-card:hover::before { transform: scaleX(1); }
.ao-aim-card:hover {
  box-shadow: 0 12px 36px rgba(196,154,108,0.2);
  transform: translateY(-4px);
  border-color: #e8d4b8;
}

.ao-aim-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f0e4d4;
  line-height: 1;
  margin-bottom: 10px;
}

.ao-aim-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(196,154,108,0.3);
}

.ao-aim-icon i { font-size: 1.1rem; color: #4b2e1e; }

.ao-aim-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 10px;
}

.ao-aim-card p {
  font-size: 0.88rem;
  color: #7a5c3a;
  line-height: 1.75;
}

/* ══ APPROACH STRIP ══ */
.ao-approach {
  background: linear-gradient(135deg, #4b2e1e, #7a4a20);
  padding: 70px 40px;
}

.ao-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ao-app-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f7bd60;
  background: rgba(247,189,96,0.12);
  border: 1px solid rgba(247,189,96,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.ao-approach-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 48px;
}

.ao-app-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ao-app-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  width: 210px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.ao-app-step:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-5px);
}

.ao-app-step i {
  font-size: 1.6rem;
  color: #f7bd60;
  display: block;
  margin-bottom: 14px;
}

.ao-app-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ao-app-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

.ao-app-arrow {
  color: rgba(247,189,96,0.4);
  font-size: 1rem;
  align-self: center;
  padding: 0 2px;
  margin-top: -20px;
}

/* ══ OBJECTIVES ══ */
.ao-objectives {
  padding: 80px 40px;
  background: #fff;
}

.ao-obj-layout {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.ao-obj-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(75,46,30,0.18);
  flex-shrink: 0;
}

.ao-obj-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ao-obj-image:hover img { transform: scale(1.04); }

.ao-obj-img-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(43,20,8,0.9), transparent);
  padding: 40px 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ao-obj-img-tag i {
  font-size: 1.4rem;
  color: #f7bd60;
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 3px;
}

.ao-obj-img-tag span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.6;
}

.ao-obj-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ao-obj-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid #f0e4d4;
  background: #fdf8f3;
  transition: all 0.25s ease;
}

.ao-obj-list li:hover {
  border-color: #c49a6c;
  box-shadow: 0 6px 20px rgba(196,154,108,0.14);
  transform: translateX(4px);
}

.ao-obj-dot {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ao-obj-dot i { font-size: 0.75rem; color: #4b2e1e; font-weight: 700; }

.ao-obj-list li h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 4px;
}

.ao-obj-list li p {
  font-size: 0.84rem;
  color: #7a5c3a;
  line-height: 1.6;
}

/* ══ CTA ══ */
.ao-cta {
  padding: 80px 40px;
  background: #fdf8f3;
}

.ao-cta-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(75,46,30,0.08);
}

.ao-cta-icon {
  font-size: 2.8rem;
  color: #c49a6c;
  display: block;
  margin-bottom: 20px;
}

.ao-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #4b2e1e;
  margin-bottom: 12px;
}

.ao-cta-box p {
  font-size: 0.95rem;
  color: #7a5c3a;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ao-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(168,116,66,0.35);
  transition: all 0.3s ease;
}
.ao-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168,116,66,0.45);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  .ao-hero { flex-direction: column; padding: 120px 40px 60px; gap: 36px; }
  .ao-hero-left h1 { font-size: 2.8rem; }
  .ao-hero-card { min-width: unset; width: 100%; }
  .ao-aims-grid { grid-template-columns: repeat(2, 1fr); }
  .ao-obj-layout { grid-template-columns: 1fr; }
  .ao-obj-image img { height: 320px; }
  .ao-app-arrow { display: none; }
  .ao-app-steps { gap: 16px; }
  .ao-app-step { width: 180px; }
}

@media (max-width: 640px) {
  .ao-hero { padding: 120px 24px 50px; }
  .ao-hero-left h1 { font-size: 2.2rem; }
  .ao-aims { padding: 56px 20px; }
  .ao-aims-grid { grid-template-columns: 1fr; }
  .ao-objectives, .ao-cta { padding: 56px 20px; }
  .ao-approach { padding: 56px 20px; }
  .ao-app-step { width: 100%; }
}

/* ============================================
   QUALITY POLICY — quality.css
============================================ */

.qp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.qp-reveal.qp-visible {
  opacity: 1;
  transform: translateY(0);
}

.qp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.qp-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: brown;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.qp-label-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7a4a20;
  background: white;
  border: 1px solid rgba(247,189,96,0.22);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.qp-sec-top {
  text-align: center;
  margin-bottom: 52px;
}
.qp-sec-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #4b2e1e;
  margin-bottom: 12px;
}
.qp-sec-top p {
  font-size: 0.97rem;
  color: #7a5c3a;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══ HERO ══ */
.qp-hero {
  background: #fdf8f3;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.qp-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.qp-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,154,108,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qp-deco-ring.r1 { width: 400px; height: 400px; }
.qp-deco-ring.r2 { width: 640px; height: 640px; opacity: 0.6; }
.qp-deco-ring.r3 { width: 880px; height: 880px; opacity: 0.3; }

.qp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.qp-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 28px rgba(196,154,108,0.4);
}
.qp-hero-icon i { font-size: 2rem; color: #4b2e1e; }

.qp-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #4b2e1e;
  line-height: 1.2;
  margin-bottom: 18px;
}
.qp-hero-content h1 em {
  font-style: italic;
  color: #a87442;
}

.qp-hero-content p {
  font-size: 1rem;
  color: #7a5c3a;
  line-height: 1.8;
  margin-bottom: 24px;
}

.qp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #b8906a;
}
.qp-breadcrumb a { color: #a87442; text-decoration: none; font-weight: 600; }
.qp-breadcrumb span { opacity: 0.4; }

/* ══ STATEMENT ══ */
.qp-statement {
  padding: 80px 40px;
  background: #fff;
}

.qp-stmt-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qp-stmt-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e1e;
  margin-bottom: 18px;
  line-height: 1.3;
}

.qp-stmt-left p {
  font-size: 0.96rem;
  color: #6b4226;
  line-height: 1.85;
  margin-bottom: 16px;
}

.qp-stmt-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #7a5c3a;
  font-weight: 600;
}
.qp-stmt-seal i { color: #c49a6c; font-size: 1.1rem; }

.qp-quote-block {
  background: linear-gradient(145deg, #4b2e1e, #7a4a20);
  border-radius: 22px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.qp-quote-block::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(247,189,96,0.06);
  top: -60px; right: -60px;
}

.qp-quote-mark {
  font-size: 2rem;
  color: #f7bd60;
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}

.qp-quote-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.qp-quote-line {
  width: 40px;
  height: 2px;
  background: #f7bd60;
  opacity: 0.5;
  margin-bottom: 16px;
}

.qp-quote-block span {
  font-size: 0.88rem;
  color: #f7bd60;
  font-weight: 700;
}
.qp-quote-block small {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 4px;
}

/* ══ PILLARS ══ */
.qp-pillars {
  padding: 80px 40px;
  background: #fdf8f3;
}

.qp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.qp-pillar {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.qp-pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f7bd60, #c49a6c);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.qp-pillar:hover::after { transform: scaleX(1); }
.qp-pillar:hover {
  box-shadow: 0 14px 38px rgba(196,154,108,0.18);
  transform: translateY(-5px);
}

.qp-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.qp-pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0e4d4;
  line-height: 1;
}

.qp-pillar-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(196,154,108,0.3);
}
.qp-pillar-icon i { font-size: 1rem; color: #4b2e1e; }

.qp-pillar h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #4b2e1e;
  margin-bottom: 10px;
}

.qp-pillar p {
  font-size: 0.84rem;
  color: #7a5c3a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.qp-pillar-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #f0e4d4;
  padding-top: 14px;
}
.qp-pillar-points li {
  font-size: 0.8rem;
  color: #a87442;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.qp-pillar-points li::before {
  content: '';
  width: 6px; height: 6px;
  background: #c49a6c;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══ COMMITMENTS ══ */
.qp-commitments {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
}

.qp-commit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d1608 0%, #5c3010 55%, #8c5a1e 100%);
  z-index: 0;
}

.qp-commit-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.qp-commit-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 50px;
}

.qp-commit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.qp-commit-item {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.qp-commit-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.qp-ci-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: rgba(247,189,96,0.15);
  border: 1px solid rgba(247,189,96,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qp-ci-icon i { font-size: 1.1rem; color: #f7bd60; }

.qp-ci-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.qp-ci-body p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
}

/* ══ IN PRACTICE ══ */
.qp-practice {
  padding: 80px 40px;
  background: #fff;
}

.qp-practice-list {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qp-pl-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid #f0e4d4;
  position: relative;
}
.qp-pl-item:last-child { border-bottom: none; }

.qp-pl-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #f5ede2;
  min-width: 90px;
  line-height: 1;
  flex-shrink: 0;
}

.qp-pl-content {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.qp-pl-item.qp-reverse .qp-pl-content {
  flex-direction: row-reverse;
}

.qp-pl-content img {
  width: 280px;
  height: 185px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(75,46,30,0.15);
  transition: transform 0.35s ease;
}
.qp-pl-content img:hover { transform: scale(1.03); }

.qp-pl-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #4b2e1e;
  margin-bottom: 12px;
}
.qp-pl-text p {
  font-size: 0.93rem;
  color: #7a5c3a;
  line-height: 1.8;
}

/* ══ BOTTOM NOTE ══ */
.qp-note {
  padding: 70px 40px;
  background: #fdf8f3;
}

.qp-note-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #fdf0e0, #fff8f0);
  border: 1px solid #f0d9b8;
  border-radius: 24px;
  padding: 50px 48px;
}

.qp-note-star {
  font-size: 1.8rem;
  color: #c49a6c;
  display: block;
  margin-bottom: 20px;
}

.qp-note-inner p {
  font-size: 1rem;
  color: #6b4226;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}

.qp-note-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(168,116,66,0.35);
  transition: all 0.3s ease;
}
.qp-note-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(168,116,66,0.45);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1020px) {
  .qp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .qp-stmt-wrap { grid-template-columns: 1fr; gap: 36px; }
  .qp-commit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .qp-hero-content h1 { font-size: 2.4rem; }
  .qp-pillars-grid { grid-template-columns: 1fr; }
  .qp-pl-content { flex-direction: column !important; }
  .qp-pl-content img { width: 100%; height: 200px; }
  .qp-pl-num { font-size: 3rem; min-width: 60px; }
  .qp-practice, .qp-statement, .qp-pillars,
  .qp-commitments, .qp-note { padding: 56px 20px; }
  .qp-note-inner { padding: 36px 24px; }
  .qp-commit-item { flex-direction: column; gap: 14px; }
}

/* ============================================
   FACILITIES PAGE — facility.css
============================================ */

.fc-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fc-reveal.fc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ HERO ══ */
.fc-hero {
  position: relative;
  min-height: 420px;
  background: linear-gradient(150deg, #1e0d04 0%, #4b2e1e 45%, #8c5a1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 130px 40px 70px;
}
.fc-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(247,189,96,0.04);
  top: -180px; right: -140px;
  pointer-events: none;
}

.fc-hero-content { position: relative; z-index: 2; }

.fc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,189,96,0.12);
  border: 1px solid rgba(247,189,96,0.3);
  color: #f7bd60;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.fc-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.fc-hero-content h1 em { font-style: italic; color: #f7bd60; }

.fc-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.76);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.fc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.fc-breadcrumb a { color: #f7bd60; text-decoration: none; }
.fc-breadcrumb span { opacity: 0.5; }

/* ══ PAGE LAYOUT ══ */
.fc-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  gap: 40px;
}

/* ══ SIDEBAR ══ */
.fc-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-sidenav {
  background: #fff;
  border: 1px solid #f0e4d4;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 4px 20px rgba(75,46,30,0.07);
}

.fc-sidenav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a87442;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-sidenav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fc-sidenav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #6b4226;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.fc-sidenav ul li a i {
  font-size: 0.82rem;
  color: #c49a6c;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.fc-sidenav ul li a:hover,
.fc-sidenav ul li a.fc-nav-active {
  background: #fdf0e0;
  color: #a87442;
  border-left-color: #c49a6c;
  padding-left: 16px;
}

.fc-side-cta {
  background: linear-gradient(135deg, #4b2e1e, #7a4a20);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  color: #fff;
}

.fc-side-cta i {
  font-size: 1.8rem;
  color: #f7bd60;
  display: block;
  margin-bottom: 10px;
}

.fc-side-cta h5 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fc-side-cta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 16px;
}

.fc-side-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f7bd60, #c49a6c);
  color: #4b2e1e;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.fc-side-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247,189,96,0.35);
}

/* ══ MAIN CONTENT ══ */
.fc-main-content {
  min-width: 0;
}

/* ══ FACILITY SECTIONS ══ */
.fc-section {
  padding: 60px 0;
  background: #fdf8f3;
  scroll-margin-top: 130px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.fc-section.fc-alt {
  background: #fff;
}

.fc-inner {
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Reverse layout (content left, image right) */
.fc-inner.fc-reverse {
  direction: rtl;
}
.fc-inner.fc-reverse > * {
  direction: ltr;
}

/* ── Image ── */
.fc-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(75,46,30,0.16);
}

.fc-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fc-image-wrap:hover img { transform: scale(1.04); }

.fc-img-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(43,20,8,0.88), transparent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 32px 18px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.fc-img-tag i { color: #f7bd60; }

/* ── Content ── */
.fc-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a87442;
  background: #fdf0e0;
  border: 1px solid #f0d9b8;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.fc-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e1e;
  margin-bottom: 14px;
  line-height: 1.25;
}

.fc-lead {
  font-size: 0.97rem;
  color: #7a4a20;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid #c49a6c;
}

.fc-content p {
  font-size: 0.91rem;
  color: #6b4226;
  line-height: 1.85;
  margin-bottom: 22px;
}

.fc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #5a3a1a;
  font-weight: 500;
  background: #fdf8f3;
  border: 1px solid #f0e4d4;
  border-radius: 10px;
  padding: 9px 14px;
  transition: all 0.22s ease;
}
.fc-features li:hover {
  border-color: #c49a6c;
  box-shadow: 0 4px 12px rgba(196,154,108,0.15);
  transform: translateX(4px);
}
.fc-features li i { color: #c49a6c; font-size: 0.8rem; flex-shrink: 0; }

/* ══ DISCLAIMER ══ */
.fc-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fdf8f3;
  padding: 14px 24px;
  border-top: 1px dashed #e8d4b8;
  border-bottom: 1px dashed #e8d4b8;
  margin-top: 20px;
  border-radius: 10px;
}
.fc-disclaimer i { color: #c49a6c; font-size: 0.85rem; flex-shrink: 0; }
.fc-disclaimer p { font-size: 0.8rem; color: #a87442; font-style: italic; margin: 0; }

/* ══ CTA ══ */
.fc-cta {
  padding: 80px 40px;
  background: #fdf0e0;
  text-align: center;
}

.fc-cta-inner { max-width: 640px; margin: 0 auto; }

.fc-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #4b2e1e;
  margin-bottom: 14px;
}

.fc-cta-inner p {
  font-size: 0.97rem;
  color: #7a5c3a;
  line-height: 1.8;
  margin-bottom: 34px;
}

.fc-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.fc-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #c49a6c, #a87442);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(168,116,66,0.35);
  transition: all 0.3s ease;
}
.fc-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(168,116,66,0.45); }

.fc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #4b2e1e;
  border: 2px solid #c49a6c;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fc-btn-outline:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37,211,102,0.3);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .fc-page-layout { grid-template-columns: 200px 1fr; gap: 28px; padding: 40px 28px; }
}

@media (max-width: 900px) {
  .fc-page-layout { grid-template-columns: 1fr; padding: 32px 20px; }
  .fc-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .fc-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .fc-inner.fc-reverse { direction: ltr; }
  .fc-image-wrap img { height: 280px; }
  .fc-hero-content h1 { font-size: 2.6rem; }
}

@media (max-width: 600px) {
  .fc-hero { padding: 120px 24px 60px; }
  .fc-hero-content h1 { font-size: 2rem; }
  .fc-sidebar { grid-template-columns: 1fr; }
  .fc-section { padding: 40px 0; }
  .fc-inner { padding: 0 16px; }
  .fc-image-wrap img { height: 220px; }
  .fc-content h2 { font-size: 1.6rem; }
  .fc-cta { padding: 56px 24px; }
}

.qp-hero-content .qp-label {
  color: #7a4a20;
  background: #f0d9b8;
  border-color: #c49a6c;
}
/* ============================================
   GALLERY PAGE — gallery.css
   Bento masonry grid, no filters
============================================ */

/* ══ HERO ══ */
.gl-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('annualday.webp') center / cover no-repeat;
}

.gl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,8,2,0.78) 0%,
    rgba(43,20,8,0.65) 60%,
    rgba(75,46,30,0.5) 100%
  );
}

.gl-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 60px;
}

.gl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,189,96,0.14);
  border: 1px solid rgba(247,189,96,0.32);
  color: #f7bd60;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.gl-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gl-hero-content h1 em {
  font-style: italic;
  color: #f7bd60;
}

.gl-hero-content p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ══ SECTION WRAPPER ══ */
.gl-section {
  background: #1a0d06;
  padding: 16px;
}

/* ══ BENTO GRID ══ */
.gl-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Span variants ── */
.span-2-cols { grid-column: span 2; }
.span-2-rows { grid-row: span 2; }
.span-2-cols.span-2-rows { grid-column: span 2; grid-row: span 2; }

/* ── Each photo cell ── */
.gl-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #2d1608;

  /* reveal start state */
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.gl-photo.gl-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Zoom on hover */
.gl-photo:hover img {
  transform: scale(1.08);
}

/* Gold border glow on hover */
.gl-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  z-index: 3;
  pointer-events: none;
}
.gl-photo:hover::before {
  border-color: rgba(247,189,96,0.55);
}

/* ── Caption overlay ── */
.gl-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(
    to top,
    rgba(15,5,2,0.85) 0%,
    rgba(15,5,2,0.4) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  z-index: 2;
}

.gl-photo:hover .gl-cap {
  opacity: 1;
  transform: translateY(0);
}

.gl-cap i {
  color: #f7bd60;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* ══ LIGHTBOX ══ */
.gl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 2, 1, 0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  animation: glLbFadeIn 0.22s ease;
}
.gl-lightbox.gl-lb-open { display: flex; }

@keyframes glLbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gl-lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 92vh;
}

.gl-lb-content img {
  max-width: 88vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  display: block;
}

.gl-lb-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 14px;
  padding: 0 4px;
}

.gl-lb-caption {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

.gl-lb-counter {
  color: rgba(247,189,96,0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

.gl-lb-close {
  position: fixed;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  z-index: 10000;
}
.gl-lb-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.12) rotate(90deg);
}

.gl-lb-arrow {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}
.gl-lb-arrow:hover {
  background: rgba(247,189,96,0.18);
  border-color: rgba(247,189,96,0.5);
  color: #f7bd60;
  transform: scale(1.08);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .gl-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .span-2-cols { grid-column: span 2; }
  .span-2-rows { grid-row: span 2; }
}

@media (max-width: 640px) {
  .gl-hero-content h1 { font-size: 2.4rem; }
  .gl-hero { min-height: 340px; }

  .gl-section { padding: 8px; }

  .gl-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 6px;
  }

  /* On mobile all spanning stays but rows are shorter */
  .span-2-cols { grid-column: span 2; }
  .span-2-rows { grid-row: span 1; } /* collapse tall items on tiny screens */

  .gl-cap { font-size: 0.76rem; padding: 28px 12px 10px; }
  .gl-lb-arrow { width: 42px; height: 42px; font-size: 0.88rem; }
}