@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
  box-sizing: border-box;
}

:root {
  --gap80: clamp(40px, 5.556vw, 80px);
  --gap110: clamp(40px, 7.639vw, 110px);
  --font16: clamp(14px, 1.111vw, 16px);
  --font17: clamp(15px, 1.181vw, 17px);
  --font18: clamp(16px, 1.25vw, 18px);
  --font19: clamp(16px, 1.319vw, 19px);
  --font20: clamp(17px, 1.389vw, 20px);
  --font21: clamp(17px, 1.458vw, 21px);
  --font22: clamp(17px, 1.528vw, 22px);
  --font23: clamp(17px, 1.597vw, 23px);
  --font24: clamp(17px, 1.667vw, 24px);
  --font25: clamp(18px, 1.736vw, 25px);
  --font26: clamp(18px, 1.806vw, 26px);
  --font27: clamp(18px, 1.875vw, 27px);
  --font28: clamp(19px, 1.944vw, 28px);
  --font29: clamp(19px, 2.014vw, 29px);
  --font30: clamp(19px, 2.083vw, 30px);
  --font31: clamp(20px, 2.153vw, 31px);
  --font32: clamp(20px, 2.222vw, 32px);
  --font33: clamp(21px, 2.292vw, 33px);
  --font34: clamp(22px, 2.361vw, 34px);
  --font35: clamp(23px, 2.431vw, 35px);
  --font36: clamp(25px, 2.5vw, 36px);
  --font37: clamp(26px, 2.5vw, 37px);
  --font42: clamp(28px, 3vw, 42px);
  --font45: clamp(30px, 3.125vw, 45px);
  --font50: clamp(32px, 3.5vw, 50px);
  --black: #000;
  --lightgray: #666;
  --darkgrey: #3e3e3e;
  --gray2: #56504d;
  --white: #fff;
  --grey: #858585;
  --purple: #21205c;
  --yellow: #ffbc00;
  --orange: #ff620b;
  --blue: #0275d8;
  --roboto: "Roboto", sans-serif;
  --poppins: "Poppins", sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--font16);
  font-family: var(--roboto);
  font-weight: 400;
  color: var(--black);
  background: #FFFFFF;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

h2 {
  font-weight: 700;
  font-size: var(--font37);
  color: #020C13;
  position: relative;
}

.sub-heading {
  line-height: 1.563rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--white);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

label {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  margin: 0 0 10px;
}

label span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}

.select {
  position: relative;
}

.select::after {
  content: "\e91b";
  font-family: "Syd";
  color: #000;
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 18px;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: #e3e3e3 1px solid;
  padding: 9px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
}

textarea {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: #e3e3e3 1px solid;
  transition: 0.2s ease all;
  resize: none;
  padding: 9px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  width: 100%;
  height: 45px;
  background: #FFFFFF;
  border-radius: 6px;
  border: #EEEEEE 1px solid;
  outline: none;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  color: #000;
  transition: 0.2s ease all;
}

textarea {
  height: 70px;
}

input::-webkit-input-placeholder {
  color: #707070;
  opacity: 1;
}

[type="submit"] {
  border: 1px solid #292929;
  outline: none;
  padding: 13px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #292929;
  border-radius: 0px;
  transition: 0.2s ease all;
  background: #fff;
  text-align: center;
  display: inline-block;
}

[type="submit"]:hover {
  background: #ea3319;
}


.btns {
  display: inline-block;
  font-size: 15px;
  line-height: 1.3157894736842106em;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.4s;
  padding: 12px 30px;
}

.primary-btn {
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--red);
  color: var(--white);
  padding: 12px 43px;
  text-transform: uppercase;
}

.primary-btn:hover {
  background: var(--navyblue);
}

.secondary-btn {
  font-weight: 500;
  font-size: var(--font17);
  text-align: center;
  text-decoration: underline;
  color: var(--red);
}

.secondary-btn:hover {
  color: var(--navyblue);
  text-decoration: underline;
}

.sec-padding {
  padding: var(--gap80) 0;
}

.sec-margin {
  margin: var(--gap80) 0;
}

.mrg-top-80 {
  margin: clamp(45px, 5.556vw, 80px) 0 0;
}

.mrg-bot-80 {
  margin: 0 0 clamp(45px, 5.556vw, 80px);
}

p {
  font-size: var(--font16);
  line-height: 1.5em;
  font-weight: 400;
  margin: 0;
}

.text-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  position: relative;
 
  padding: 0 20px;
}


/* header ======================*/

.header-top-left {
  width: 60%;
}

.header-top-right {
  width: 40%;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-top {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 15px 0 25px;
}

.header-contact-info a,
.header-contact-info i {
  color: var(--white);
}

.header-contact-info a:hover {
  color: var(--orange);
}

.header-contact-info i {
  margin-right: 7px;
}

.header-contact-info,
.header-social-info a {
  padding: 0 15px;
  border-right: 2px solid var(--gray2);
}

.header-contact-info:last-child,
.header-social-info a:last-child {
  border: 0;
}

.header-social-info a i {
  color: var(--white);
}

.header-social-info a:hover i {
  color: var(--orange);
}

.page-header {
  width: 100%;
  position: absolute;
  z-index: 99;
  padding-top: 30px;
}

.main-header {
  background-color: var(--white);
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

}

.page-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-logo a img {
  max-width: 155px;
}



.header-wrapper {
  display: flex;
  align-items: center;
}

.page-logo {
  width: 25%;
  position: relative;
}

.page-logo a {
  padding: 10px;
  background-color: white;
  width: 155px;
  height: 155px;
  position: absolute;
  border-radius: 50%;
  top: -78px;
  left: 17px;
}

.page-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-menu {
  width: 75%;
}

.page-menu ul li {
  position: relative;
  padding: 26px 18px;
  display: inline-block;
  transition: all .3s ease-in-out;
}

.page-menu ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #858585;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.page-menu ul li.active {
  background-color: var(--purple);
  color: var(--white);
}

.page-menu ul li.active:hover {
  color: var(--white) !important;
}

.page-menu ul li.current-menu-item a {
  color: var(--white);
}

.page-menu ul li:hover a {
  color: var(--purple);
}

.page-menu ul li.current-menu-item:hover a {
  color: var(--white) !important;
}

.hamburger {
  display: none;
}

.mobile-menu-close-sec {
  display: none;
}

/* banner sec */

.banner-slider-content {
  position: relative;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-cont-inner {
  width: 706px;
  margin: 0 auto;
  padding: 20px;
}

.banner-cont-inner h1 {
  font-size: var(--font50);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.banner-cont-inner p {
  font-size: 14px;
  color: #fff;
}

.banner-slider .slick-arrow {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.banner-slider .slick-arrow::before {
  display: none;
}

.slick-arrow i {
  font-size: 25px;
  color: #fff;
}

.banner-slider .slick-arrow {
  top: 50%;
  transform: translate(0, -50%);
}

.banner-slider .slick-prev {
  left: 131px;
}

.banner-slider .slick-next {
  left: auto;
  right: 131px;
}

.banner-slider .slick-dots li button {
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 0;
}

.banner-slider .slick-dots {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  bottom: 75px;
}

.banner-slider .slick-dots li.slick-active button {
  background-color: var(--orange);
}

.banner-bg {
  width: 100%;
}

/* footer sec */

.web-footer-inner {
  width: 100%;
  background: var(--purple);
  padding-bottom: 30px;
}

.footer-logo-sec {
  text-align: center;
  position: relative;
}

.footer-logo-sec {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -102px;
  left: 50%;
  background-color: var(--white);
  padding: 15px;
  border-radius: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.web-footer-top {
  padding-top: 110px;
  padding-bottom: 30px;
}

.footer-title {
  font-size: var(--font20);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 16px;
  position: relative;
}

.footer-title::before {
  content: "";
  position: absolute;
  background-color: var(--blue);
  width: 60px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.footer-sec-box p {
  font-size: var(--font15);
  color: var(--white);
}

.link-sec li {
  margin-bottom: 6px;
}

.link-sec li a {
  display: inline-block;
  color: #fff;
  font-size: var(--font16);
  transition: all .3s ease-in-out;
}

.link-sec li a:hover {
  color: var(--orange);
  letter-spacing: 1.5px;
}

.social-media-sec li {
  border-bottom: 1px solid var(--white);
  padding: 12px 0;
}

.social-media-sec li:last-child {
  border: 0;
}

.social-media-sec li p {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: var(--font15);
}

.social-media-sec li p i {
  font-size: 24px;
  color: var(--white);
  padding-right: 14px;
}

.social-media-sec li p a {
  color: var(--white);
  padding-right: 14px;
  transition: all .3s ease-in-out;
}

.social-media-sec li p a:hover {
  color: var(--orange);
}

.web-footer-top-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.web-footer-top-box:first-child {
  width: 32%;
}

.web-footer-top-box:nth-child(2) {
  width: 20%;
}

.web-footer-top-box:last-child {
  width: 32%;
}

/* .web-footer-bottom {
  width: 100%;
  padding: 16px 0;
  background-color: var(--purple);
} */

.web-footer-bottom p {
  text-align: center;
  color: #fff;
}


/* Footer Bottom Wrapper */
.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* ensures responsiveness */
  padding: 15px 20px;
  background: var(--purple);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Left side text */
.web-footer-bottom p {
  margin: 0;
  color: #bbb;
}


/* Right side developer section */
.wp-footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wp-footer-dev p {
  margin: 0;
  color: #bbb;
}

.wp-footer-dev a img {
  width: 80px;
  height: auto;
  display: inline-block;
  transition: opacity 0.3s ease;
  width: 50px;
}

.wp-footer-dev a:hover img {
  opacity: 0.8;
  
}

/* Responsive */
@media (max-width: 600px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.highlight-btn {
  width: 100%;
  background: var(--orange);
  border: 1px solid var(--orange);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  margin: 0;
  line-height: 37px;
  border-radius: 5px;
}

.highlight-btn:hover {
  background-color: transparent;
  color: var(--purple);
}

/* Wrapper */
.latest-event-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0f172a;
  color: #fff;
  padding: 15px 16px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Title on left */
.latest-event-ticker .event-title {
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
  background: var(--orange);
  padding: 10px 15px;
	font-size: 18px;
}

/* Marquee container */
.event-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.event-marquee p {
  margin-bottom: 0px;
}

/* Marquee text */
.event-marquee p {
  display: inline-block;
  padding-left: 100%;
  /* start offscreen right */
  animation: scroll-left 15s linear infinite;
	font-size: 18px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Sticky Vertical Button */
.sticky-vertical-btn {
  position: fixed;
  top: 50%;
  right: 0;
  /* change to left:0 for left sidebar */
  transform: translateY(-50%);
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  width: 50px;
  /* collapsed width */
  height: 120px;
  display: flex;
  flex-direction: column;
  /* stack texts vertically */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  writing-mode: vertical-rl;
  /* vertical text */
  text-orientation: mixed;
  font-weight: 600;
  transition: width 0.4s ease, background 0.3s ease;
  z-index: 9999;
  padding: 5px 0;
}

/* Default vertical text */
.sticky-vertical-btn .default-text {
  display: block;
  margin-bottom: 0;
  transition: margin 0.3s ease;
}

/* Hover text hidden by default */
.sticky-vertical-btn .hover-text {
  display: none;
  margin-top: 5px;
}

/* On hover: expand width and show hover text */
.sticky-vertical-btn:hover {
  width: 80px;
  /* expanded width */
  background: var(--purple);
  border-radius: 6px;
  justify-content: center;
}

/* Show hover text under Register */
.sticky-vertical-btn:hover .hover-text {
  display: block;
}

/* Academic About Section */
.academic-about {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.academic-about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.academic-about .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.academic-about .text {
  flex: 1 1 500px;
  text-align: left;
}

.academic-about .text .icon img {
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(60%) sepia(68%) saturate(6068%) hue-rotate(355deg) brightness(106%) contrast(101%);
}

.academic-about .text h4,
.academic-gallery .text-content h4,
.team-title h4,
.about-text h1,
.section-title h2,
.gallery-title,
.school-notice-container h2,
.alumni-title {
  font-size: var(--font32);
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
  position: relative;
  text-transform: capitalize;
}

.academic-about .text h4 span,
.team-title span,
.academic-gallery .text-content h4 span,
.about-text h1 span,
.section-title h2 span,
.gallery-title span,
.school-notice-container h2 span,
.alumni-title span {
  font-weight: 700;
  color: var(--blue);
}

.academic-about .text h4::before,
.academic-gallery .text-content h4::before,
.team-title h4::before,
.section-title h2::before,
.gallery-title::before,
.school-notice-container h2::before,
.alumni-title::before {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--blue);
  position: absolute;
  bottom: -10px;
  /* left: 0; */
}

.academic-gallery .text-content h4 {
  color: var(--white) !important;
}

.academic-about .text h2 {
  font-size: var(--font28);
  font-weight: 700;
  margin: 20px 0 15px;
  color: #000;
}

.academic-about .text p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.academic-about .text .btn-readmore,
.about-text .btn-readmore {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid var(--blue);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.academic-about .text .btn-readmore:hover,
.about-text .btn-readmore:hover {
  background: var(--blue);
  color: #fff;
}

.academic-about .image {
  flex: 1 1 400px;
  text-align: center;
}

.academic-about .image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  /* optional */
}


.notice-section h4 {
  text-align: center;

}

.notice-section {
  background: var(--blue);
  text-align: center;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;

}

.notice-section h4 {
  font-size: var(--font25);
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 9px;
}

.notice-board {
  max-height: 180px;
  /* 3 items visible at a time (adjust item height) */
  overflow: hidden;
  position: relative;
}

/* Scrolling animation */
.notice-board-inner {
  display: flex;
  flex-direction: column;
  animation: scrollNotices 10s linear infinite;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-bottom: 5px;
}

.notice-item p {
  margin: 0;
  font-size: 16px;
}

.view-icon {
  color: #007bff;
  font-size: 18px;
  text-decoration: none;
}

.view-icon:hover {
  color: #0056b3;
}

/* Scroll animation keyframes */
@keyframes scrollNotices {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}


/* Academic Gallery Section */
.academic-gallery {
  background-image: url('../img/academicGallery.jpg');
  /* adjust path */
  background-size: cover;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  position: relative;
  overflow: hidden;

  background-attachment: fixed;
}

.academic-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}

.academic-gallery .gallery-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.academic-gallery .text-content {
  max-width: 330px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.academic-gallery .text-content .icon img,
.team-title img,
.icon img {
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%) invert(60%) sepia(68%) saturate(6068%) hue-rotate(355deg) brightness(106%) contrast(101%);
}


.academic-gallery .text-content h4 strong {
  font-weight: 700;
}

.academic-gallery .text-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.academic-gallery .image-gallery {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.academic-gallery .image-gallery a img {
  width: 100%;
  height: 230px;
	object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.academic-gallery .image-gallery a img:hover {
  transform: scale(1.05);
}

.text-content .btn-readmore {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;

  border-radius: 4px;
  transition: all 0.3s ease;
}

.text-content .btn-readmore:hover {
  background: var(--blue);
  color: #fff;
}

.academic-gallery .line-bottom,
.team-section .line-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.team-section .line-top {
  top: -26px;
}




/*team teacher*/
/* Section base */
.teachers-section {
  padding: 60px 0 120px;
  background: #fff;
  text-align: center;
}

.teachers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* View all button */
.view-all-btn {
  border: 2px solid var(--blue);
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--purple);
  border: 2px solid var(--purple);
  color: #fff;
}

/* Teacher items */
.teacher-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.teacher-item:hover {
  transform: translateY(-5px);
}

.teacher-item-img img {
  width: 100%;
	height: 340px;
	object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.teacher-item h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.teacher-item p {
  color: #777;
  font-size: 14px;
  margin: 0;
}

/* Swiper customization */
.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  width: 300px;
  /* controls visible size */
}


/* Modal base */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  overflow-y: auto;
}

/* Modal box */
.modal-content {
  background: #fff;
  margin: auto;
  max-width: 900px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* HOD Section */
.hod-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.hod-section img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--purple);
  border-radius: 10px;
}

.hod-info h2 {
  margin: 0;
  font-size: 22px;
  color: var(--purple);
}

.hod-info p {
  margin: 5px 0;
  color: #444;
}

/* Teachers Table */
.teacher-list-title {
  margin: 15px 0 25px;
  font-size: 24px;
  color: #333;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.teachers-table-wrapper {
  height: 300px;
  overflow-x: auto;
}

.teachers-table {
  width: 100%;
  border-collapse: collapse;
}

.teachers-table th,
.teachers-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--purple);
  text-align: left;
  font-size: 15px;
}

.teachers-table th {
  background: #f4f6f9;
  font-weight: 600;
  color: #333;
}

.teachers-table tr:hover {
  background: #f9fcff;
}


/*about us pages*/

.inner-banner {
  background-color: #111111;
  padding-bottom: 63px;
  padding-top: 20px;
}

.main_title {
  margin-top: 220px;
}

.contact-page-details {
  padding-bottom: 50px;
}

.contact-page-details .contact-address,
.contact-page-details .contact-email,
.contact-page-details .contact-phone {
  text-align: center;
  border: 2px solid #cccccc;
  padding: 11px;
}

.contact-address,
.contact-email,
.contact-phone {
  margin: 7px 0;
}

.contact-page-details .inner-cont i {
  font-size: 35px;
      color: var(--purple);
  padding: 14px 0;
}

.contact-page-details span {
  font: 600 18px var(--poppins);
  padding-bottom: 15px;
  color: var(--purple);
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  transition: color 0.3s;
}

.textarea-icon i {
  top: 20px;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 15px;
  background-color: #fafafa;
}

.input-icon input:focus,
.input-icon textarea:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

.input-icon input:focus+i,
.input-icon textarea:focus+i {
  color: #007bff;
}

.btn-primary {
  background: linear-gradient(90deg, #007bff, #0056d2);
  border: none;

  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0056d2, #0040aa);
  transform: translateY(-2px);
}


/*gallery*/
.gallery-section {
  padding: 60px 0 130px;
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: #222;
  margin-bottom: 30px;

}

.tabs {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.tabs input[type="radio"] {
  display: none;
}

.tab-list {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #eee;
  margin: 0;
  padding: 0;
}

.tab-list label {
  display: block;
  padding: 12px 10px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.tab-list label:hover {
  color: var(--orange);
}

.tab-list i {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.slider {
  position: relative;
  height: 3px;
  margin-top: -2px;
}

.indicator {
  position: absolute;
  height: 3px;
  background: var(--orange);
  width: 33.33%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

#tab2:checked~.slider .indicator {
  left: 33.33%;
}

#tab3:checked~.slider .indicator {
  left: 66.66%;
}

.tab-content {
  margin-top: 25px;
}

.tab-content section {
  display: none;
  animation: fadeIn 0.5s ease;
}

#tab1:checked~.tab-content section:nth-child(1),
#tab2:checked~.tab-content section:nth-child(2),
#tab3:checked~.tab-content section:nth-child(3) {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
	object-fit: cover;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.gallery-grid a::after {
  content: "\f002";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.08);
  filter: brightness(70%);
}

.gallery-grid a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/*notice*/
/* Container */
.school-notice-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual notice entry */
.school-notice-entry {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.notice-text {
  flex: 1;
  /* take remaining space */
}

/* Right-side icon */
.notice-view-icon {
  flex-shrink: 0;
  margin-left: 10px;
}

.notice-view-icon a {
  color: var(--purple);
  font-size: 18px;
  transition: 0.3s;
}

.notice-view-icon a:hover {
  color: #555;
}


.school-notice-entry:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
}

/* Date block */
.notice-date-block {
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
}

.notice-day {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.notice-month {
  font-size: 12px;
  text-transform: uppercase;
}

/* Notice text */
.notice-text h4 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 16px;
}

.notice-text p {
  margin: 0 0 8px;
  color: #555;
  font-size: 14px;
}

/* Optional: smooth scrolling effect */
.school-notice-wrapper::-webkit-scrollbar {
  width: 0;
  background: transparent;
}


/*new*/
/* HEADER SECTION */
.about-header {
  background: #f1f0f0;
  padding: 100px 0;
  position: relative;
}

.about-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
}

.about-text p {
  margin: 20px 0;
  font-size: 17px;
  color: #555;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;

  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--orange);
  outline: 0;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* CARDS */
.about-cards {
  text-align: center;
  background: #fff;
}

.section-title h2 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
}

.section-title p {
  color: #555;
  font-size: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.about-cards {
  margin: var(--gap80) 0 40px;
}

.card {
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;

}

.card:hover {
  /* transform: scale(1.1); */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1),
    0 12px 25px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 36px;
  color: var(--orange);
  margin-bottom: 10px;
}

.card h4 {
  margin-bottom: 13px;
  color: var(--purple);
}

/* DIRECTOR MESSAGE */
.about-director {
  background: #f9fafc;
}

.director-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.director-img img {
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 380px;
}

.director-text h2 {
  color: #1a237e;
  margin-bottom: 15px;
}

.director-text h5 {
  margin-top: 15px;
  color: #555;
}

/* NUMBERS SECTION */
.about-numbers {
  background: linear-gradient(120deg, #1a73e8, #1565c0);
  color: #fff;
  text-align: center;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.num-box h2 {
  font-size: 40px;
  margin-bottom: 5px;
}

.principal-desk {
  background: linear-gradient(120deg, #f9faff, #ffffff);
  padding: 100px 0 150px;
  position: relative;
  overflow: hidden;
}

.principal-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
}

.principal-image {
  flex: 1;
  position: relative;
  max-width: 420px;
}

.principal-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.principal-image:hover img {
  transform: scale(1.03);
}

.principal-image .badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--purple);
  color: #fff;
  font-size: 22px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Text Section */
.principal-text {
  flex: 1.5;
}

.principal-text h2 {
  font-size: 34px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.principal-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--orange);
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.principal-text .quote {
  font-size: 18px;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.principal-text .quote::before {
  content: "“";
  font-size: 40px;
  color: var(--black);
  position: absolute;
  left: 0;
  top: -10px;
}

.principal-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.principal-info {
  margin-top: 25px;
}

.principal-info h4 {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 20px;
}

.principal-info span {
  color: #666;
  display: block;
  margin-bottom: 15px;
}

.principal-info .signature img {
  width: 150px;
  opacity: 0.8;
}

/* Background Decoration */
.principal-desk::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 50%;
}

.principal-desk::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(26, 115, 232, 0.08);
  border-radius: 50%;
}

.fixed-header .main-header {
  position: fixed !important;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  transition: all .4s ease;
  /* transform: translateY(100px); */
  padding: 0 0 !important;
  box-shadow: 2px 4px 8px rgba(73, 73, 73, .15);
}

.fixed-header .header-top {
  display: none;
}

.fixed-header .page-logo a {
  top: -34px;
  width: 140px;
  height: 140px;
}

.fixed-header .page-menu ul li {
  padding: 18px 18px;
}

/*donation button*/

.header-donation {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.donation-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* space between heart and text */
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 50px;
  /* pill shape */
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 75, 43, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.donation-btn i {
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.donation-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.donation-btn:hover::after {
  left: 150%;
}

.donation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4);
}

.donation-btn:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.view-icon i {
  color: var(--purple);
}

.about-banner {
  position: relative;
}

.about-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.about-us-banner-content {
  text-align: center;
  padding: 250px 0 100px;
}

.about-banner-title h2,
.contact-title h2 {
  font-size: var(--font42);
  color: var(--white);
  line-height: 3.375rem;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.school-notice-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  color: #222;
  margin-bottom: 30px;
}

.school-notice-container,
.contact-box {
  margin: 60px 0 130px;
}

.media-small p,
.media-small a {
  font-size: var(--font16);
  color: #3e3e3e;
  font-weight: 400;
  line-height: 28px;

}

.media-small a {
  display: block;
}

.contact-box-height {
  height: 100%;
}

.alumni-registration-section {
  background: #f5f8ff;
  padding: 60px 0 120px;
  text-align: center;
}

.alumni-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.alumni-subtitle {
  font-size: 16px;
  color: #555;
  margin: 15px 0 40px;
}

.alumni-registration-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a73e8;
  outline: none;
  box-shadow: 0 0 6px rgba(26, 115, 232, 0.3);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.total-fee {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  color: #ff4b2b;
}

.alumni-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 75, 43, 0.35);
}

.alumni-submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.alumni-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4);
}

.alumni-submit-btn:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.form-group label span {
  display: inline-block;
}

/* 9-10-25 */

.cloud-img {
  position: absolute;
  bottom: 0;
	right: 0;
	left: 0;
}

.notice-section h4::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--purple);
  position: absolute;
  bottom: 0;
}

.footer-cloud {
	width: 100%;
  filter: brightness(0) saturate(100%) invert(10%) sepia(58%) saturate(2872%) hue-rotate(232deg) brightness(94%) contrast(96%);
}

.section-title .icon,
.gallery-section .icon,
.school-notice-container .icon,
.alumni-registration-section .icon {
  display: flex;
  justify-content: center;
}

.page-nav-sec {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hod-info {
  padding-left: 20px;
}

.teacher-list-title::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: var(--orange);
  position: absolute;
  bottom: -6px;
}

.page-back {
  /* display:inline-block; */
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--blue);
  display: none;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in-out;
  z-index: 9;
}

.page-back.show {
  display: flex;
}

.page-back:hover {
  background-color: var(--purple);
}

.page-back i {
  padding: 0;
  color: var(--white);
}
.root-data-givewp-embed{
  margin: 20px 0px 100px ;
}
.donor-section {
  align-items: center;
}

.donor-slider {
  height: 300px; /* adjust as needed */
  overflow: hidden;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

.donor-item {
  font-size: 16px;
  color: #333;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}
.no_recent{
  padding: 50px;
    text-align: center;
    margin-bottom: 100px;
}

/* === Page Loader === */
/* === PAGE LOADER === */
#page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  color: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;

  /* Animated background */
  background: linear-gradient(270deg, var(--orange), var(--purple));
  background-size: 800% 800%;
  animation: gradientBG 10s ease infinite;
}

/* Gradient animation keyframes */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* book */
.book {
  width: 80px;
  height: 60px;
  perspective: 200px;
  margin-bottom: 20px;
}

/* pages */
.paged_book {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transform-origin: left center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: flip 1.4s ease-in-out 2 forwards; /* 👈 play twice only */
}

/* slight delay for realism */
.paged_book:nth-child(2) {
  animation-delay: 0.2s;
}
.paged_book:nth-child(3) {
  animation-delay: 0.4s;
}

/* flipping animation */
@keyframes flip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(-160deg); }
  100% { transform: rotateY(-180deg); }
}
.loader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}


.about-text h4 {
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    text-transform: capitalize;
}
.about-text h4 span {
    font-weight: 700;
    color: var(--orange);
}

/* ======= Donation Section ======= */
.donation-section {
  max-width: 900px;
  margin: 60px 0px 100px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* ======= Left Side (Info) ======= */
.donation-info {
  flex: 1 1 50%;
  background: linear-gradient(135deg, #004aad, #007bff);
  color: #fff;
  padding: 40px;
}
.donation-info h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.donation-info p {
  font-size: 15px;
  line-height: 1.6;
}
.donation-info .donation-points {
  margin-top: 20px;
}
.donation-info .donation-points li {
  list-style: none;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.donation-info .donation-points i {
  color: #ffd54f;
}

/* ======= Right Side (Form) ======= */
.donation-form {
  flex: 1 1 50%;
  padding: 40px;
}
.donation-form h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #004aad;
}
.donation-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.donation-form input, 
.donation-form select, 
.donation-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.donation-form input:focus, 
.donation-form textarea:focus {
  border-color: #004aad;
}

.donation-form .amount-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.donation-form .amount-box input {
  flex: 1;
}

.donation-form button {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.donation-form button:hover {
  background: #00357a;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .donation-section {
    flex-direction: column;
  }
  .donation-info, .donation-form {
    flex: 1 1 100%;
  }
}

.see-all{
  margin-top: 15px;
}



.honor-heading {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  color: var(--blue);
  padding-bottom: 15px;

}

.honor-heading::after {
  content: ""; /* <-- Required! */
  display: block;
  height: 1px;
  width: 80px;
  margin: 8px auto 0; /* centers the line under heading */
  background-color: #333; /* cleaner than border-bottom */
  border-radius: 2px;
}




.honor-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  max-width: 250px;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.honor-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 8px;
}

.honor-date {
  font-size: 0.95rem;
  color: #777;
  font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
  color: #007bff;
}

.swiper-pagination-bullet {
  background: #007bff;
}

@media (max-width: 768px) {
  .honor-card {
    max-width: 90%;
  }
}


/* Hide Swiper's default icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

/* Custom navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 35px !important;
  height: 35px !important;
  background: #007bff;
  border-radius: 50% !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* Positioning */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}
.honor-slider-section {
  width: 360px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


.honor-slider-section {
  background: linear-gradient(-45deg, #f8d7e8, #d1e8ff, #fff3cd, #e2f0cb);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  color: #333;

  border-radius: 16px;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* tlist */
.wrap{
    max-width:1200px;
    margin:0 auto;
  }

  header.page-head{
   
max-width: 1100px;
    margin: 0 auto; /* center full header */
    padding: 40px 20px;
    text-align: center; /* center all text */
  }
.page-title {
    display: flex;
    flex-direction: column; /* stack logo + text */
    align-items: center; /* center all items */
    gap: 15px; /* add space between logo + text */
    margin-bottom: 30px;
}

  /* .logo {
    width:56px;height:56px;border-radius:10px;
    background:linear-gradient(135deg,var(--blue),var(--orange));
    display:grid;place-items:center;color:white;font-weight:700;font-size:18px;
    box-shadow:0 6px 18px rgba(15,111,255,0.12),inset 0 -6px 18px rgba(0,0,0,0.06);
  } */
  h1{font-size:20px;margin:0}
  p.lead{margin:0;color:var(--muted);font-size:14px}

  /* controls */
  .controls{
   

    display: flex;
    flex-direction: column;
    align-items: center; /* center search + filters */
    gap: 20px;
  }
  
  .filters{
   display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center buttons */
    gap: 12px; /* spacing between buttons */
  }
  .filters .tab {
	  width:158px;
    border: 1px solid #ccc;
    padding: 10px 18px;
    border-radius: 25px;
    background: #f4f4f4;
    cursor: pointer;
    transition: 0.3s ease;
	  color: #000;
}
  .filters .tab.active,
.filters .tab:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

  /* groups */
  .groups{display:grid;gap:26px;margin-top:26px}
  .group{
	      margin-bottom: 100px;
    background:linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.86));
    border-radius:12px;
    padding:18px;
    box-shadow:0 10px 30px rgba(12,17,23,0.04);
  }
  .group-head{
    display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;gap:12px;
  }
  .group-title{
    display:flex;align-items:center;gap:12px;
  }
  .badge{
    display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;
    background:rgba(15,111,255,0.08);color:var(--blue);font-weight:600;font-size:13px;
  }
  .group-sub{color:#6b7280;font-size:13px;margin:0}

  /* grid of cards */
  .grid{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap:14px;
  }
  .card{
    background:var(--white);padding:12px;border-radius:12px;border:1px solid rgba(15,23,42,0.04);
    display:flex;gap:12px;align-items:center;
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .card:hover{transform:translateY(-6px);box-shadow:0 12px 30px rgba(2,6,23,0.08);}
  .avatar{
    width:64px;height:64px;border-radius:10px;flex:0 0 64px;
    background:linear-gradient(180deg,#e6eefc,#f8fbff);display:grid;place-items:center;font-weight:700;
    color:var(--orange);font-size:18px;
  }
  .meta{flex:1}
  .name{font-weight:700;margin:0 0 4px 0}
  .role{font-size:13px;color:var(--muted);margin:0}
  .extra{font-size:12px;color:#556; margin-top:6px}

  /* small helpers */
  .hidden{display:none !important}
  @media (max-width:720px){
    .search input{width:120px}
    .page-head{flex-direction:column;align-items:flex-start;gap:12px}
  }


/* new */
 .grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap:14px;
}

/* Center HOD card since only one person */
.group[data-group="hod"] .grid {
  justify-content:center;
}

/* Image avatar override */
.card img.photo {
  width:64px;
  height:64px;
  border-radius:10px;
  object-fit:cover;
}

/* Show More button */
.show-more-btn {
  display:block;
  margin:14px auto 0;
  padding:8px 20px;
  border-radius:8px;
  background:var(--blue);
  color:white;
  border:none;
  cursor:pointer;
  font-size:14px;
}

#groups section:last-of-type {
    margin-bottom: 100px; /* your value */
}


.current-menu-item {
    background-color: var(--purple);
    color: var(--white);
}
.current-menu-item:hover {
   
    color: var(--white);
}

#successModal{display: flex;}

.invite-pass{
	margin:50px auto 100px !important;
}
.group:last-child,
.teaching-group{
	margin-bottom: 100px;
}

.line-top{
	width: 100%;
}

.warn_block {
    border: 1px solid var(--blue);
    border-radius: 14px;
}

.pj-wrapper {
    padding: 45px 30px 112px;
}

.exs-wrapper {
    margin-bottom: 105px;
}


