.gallery-group::before {
  content: "";
  position: absolute;
  width: 100%;
  top: -10px;
  opacity: 0.8;
  right: -10px;
  height: 100%;
  background-color: #0325c4;
}

.gallery-group ul.image-gallery li {
  height: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-group ul.image-gallery li:before {
  /* background-color: #000; */
  z-index: 11;
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0.5;
  left: 0;
  height: 100%;
  bottom: 0;
  top: 0;
  transition: 0.5s ease-in-out;
}

.gallery-group ul.image-gallery li a {
  transition: 0.5s ease-in-out;
  position: absolute;
  z-index: 1;
  color: #ffffff;
  font-size: 26px;
  transform: scale(0) translate(-50%, -50%);
  top: 54%;
  left: 50%;
}

.gallery-group ul.image-gallery li figure {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-group ul.image-gallery li a i {
  transition: 0.5s ease-in-out;
}

.gallery-group ul.image-gallery li img {
  width: 100%;
  transition: 0.5s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-group ul.image-gallery {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

.gallery-group {
  position: relative;
}

.gallery-group ul.image-gallery li:hover:before {
  height: 100%;
  top: 0;
  opacity: 0.8;
}

.gallery-group ul.image-gallery li:hover a {
  z-index: 111;
  transform: scale(1) translate(-50%, -50%);
}

.gallery-group ul.image-gallery li:hover img {
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 1299px) {
  .gallery-group ul.image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Tablet */
@media (max-width: 768px) {
  .gallery-group ul.image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-group ul.image-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.title-animation {
  text-transform: capitalize;
}

.meet-experts-section {


  .enquiry-form {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .meet-experts {
    margin-bottom: 0px;
  }

  .enquiry-form h2 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
  }

  .enquiry-form p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
  }

  .enquiry-form h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }

  .enquiry-form textarea {
    height: 100px;
    resize: none;
  }

  .enquiry-form input:focus,
  .enquiry-form select:focus,
  .enquiry-form textarea:focus {
    border-color: #f4a100;
    outline: none;
  }

}

.school-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.school-bg-animation span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(0, 123, 255, 0.15);
  border-radius: 50%;
  animation: float 15s linear infinite;
}

/* Different positions */
.school-bg-animation span:nth-child(1) {
  left: 10%;
  width: 60px;
  height: 60px;
  animation-duration: 18s;
}

.school-bg-animation span:nth-child(2) {
  left: 30%;
  width: 25px;
  height: 25px;
  animation-duration: 12s;
}

.school-bg-animation span:nth-child(3) {
  left: 55%;
  width: 45px;
  height: 45px;
  animation-duration: 16s;
}

.school-bg-animation span:nth-child(4) {
  left: 75%;
  width: 30px;
  height: 30px;
  animation-duration: 10s;
}

.school-bg-animation span:nth-child(5) {
  left: 90%;
  width: 50px;
  height: 50px;
  animation-duration: 20s;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.edu-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 40px;
  }
}

.school-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Gradient Background */
.hero-bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #0066ff, #00c6ff, #4facfe, #43e97b);
  background-size: 800% 800%;
  animation: gradientMove 18s ease infinite;
  z-index: -3;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;
}

.hero-particles span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatParticles 20s linear infinite;
}

.hero-particles span:nth-child(1) {
  left: 10%;
  animation-duration: 12s;
}

.hero-particles span:nth-child(2) {
  left: 25%;
  animation-duration: 18s;
}

.hero-particles span:nth-child(3) {
  left: 50%;
  animation-duration: 15s;
}

.hero-particles span:nth-child(4) {
  left: 75%;
  animation-duration: 20s;
}

.hero-particles span:nth-child(5) {
  left: 90%;
  animation-duration: 14s;
}

@keyframes floatParticles {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  50% {
    opacity: .6;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  padding: 12px 35px;
  background: white;
  color: #0066ff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.hero-btn:hover {
  background: #000;
  color: white;
}

.premium-school-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url(../img/design-your.jpg);
  padding: 80px 0;
}

/* Gradient Background */

.hero-gradient-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #005bea, #00c6fb, #43e97b, #38f9d7);
  background-size: 800% 800%;
  animation: gradientMove 15s ease infinite;
  z-index: -3;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Icons */

.hero-icons i {
  position: absolute;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.2);
  animation: floatIcon 18s linear infinite;
}

.hero-icons i:nth-child(1) {
  left: 10%;
  top: 80%;
}

.hero-icons i:nth-child(2) {
  left: 30%;
  top: 90%;
}

.hero-icons i:nth-child(3) {
  left: 60%;
  top: 85%;
}

.hero-icons i:nth-child(4) {
  left: 85%;
  top: 95%;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-900px);
  }
}

/* Hero Text */

.hero-main h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

.hero-main p {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Buttons */

.hero-btn {
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px;
  transition: .3s;
}

.primary {
  background: white;
  color: #005bea;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* Stats */

.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
}

.hero-stats h2 {
  font-size: 40px;
  font-weight: 700;
}

/* Scroll Down */

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down span {
  display: block;
  width: 25px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.scroll-down span::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 8px;
  background: white;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% {
    opacity: 0;
    top: 5px;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

.courses-section {
  padding: 90px 0;
  background-color: #13188c;
  background-image: url(../img/courses-section.png);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.courses-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.courses-desc {
  max-width: 600px;
  margin: 20px 0 50px;
  color: #fff !important;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.course-card {
  background: #fff;
  color: #333;
  padding: 35px 20px;
  border-radius: 15px;
  transition: .4s;
  text-align: center;
  transform-style: preserve-3d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
}

.course-card .icon {
  font-size: 80px;
  margin-bottom: 15px;
}

.course-card h3 {
  color: #1a2a6c;
  margin-bottom: 5px;
}

.course-card p {
  color: #666;
  font-size: 14px;
}

/* 3D Hover */
.course-card:hover {
  transform: rotateY(8deg) rotateX(8deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
}

/* Floating Icons */
.floating-icons span {
  position: absolute;
  font-size: 30px;
  opacity: .15;
  animation: floatIcons 12s linear infinite;
}

.floating-icons span:nth-child(1) {
  left: 10%;
  bottom: -60px;
}

.floating-icons span:nth-child(2) {
  left: 30%;
  bottom: -80px;
}

.floating-icons span:nth-child(3) {
  left: 55%;
  bottom: -70px;
}

.floating-icons span:nth-child(4) {
  left: 75%;
  bottom: -90px;
}

.floating-icons span:nth-child(5) {
  left: 90%;
  bottom: -60px;
}

@keyframes floatIcons {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-900px);
  }
}

.pattern-shapes span {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3ecff, #f5f8ff);
  animation: floatMove 12s infinite linear;
  opacity: .6;
}

.pattern-shapes span:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.pattern-shapes span:nth-child(2) {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.pattern-shapes span:nth-child(3) {
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes floatMove {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }

  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

.news-pattern-bg {
  background: #f6f9ff;
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.news-pattern-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#dbe7ff 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: 0;
}

.news-pattern-bg {
  background: #f6f9ff;
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.news-pattern-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#dbe7ff 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  z-index: 0;
}

.sticky-contact {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all .3s ease;
}

/* colors */
.whatsapp {
  background: #25D366;
}

.phone {
  background: #0d6efd;
}

.email {
  background: #ff6b35;
}

/* hover animation */
.contact-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* CARD DESIGN */
.facility-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  position: relative;
}

/* IMAGE STYLE */
.facility-card figure {
  overflow: hidden;
  margin: 0;
}

.facility-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.facility-content {
  padding: 20px;
  text-align: center;
}

.facility-content span {
  font-size: 13px;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.facility-content h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 700;
  color: #1e3c72;
}

.facility-content p {
  font-size: 14px;
  color: #25color: #252525;
  line-height: 1.6;
}

/* HOVER EFFECT */
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-card:hover img {
  transform: scale(1.1);
}

/* GLOW BORDER EFFECT */
.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(45deg, #1e3c72, #2a5298, #f7c948);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.facility-card:hover::before {
  opacity: 1;
}

/* ENTRY ANIMATION */
.facility-card {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.facility-card:nth-child(1) {
  animation-delay: 0.2s;
}

.facility-card:nth-child(2) {
  animation-delay: 0.4s;
}

.facility-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.uniform-final {
  padding: 80px 20px;
  background: #f8fafc;
}

/* HEADER */
.uniform-header {
  text-align: center;
  margin-bottom: 50px;
}

.uniform-header h2 {
  font-size: 34px;
  color: #1e3c72;
}

.uniform-header p {
  max-width: 700px;
  margin: auto;
  color: #25color: #252525;
}

/* CARD */
.uniform-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

/* IMAGE */
.uniform-img img {
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.uniform-content {
  padding: 25px;
}

.uniform-content h3 {
  margin-bottom: 20px;
  font-size: 22px;
  border-left: 4px solid #1e3c72;
  padding-left: 10px;
}

/* ITEMS */
.uniform-item {
  margin-bottom: 18px;
}

.uniform-item h4 {
  font-size: 16px;
  color: #1e3c72;
  margin-bottom: 6px;
}

.uniform-item ul {
  padding-left: 18px;
}

.uniform-item li {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* SPORTS HIGHLIGHT */
.uniform-item.highlight {
  background: #eef4ff;
  padding: 12px;
  border-radius: 6px;
}

/* HOVER */
.uniform-card:hover {
  transform: translateY(-5px);
  border-color: #1e3c72;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .uniform-img img {
    height: 200px;
  }
}

.admission-pro {
  padding: 60px 20px;
  background: #f8fafc;
}

/* TITLE */
.admission-title {
  text-align: center;
  margin-bottom: 70px;
}

.admission-title h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}

.admission-title p {
  letter-spacing: 1px;
}

/* ROW */
.admission-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

/* REVERSE */
.admission-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.admission-img {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.admission-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT */
.admission-content {
  flex: 1;
}

.admission-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e3c72;
}

.admission-content ul {
  list-style: none;
  padding: 0;
}

.admission-content li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
}

.admission-content i {
  color: #1e3c72;
  margin-right: 10px;
}

/* HOVER */
.admission-row:hover img {
  transform: scale(1.05);
}

/* SCROLL ANIMATION */
.admission-row {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.admission-row:nth-child(2) {
  animation-delay: 0.2s;
}

.admission-row:nth-child(3) {
  animation-delay: 0.4s;
}

.admission-row:nth-child(4) {
  animation-delay: 0.6s;
}

.admission-row:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .admission-row {
    flex-direction: column !important;
  }

  .admission-img img {
    height: 100%;
  }
}

.pres-final {
  padding: 60px 20px;
}

/* CARD */
.pres-card {
  display: flex;
  gap: 60px;
 background: linear-gradient(135deg, #002147, #06a593);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* LEFT IMAGE */
.pres-left {
  position: relative;
  flex: 1;
}

.pres-left img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.5s;
}

/* OVERLAY */
.pres-overlay {
  position: relative;
  margin: 25px 0 0;
  text-align: center;
}
.pres-overlay h4 {
    color: #ffffff;
    margin-bottom: 10px;
}
.pres-overlay span {
    color: #ffe200;
}
/* RIGHT CONTENT */
.pres-right {
  flex: 1.3;
}

/* LABEL */
.pres-label {
  font-size: 33px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 600;
}

/* TITLE STYLE */
.pres-right h5 {
  margin-top: 25px;
}

/* QUOTE */
.pres-quote {
  margin: 20px 0;
  padding: 20px;
  border-left: 4px solid #d4af37;
  background: #fffdf6;
  font-style: italic;
  color: #444;
  border-radius: 6px;
}

/* TEXT */
.pres-right p {
  color: #f2f2f2;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* SIGNATURE */
.pres-signature h5 {
  font-size: 20px;
  color: #1e3c72;
}

.pres-signature span {
  font-size: 13px;
  color: #777;
}

/* HOVER */
.pres-card:hover img {
  transform: scale(1.05);
}

/* ANIMATION */
.pres-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .pres-card {
    flex-direction: column;
    padding: 20px;
  }

  .pres-left img {
    height: 250px;
  }
}

.sec-final {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef2f7, #f8fafc);
}

/* CARD */
.sec-card {
  display: flex;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* LEFT CONTENT */
.sec-left {
  flex: 1.3;
}

/* LABEL */
.sec-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #1e3c72;
  font-weight: 600;
}

/* NAME */
.sec-left h3 {
  margin: 15px 0;
  font-size: 26px;
  color: #0f172a;
}

/* QUOTE */
.sec-quote {
  margin: 20px 0;
  padding: 18px;
  border-left: 4px solid #d4af37;
  background: #fffdf6;
  font-style: italic;
  border-radius: 6px;
}

/* TEXT */
.sec-left p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* SIGN */
.sec-sign h5 {
  font-family: 'Brush Script MT', cursive;
  font-size: 20px;
  color: #1e3c72;
}

.sec-sign span {
  font-size: 13px;
  color: #777;
}

/* RIGHT IMAGE */
.sec-right {
  position: relative;
  flex: 1;
}

.sec-right img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.5s;
}

/* OVERLAY */
.sec-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  border-radius: 0 0 12px 12px;
}

/* HOVER */
.sec-card:hover img {
  transform: scale(1.05);
}

/* ANIMATION */
.sec-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

/* MOBILE */
@media(max-width:768px) {
  .sec-card {
    flex-direction: column;
    padding: 20px;
  }

  .sec-right img {
    height: 250px;
  }
}

/* Section background with pattern */
.secretary-section {
  padding: 60px 20px;
  background: #e6f0ff;
  position: relative;
}

/* Card layout */
.secretary-card {
  display: flex;
  flex-wrap: wrap;
  background: #0074D9;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  background-image: radial-gradient(circle at top left, #005fa3 0%, #0074D9 100%);
}

/* Floating background animation */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-bg span {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  animation: floatAnim 20s linear infinite;
  border-radius: 50%;
}

/* Different positions and delays */
.floating-bg span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.floating-bg span:nth-child(2) {
  left: 40%;
  animation-delay: 5s;
  animation-duration: 22s;
}

.floating-bg span:nth-child(3) {
  left: 70%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.floating-bg span:nth-child(4) {
  left: 85%;
  animation-delay: 15s;
  animation-duration: 25s;
}

/* Floating animation */
@keyframes floatAnim {
  0% {
    top: 100%;
    transform: translateY(0) rotate(0deg);
  }

  100% {
    top: -150px;
    transform: translateY(-1000px) rotate(360deg);
  }
}

.secretary-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}


/* Hover effect */
.secretary-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Content styling */
.secretary-content {
  flex: 2 1 400px;
  padding: 30px;
  animation: fadeIn 2s ease forwards;
}

.secretary-title {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  color: #f2f2f2;
}

.secretary-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #FFDC00;
  margin-top: 8px;
  border-radius: 2px;
  animation: slideIn 1s ease forwards;
}

.secretary-name {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #ffd900;
}

.secretary-message {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  color: #f2f2f2;
}

/* Photo styling */
.secretary-photo {
  flex: 1 1 300px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 0px;
  animation: fadeInRight 1.5s ease forwards;
}

.photo-frame {
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-frame:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.joint-secretary-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #0074D9;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  background-image: radial-gradient(circle at top left, #0f0248 0%, #032789 100%);
}

.treasurer-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #2ECC40;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  background-image: radial-gradient(circle at top left, #001f37 0%, #053331 100%);
}

.correspondent-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #6f42c1;
  /* Purple theme */
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  background-image: radial-gradient(circle at top left, #154581 0%, #048184 100%);
}
.principal-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #1E3A8A; /* Deep royal blue */
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  background-image: radial-gradient(circle at top left, #145166 0%, #1e6b8a 100%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsive layout */
.leadership-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: linear-gradient(135deg, #002147, #FFD700);
  color: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
}

.leadership-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.leadership-content {
  flex: 1 1 500px;
  padding: 20px;
}

.leadership-title {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
}

.leadership-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #FFD700;
  margin-top: 8px;
  border-radius: 2px;
  animation: slideIn 1s ease forwards;
}

.leadership-name {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #fff;
}

.leadership-message {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

/* Photo */
.leadership-photo {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
}

.photo-frame {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  border: 4px solid #FFD700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-frame:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

/* Floating background */
.floating-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-bg span {
  position: absolute;
  display: block;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1);
  animation: floatAnim 20s linear infinite;
  border-radius: 50%;
}

.floating-bg span:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-bg span:nth-child(2) { left: 40%; animation-delay: 5s; }
.floating-bg span:nth-child(3) { left: 70%; animation-delay: 10s; }
.floating-bg span:nth-child(4) { left: 85%; animation-delay: 15s; }

@keyframes floatAnim {
  0% { top: 100%; transform: translateY(0) rotate(0deg); }
  100% { top: -150px; transform: translateY(-1000px) rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 80px; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .leadership-card {
    flex-direction: column;
    text-align: center;
  }

  .leadership-content, .leadership-photo {
    flex: 1 1 100%;
    padding: 15px;
  }

  .leadership-title::after {
    margin: 0 auto;
  }
}
/* SECTION BASE */
.wps-about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
    font-family: 'Poppins', sans-serif;
}

.wps-container {
    max-width: 1300px;
    margin: auto;
}

/* HEADING */
.wps-heading {
    text-align: center;
    margin-bottom: 60px;
}

.wps-heading h5 {
    color: #0d6efd;
    letter-spacing: 2px;
    font-weight: 600;
}

.wps-heading h2 {
    font-size: 40px;
    margin: 10px 0;
    color: #222;
}

.wps-heading p {
    color: #666;
}

/* LAYOUT */
.wps-about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.wps-about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.wps-about-image img {
    width: 100%;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

.wps-about-image:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.wps-about-content {
    flex: 1;
}

/* CARD DESIGN */
.wps-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.wps-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(120deg, #0d6efd, #00c6ff);
    z-index: 0;
    transition: 0.4s;
}

.wps-card:hover::before {
    width: 100%;
}

.wps-card:hover {
    transform: translateY(-8px);
}

/* TEXT */
.wps-card h3 {
    position: relative;
    z-index: 1;
    color: #222;
    margin-bottom: 10px;
    transition: 0.3s;
}

.wps-card p {
    position: relative;
    z-index: 1;
    color: #25color: #252525;
    transition: 0.3s;
}

.wps-card:hover h3,
.wps-card:hover p {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .wps-heading h2 {
        font-size: 28px;
    }

    .wps-about-wrapper {
        flex-direction: column;
    }
}
/* SECTION */
.wps-about-v2 {
    padding: 60px 20px;
    color: #fff;
}

/* TITLE */
.wps-heading-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.wps-heading-v2 h5 {
    letter-spacing: 2px;
    color: #00c6ff;
}

.wps-heading-v2 h2 {
    font-size: 38px;
    font-weight: 700;
}

/* GRID */
.wps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* IMAGE */
.wps-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.wps-image-box img {
    width: 100%;
    transition: 0.6s;
}

.wps-image-box:hover img {
    transform: scale(1.1);
}

/* BADGE */
.wps-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.wps-badge h2 {
    margin: 0;
    color: #00c6ff;
}

/* TIMELINE */
.wps-content-box {
    position: relative;
    padding-left: 20px;
}

.wps-content-box::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #00c6ff;
}

/* ITEM */
.wps-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

/* DOT */
.wps-dot {
    width: 16px;
        min-width: 16px;
    height: 16px;
    background: #00c6ff;
    border-radius: 50%;
    margin-right: 20px;
    margin-top: 8px;
    box-shadow: 0 0 10px #00c6ff;
}

/* GLASS CARD */
.wps-glass-card {
    
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT */
.wps-glass-card:hover {
    transform: translateX(10px);
    background: rgba(0,198,255,0.2);
}

/* TEXT */
.wps-glass-card h3 {
    margin-bottom: 10px;
    color: #00c6ff;
}

.wps-glass-card p {
    color: #f2f2f2;
}
.wps-glass-card:hover p {
   color: #052084;
}


/* MOBILE */
@media (max-width: 768px) {
    .wps-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.wps-trust-section {
    padding: 60px 20px;
    background: #f8fbff;
}

/* TITLE */
.wps-heading-v3 {
    text-align: center;
    margin-bottom: 60px;
}

.wps-heading-v3 h5 {
    color: #0d6efd;
    letter-spacing: 2px;
}

.wps-heading-v3 h2 {
    font-size: 36px;
    color: #222;
}

/* GRID */
.wps-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* TRUST CARD */
.wps-trust-card {
    background: linear-gradient(135deg, #043d92, #0d6efd);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: 0.4s;
}
.wps-trust-card img {
    width: 100%;
}
.wps-trust-card h3 {
    color: #ffffff;
}
.wps-trust-card p {
    color: #ffffff;
}
.wps-trust-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* DATE */
.wps-date {
    display: inline-block;
    margin: 10px 0 15px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 8px;
}

/* RIGHT SIDE */
.wps-trust-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INFO BOX */
.wps-info-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.wps-info-box:hover {
    transform: translateY(-5px);
}

/* VALUES GRID */
.wps-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* VALUE ITEM */
.wps-value-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #eee;
    transition: 0.3s;
}

/* HOVER */
.wps-value-item:hover {
    background: #043d92;
    color: #fff;
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .wps-trust-grid {
        grid-template-columns: 1fr;
    }

    .wps-values-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.wps-vision-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #eef5ff, #f9fbff);
}

/* TITLE */
.wps-heading-v4 {
    text-align: center;
    margin-bottom: 60px;
}

.wps-heading-v4 h5 {
    color: #0d6efd;
    letter-spacing: 2px;
}

.wps-heading-v4 h2 {
    font-size: 38px;
    color: #222;
}

/* GRID */
.wps-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD BASE */
.wps-vision-card {
    position: relative;
    padding: 35px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s;
}

/* ICON */
.wps-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.wps-vision-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.wps-vision-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* LIST */
.wps-vision-card ul {
    padding-left: 20px;
}

.wps-vision-card ul li {
    margin-bottom: 8px;
}

/* GRADIENT BORDER EFFECT */
.wps-vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(120deg, #0d6efd, #00c6ff);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER EFFECT */
.wps-vision-card:hover {
    transform: translateY(-10px);
}

/* COLOR VARIANTS */
.vision {
    background: linear-gradient(135deg, #ffffff, #eaf3ff);
}

.mission {
    background: linear-gradient(135deg, #ffffff, #e6fbff);
}

/* MOBILE */
@media (max-width: 768px) {
    .wps-vision-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.wps-curriculum-v2 {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f9ff, #eef3fb);
}

/* TOP AREA */
.wps-curriculum-top {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* TEXT */
.wps-curriculum-text {
    flex: 1;
}

.wps-curriculum-text h5 {
    color: #0d6efd;
    letter-spacing: 2px;
}

.wps-curriculum-text h2 {
    font-size: 38px;
    margin: 10px 0;
}

.wps-curriculum-text p {
    color: #25color: #252525;
    line-height: 1.7;
}

/* IMAGE */
.wps-curriculum-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.wps-curriculum-image img {
    width: 100%;
    transition: 0.5s;
}

.wps-curriculum-image:hover img {
    transform: scale(1.08);
}

/* CARDS GRID */
.wps-curriculum-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 25px;
}

/* CARD */
/* COMMON CARD TEXT COLOR */
.wps-curr-card {
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
}

/* CARD 1 – Academic Blue */
.wps-curr-card:nth-child(1) {
    background: linear-gradient(135deg, #0b3d91, #1456c3);
}

/* CARD 2 – Education Green */
.wps-curr-card:nth-child(2) {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

/* CARD 3 – Knowledge Orange */
.wps-curr-card:nth-child(3) {
    background: linear-gradient(135deg, #0b8ba1, #00e6c4);
}

/* CARD 4 – Excellence Purple */
.wps-curr-card:nth-child(4) {
    background: linear-gradient(135deg, #4a148c, #6a1b9a);
}

/* CARD 5 – Assessment Red */
.wps-curr-card:nth-child(5) {
    background: linear-gradient(135deg, #7f0000, #c62828);
}

/* BORDER EFFECT */
/* COMMON BORDER STYLE */
.wps-curr-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

/* CARD 1 */
.wps-curr-card:nth-child(1)::before {
    background: linear-gradient(120deg, #0d6efd, #00c6ff);
}

/* CARD 2 */
.wps-curr-card:nth-child(2)::before {
    background: linear-gradient(120deg, #28a745, #a8e063);
}

/* CARD 3 */
.wps-curr-card:nth-child(3)::before {
    background: linear-gradient(120deg, #02687a, #198c7b);
}

/* CARD 4 */
.wps-curr-card:nth-child(4)::before {
    background: linear-gradient(120deg, #6f42c1, #b06ab3);
}

/* CARD 5 */
.wps-curr-card:nth-child(5)::before {
    background: linear-gradient(120deg, #ff512f, #dd2476);
}

/* HOVER */
.wps-curr-card:hover {
    transform: translateY(-8px);
}

/* TEXT */
.wps-curr-card h3 {
    margin-bottom: 15px;
   color: #ffe200;
}

.wps-curr-card ul {
    padding-left: 20px;
}
/* Remove default bullets */
.wps-curr-card ul {
    list-style: none;
    padding-left: 0;
}

/* Add custom checkmark */
.wps-curr-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #fff; /* for dark cards */
}

/* Checkmark before each li */
.wps-curr-card li::before {
    content: "✔"; /* checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700; /* golden color for visibility */
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .wps-curriculum-top {
        flex-direction: column;
    }
}
/* SECTION */
.wps-subjects-section {
    padding: 60px 20px;
    position: relative;
}

/* PATTERN ANIMATION */
@keyframes movePattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, 0 0; }
}

/* HEADER */
.wps-subjects-header {
    text-align: center;
    margin-bottom: 60px;
}
.wps-subjects-header h5 {
    color: #ffd700;
    letter-spacing: 2px;
}
.wps-subjects-header h2 {
    font-size: 38px;
    margin: 10px 0;
}
.wps-subjects-header p {
    line-height: 1.6;
}

/* CARDS GRID */
.wps-subjects-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

/* CARD */
.wps-subject-card {
    
   background-color: #03546c;
    background-size: 200px 200px;
    background-repeat: repeat;
    color: #fff;
    animation: movePattern 60s linear infinite;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.wps-subject-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

/* ICON */
.wps-subject-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #ffd700;
}

/* TITLE */
.wps-subject-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* LIST ITEMS WITH CHECKMARK */
.wps-subject-card ul {
    list-style: none;
    padding-left: 0;
}
.wps-subject-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #f0f0f0;
}
.wps-subject-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd700;
    font-weight: bold;
}
.btn-center {
  text-align: center;
}

/* Main Button */
.custom-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 0;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 50px;
  font-weight: 700;
  overflow: hidden;
  color: #ffffff;
  background: #3b5aec;
  text-decoration: none;
}

/* Right Side Line Effect */
.custom-btn::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  bottom: -3px;
  right: 3px;
  width: 5px;
  height: 24px;
  transition: 0.5s ease-in-out;
}

/* Hover Background Animation */
.custom-btn::before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 105%;
  width: 1050%;
  content: "";
  background-color: #ffffff;
  transform: scale(1, 0);
  transform-origin: bottom left;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}

/* Hover Effects */
.custom-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover::before {
  transform-origin: top right;
  transform: scale(1, 1);
}

.custom-btn:hover::after {
  background-color: #ffffff;
}

/* Light Variation */
.custom-btn-light:hover {
  color: #ffffff;
}

.custom-btn-light::before {
  background-color: #000;
}

/* Icon Spacing */
.custom-btn i {
  padding-right: 10px;
}

/* Light Background Option */
.custom-btn-light.bg-light {
  background-color: #ffffff !important;
  color: #000;
}

.custom-btn-light.bg-light:hover::before {
  color: #ffffff;
  top: -1px;
  height: calc(100% + 1px);
}
.edu-uniform-zone{
    padding:60px 0;
    background:linear-gradient(to bottom,#f4f8ff,#ffffff);
    position:relative;
    overflow:hidden;
}

.edu-uniform-zone::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.edu-uniform-zone::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(25,135,84,0.08);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
}

.edu-uniform-title-wrap{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.edu-mini-title{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:1px;
}

.edu-main-title{
    font-size:46px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.edu-main-desc{
    font-size:17px;
    color:#64748b;
    line-height:30px;
}

.edu-uniform-box{
    background:#fff;
    border-radius:30px;
    padding: 25px 25px 0;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    z-index:2;
}

.edu-uniform-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.edu-uniform-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,#0d6efd,#198754);
}

.edu-uniform-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.edu-icon-circle{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#3b82f6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    transition:0.5s;
}

.girls-bg{
    background:linear-gradient(135deg,#198754,#20c997);
}

.edu-uniform-box:hover .edu-icon-circle{
    transform:rotateY(180deg);
}

.edu-uniform-top h3{
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    margin:0;
}

.edu-uniform-card{
    background:#f8fbff;
    border-radius:20px;
    padding:25px;
    margin-bottom:22px;
    transition:0.4s;
    border:1px solid transparent;
    position:relative;
    overflow:hidden;
}

.edu-uniform-card:hover{
    transform:translateX(8px);
    border-color:#0d6efd;
    box-shadow:0 12px 30px rgba(13,110,253,0.12);
}

.edu-uniform-card h4{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.edu-uniform-card h4 i{
    color:#0d6efd;
}

.edu-uniform-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.edu-uniform-card ul li{
    position:relative;
    padding-left:34px;
    margin-bottom:14px;
    color:#475569;
    font-size:16px;
    line-height:28px;
    transition:0.3s;
}

.edu-uniform-card ul li i{
    position:absolute;
    left:0;
    top:6px;
    color:#16a34a;
    font-size:14px;
}

.edu-uniform-card:hover ul li{
    transform:translateX(5px);
}

.active-card{
    background:linear-gradient(135deg,#0d6efd,#198754);
}

.active-card h4,
.active-card ul li,
.active-card ul li i,
.active-card h4 i{
    color:#fff;
}
.trust-board-section{
    padding: 100px 0;
    background: #f4f7fb;
}

.trust-board-heading{
    text-align: center;
    margin-bottom: 60px;
}

.trust-board-heading h2{
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    position: relative;
    display: inline-block;
    margin: 0;
}

.trust-board-heading h2::after{
    content: "";
    width: 90px;
    height: 4px;
    background: #d32f2f;
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 50px;
}

.trust-board-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.trust-board-card{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all .45s ease;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.trust-board-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}

.trust-board-image{
    overflow: hidden;
    position: relative;
}

.trust-board-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.08)
    );
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.trust-board-card:hover .trust-board-image::before{
    opacity: 1;
}

.trust-board-image img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.trust-board-card:hover .trust-board-image img{
    transform: scale(1.08);
}

.trust-board-content{
    padding: 28px 25px;
    text-align: center;
}

.trust-board-content h4{
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.5;
}

.trust-board-content p{
    margin: 0;
    display: inline-block;
    padding: 9px 22px;
    background: #d32f2f;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
}

.trust-board-card:hover .trust-board-content p{
    background: #111;
}
.secretary-image-box{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    background:#fff;
}

.secretary-image-box img{
    width:100%;
    display:block;
    border-radius:25px;
    transition:0.5s ease;
}

.secretary-image-box:hover img{
    transform:scale(1.05);
}

.secretary-main-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    line-height:1.2;
}

.secretary-main-title span{
    color:#0d6efd;
}

.secretary-sub-title{
    font-size:24px;
    font-weight:600;
    color:#444;
    margin-bottom:25px;
}

.secretary-desc{
    font-size:16px;
    line-height:32px;
    color: #252525;
    margin-bottom:20px;
    text-align:justify;
}

.secretary-end{
    font-weight:600;
    color:#111;
}

/* Tablet */
@media(max-width:991px){

    .secretary-main-title{
        font-size:34px;
        text-align:center;
        margin-top:20px;
    }

    .secretary-sub-title{
        text-align:center;
        font-size:22px;
    }

    .col-md-5.float-md-end{
        float:none !important;
        width:100%;
        margin-left:0 !important;
    }
}

/* Mobile */
@media(max-width:767px){

    .secretary-main-title{
        font-size:28px;
    }

    .secretary-sub-title{
        font-size:20px;
    }

    .secretary-desc{
        font-size:15px;
        line-height:1.8;
    }

    .secretary-image-box,
    .secretary-image-box img{
        border-radius:18px;
    }
}
@media(max-width:991px){

    .trust-board-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:767px){

    .trust-board-section{
        padding: 70px 0;
    }

    .trust-board-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-board-heading h2{
        font-size: 32px;
    }

    .trust-board-image img{
        height: 350px;
    }

}

@media(max-width:991px){

    .edu-main-title{
        font-size:36px;
    }

    .edu-uniform-box{
        padding:25px;
    }

    .edu-uniform-top h3{
        font-size:26px;
    }

}

@media(max-width:767px){

    .edu-uniform-zone{
        padding:70px 0;
    }

    .edu-main-title{
        font-size:30px;
    }

    .edu-main-desc{
        font-size:15px;
        line-height:28px;
    }

    .edu-uniform-top{
        flex-direction:column;
        text-align:center;
    }

    .edu-uniform-card{
        padding:20px;
    }

    .edu-uniform-card h4{
        font-size:20px;
    }

}
/* MOBILE RESPONSIVE */
@media (max-width:768px) {
    .wps-subjects-cards {
        grid-template-columns: 1fr;
    }
}
.joint-secretary-image-box{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    background: #fff;
}

.joint-secretary-image-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.08)
    );
    z-index: 1;
}

.joint-secretary-image-box img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.joint-secretary-image-box:hover img{
    transform: scale(1.06);
}

.joint-secretary-tag{
    display: inline-block;
    padding: 9px 24px;
    background: #d32f2f;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.joint-secretary-main-title{
    font-size: 46px;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.3;
}

.joint-secretary-sub-title{
    font-size: 28px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 30px;
}

.joint-secretary-desc{
    font-size: 16px;
    line-height: 2;
    color: #25color: #252525;
    margin: 0;
    text-align: justify;
}

.joint-secretary-desc strong{
    color: #111;
    font-size: 18px;
    letter-spacing: .5px;
}

@media(max-width:991px){

    .joint-secretary-image-box{
        margin-bottom: 35px;
    }

    .joint-secretary-image-box img{
        height: 500px;
    }

    .joint-secretary-main-title{
        font-size: 36px;
    }

    .joint-secretary-sub-title{
        font-size: 24px;
    }

}

@media(max-width:767px){

    .joint-secretary-main-title{
        font-size: 30px;
    }

    .joint-secretary-sub-title{
        font-size: 20px;
        margin-bottom: 22px;
    }

    .joint-secretary-desc{
        font-size: 15px;
        line-height: 1.9;
    }

    .joint-secretary-image-box img{
        height: 380px;
    }

    .joint-secretary-tag{
        font-size: 12px;
        padding: 8px 18px;
    }

}
