@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;

}


p {
  font-size: 18px !important;
  font-weight: 300 ! important;
}


.philosopher-regular {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.philosopher-bold {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.philosopher-regular-italic {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
}



.top-bar {
  color: white;
  text-align: center;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  background-color: white;


}

.social-warper {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--secondary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-warper2 {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--primary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-warper3 {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--secondary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-link {
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #015AA9;
  border-radius: 0px 0px 0px 16px;
}



.hide-logo {
  opacity: 0;
  width: 80px;
}



.abs-logo {
  position: absolute;
  left: 4px;
  top: 2px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.abs-logo img {

  width: 156px;
}

.logo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo2 h2,
.logo2 h3 {
  margin: 0;
  padding: 0px;
  line-height: 1;
}

/* Primary school name */
.logo2 h2 {
  font-size: 39px;
  color: #015AA9;
  /* A professional deep blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Subtitle/Convent School */
.logo2 h3 {
  font-size: 26px;
  color: #4a5568;
  font-weight: 400;
  text-transform: uppercase;

}

.logo2 hr {
  padding: 0px;
  margin: 7px 0px;
}

/* Remove default margins from headers for tighter spacing */
.abs-logo h2,
.abs-logo h3 {
  margin: 0;
  padding: 0px;
  line-height: 1;
}

/* Primary school name */
.abs-logo h2 {
  font-size: 59px;
  color: #015AA9;
  /* A professional deep blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Subtitle/Convent School */
.abs-logo h3 {
  font-size: 40px;
  color: #4a5568;
  font-weight: 400;
  text-transform: uppercase;

}

.abs-logo hr {
  padding: 0px;
  margin: 7px 0px;
}

.top-bar-left ul {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  gap: 40px;
  color: #aad3ff;
  margin: 0px;
  padding: 0px;
  font-size: 16px;

}

.top-bar-right {
  background-color: transparent;
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0px;
  padding: 0px;
  font-size: 16px;


}

.top-bar-right a {
  text-decoration: none;
  color: white;


}

.top-bar-right i {

  color: #015AA9;
  font-size: 16px;
  background-color: white;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}


/* Navbar link */
.nav-link {
  position: relative;


}

/* Hover effect */
.nav-link:hover {
  color: #e63946;
}

/* "New" badge */
.nav-link .new {
  background: #e63946;
  color: #fff;
  font-size: 10px;
  margin-top: -10px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 1px;
  animation: pulse 1.5s infinite;

}


.white-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #fff;
  color: #222222;
  /* Text color */
  font-weight: 600;
  border: 2px solid white;
  /* Border color */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Pulse animation for New badge */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Target section spacing fix (for fixed header) */
#events {
  scroll-margin-top: 100px;
  /* adjust based on header height */
}


.navbar {

  background-color: white !important;
  padding: 10px 0px !important;
}

.phone-navbar {
  background-color: white !important;
  position: fixed !important;
  top: 0px !important;
  width: 100%;
  z-index: 999 !important;
  display: none;
}

.phone-navbar img {
  width: 100px;
}


.main-header,
.second-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}


.header2 {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  background: white;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.6px);
  -webkit-backdrop-filter: blur(9.6px);
  padding: 6px 0px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);


}

.navbar-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header2 nav {
  padding: 5px;
}

.logo2 img {
  width: 90px;

}



.nav-links i {
  font-size: 12px;
  color: #62A4D2;
}

.nav-link {
  font-size: 19px !important;
  color: var(--text-color) !important;
  margin-right: 10px !important;

}

.nav-links ul li a {
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.3s ease;
}


.nav-links ul li a:hover {
  color: #007bff;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}


.nav-btn .btn-text {
  white-space: nowrap;
}

.nav-btn .btn-icon {
  width: 36px;
  height: 36px;
  background: var(--background-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}


.nav-btn:hover .btn-icon {
  transform: translateX(5px);
  background: #e9f4ff;
}


/* Navbar */
.custom-navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0d1117;
  display: flex;
}


/* .custom-item {
  position: relative;
} */

/* Nav link */
.custom-link {
  color: var(--primary-color);
  text-decoration: none;

  font-size: 15px;
}

/* Arrow */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Dropdown box */
.custom-dropdown {
  position: absolute;
  top: 90%;
  left: 0;
  min-width: 100vw;
  background: #ffffff;
  border-radius: 3px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.35s ease;
}

/* Dropdown links */
.custom-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.custom-link li a svg {
  transition: transform 0.3s ease;
}

.custom-dropdown li a:hover {
  background: #f0f6ff;
  color: #8f009e;
}

/* Align text + icon */
.custom-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron default state */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Rotate chevron when dropdown is active */
.custom-item:hover .custom-link svg {
  transform: rotate(180deg);
}

/* Hover effects */
.custom-item:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-item:hover .arrow {
  transform: rotate(-135deg);
}

.poster {
  margin-top: 150px;
}

.carousel-item img {
  height: 690px !important;
  object-fit: cover !important;
}


.poster-tag {
  background: transparent;
  margin-top: -66px;
  z-index: 999;
  position: relative;


}

.tag-box-main {
  padding: 40px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 10px;
}

.tag-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tag-box img {
  width: 65px;
}

.tag-box h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1c2c4c;
}

.tag-box p {
  margin: 4px 0 0;
  color: #999;
  font-size: 14px;
}




.about-university {

  background: url('/image/bg.jpg');
  background-position: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  color: white;
  margin-top: -96px;
}

.sub-title {
  color: #99cdfb;
  font-weight: 600;
}

.title {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
}

.read-btn {
  color: #3AC172;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-box i {
  font-size: 28px;
  color: #39c172;
}

.ab {

  backdrop-filter: blur(10px);
  border-radius: 5px;
}

.about-des p {
  font-size: 21px !important;
  font-weight: 300 !important
}


.point-box-main {

  margin: auto;
  display: flex;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-radius: 10px;

}

/* LEFT IMAGE */

.left {
  width: 40%;
  position: relative;
  border-radius: 10px;

}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0px 0px 10px;

}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4CAF50;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

/* RIGHT CONTENT */


/* TABS */

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #777;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: #1f3f75;
  font-weight: 600;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #1f3f75;
}

/* CONTENT */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fade .4s ease;
}

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

  to {
    opacity: 1
  }
}

.vision-section {
  padding: 70px 0px;
  background-color: #FFF2E6;

  color: white;

}

.section-title {
  font-size: 42px;
  color: #015AA9;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 0px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: auto;
  background: #015AA9;
  margin-top: 10px;
}



.section-desc {
  color: black;

  font-weight: 300;
  text-align: center;

}



.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.vision-box {
  background: transparent;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
}

/* Box 1 */
.vision-box:nth-child(1) {
  background-color: #e6f9e6;
}

.vision-box:nth-child(1) h3 {
  color: #2e7d32;
}

.vision-box:nth-child(1) p {
  color: #2e7d32;
}

/* Box 2 */
.vision-box:nth-child(2) {
  background-color: #e6f0ff;
}

.vision-box:nth-child(2) h3 {
  color: #1a4fb3;
}

.vision-box:nth-child(2) p {
  color: #1a4fb3;
}

/* Box 3 */
.vision-box:nth-child(3) {
  background-color: #feeaff;
}

.vision-box:nth-child(3) h3 {
  color: #6b0171;
}

.vision-box:nth-child(3) p {
  color: #76067b;
}

.vision-box:hover {
  transform: translateY(-6px);
}

/* common heading style */
.vision-box h3 {
  font-size: 29px;
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
}


.right {
  width: 60%;
  padding: 20px;
  transition: 0.4s ease;
  border-radius: 12px;
}



.tab-content {
  padding: 25px;
  border-radius: 10px;
}


.tab-content h2 {
  color: #1f3f75;
  margin-bottom: 15px;
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.tab-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}



.message-section {
  background: white;
  padding: 70px 0;
}

/* principal image */
.photo-block {
  position: relative;
}

.photo-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 99;
}

/* message card */
.text-block {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-left: -80px;
  padding-left: 90px;
  position: relative;
}



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

/* quote */
.quote-box {
  background: #015AA9;
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-style: italic;
}

/* signature */

.signature {
  margin-top: 30px;
  text-align: right;
}

.signature-name {
  font-size: 20px;
  font-weight: 600;
  color: #015AA9;
}

.signature-role {
  color: #777;
}

.kassm {
  padding: 70px 0px;
}

.philosophy-title {
  color: #1f3f75;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.kassm-box {
  border: 2px solid #1f3f75;
  /* Dark blue border */
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 40px;
  position: relative;
  margin-top: 60px;
  /* For heading placement */
}

/* Boxed Section Title - "KASSM APPROACH" */
.kassm-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  /* Pull header up onto the border */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  /* Matches container background to 'hide' the border behind */
  padding: 0 15px;
}

/* Horizontal lines within header box */
.kassm-box-header span.line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #1f3f75;
  margin: 0 10px;
}

.kassm-box-header span.text {
  color: #1f3f75;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text content inside the boxed section */
.kassm-top-quotes {
  color: #1f3f75;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.kassm-top-quotes blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}

.kassm-top-quotes h3 {
  font-weight: 600;
  font-size: 18px;
}

/* Icons Row */
.icons-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  /* Good practice for smaller screens, though image is a straight row */
  margin-bottom: 10px;
  /* Space between icons and lower paragraphs */
}

/* Individual icon card */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  /* Adjust width to fit 5 items with spacing */
  text-align: center;
  margin-bottom: 15px;
}

/* Icon styling */
.icon-card img {
  width: 70px;
  /* Adjust size based on image */
  height: auto;
  margin-bottom: 10px;
}

/* Icon text */
.icon-card p {
  color: #1f3f75;
  font-weight: 600;
  font-size: 19px;
}

/* Footer paragraph - outside the boxed section */
.philosophy-paragraph {
  color: #333;
  /* Dark gray for readability */
  line-height: 1.8;
  font-size: 15px;
  margin-top: 20px;
}




.achievement-section {
  padding: 70px 0;
  background: url("/image/bg.jpg");
  position: relative;
  overflow: hidden;
}

.achievement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(1, 90, 169, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(216, 240, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.achievement-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid #D8F0FF;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  margin-top: 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 90, 169, 0.1);
}



.achievement-box:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #015AA9;
  box-shadow:
    0 25px 50px rgba(1, 90, 169, 0.25),
    0 0 30px rgba(1, 90, 169, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.achievement-box:hover::before {
  animation: shimmer 1s infinite;
  opacity: 1;
}

.counter {

  font-size: 45px;
  font-weight: 800;

  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.counter {

  font-size: 45px;
  font-weight: 800;

  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.counter::after {
  content: '+';
  font-size: 45px;
  color: #015AA9;
  opacity: 0.8;
}

.percentage {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.percentage::after {
  content: '%';
  font-size: 30px;
  color: #015AA9;
  opacity: 0.8;
}

.achievement-box p {

  font-size: 18px !important;

  color: #015AA9;
  margin: 0;
  text-transform: uppercase;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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



.achievement-box {
  animation: fadeInUp 0.8s ease forwards;
}

.achievement-box:nth-child(1) {
  animation-delay: 0.1s;
}

.achievement-box:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-box:nth-child(3) {
  animation-delay: 0.3s;
}

.achievement-box:nth-child(4) {
  animation-delay: 0.4s;
}

.connect-section {
  background: #D8F0FF;
  color: #015AA9;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.connect-data {
  position: relative;
  z-index: 2;
}

.connect-section .head-image {
  margin-top: 10px;
  max-width: 80px;
  opacity: 0.8;
  filter: brightness(1.1);
}

.heading-section {
  text-align: center;
  margin-bottom: 60px;
}




.accordion-flush .accordion-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid #D8F0FF;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(1, 90, 169, 0.1);
  transition: all 0.3s ease;
}

.accordion-button {
  background: transparent;
  color: #015AA9;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.5;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #D8F0FF, white);
  color: #015AA9;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 #015AA9;
}

.accordion-button::after {
  filter: hue-rotate(220deg) brightness(1.2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23015AA9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:hover {
  background: rgba(216, 240, 255, 0.5);
  color: #015AA9;
}

.accordion-body {
  background: white;
  color: #015AA9;
  font-size: 15px;
  line-height: 1.7;
  padding: 25px;
  border-top: 1px solid #D8F0FF;
}





.services-section {
  background-color: #D8F0FF;
  padding: 70px 0;
}

/* ── Card ── */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  padding: 20px;
  flex-direction: column;
}

/* ── Image ── */
.service-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content ── */
.service-content {
  padding: 24px 4px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-btn {
  background-color: #015AA9;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  width: max-content;

}

.service-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e5a;
  /* dark navy */
  margin-bottom: 12px;
}

.service-content p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* ── Arrow Link ── */
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: fit-content;
}

.service-arrow:hover {
  transform: translateX(4px);
}

/* First card arrow — teal */
.teal-arrow {
  color: #2abfbf;
}

/* Other cards arrow — orange/coral */
.orange-arrow {
  color: #e8603c;
}



.gallery-section {
  position: relative;
  padding: 70px 0;
  background: url("/image/bg.jpg");
}


.heading-section3 .heading-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #015AA9;
  color: #fff;
  font-size: 0.85rem;
}

.heading-section3 .head-title {
  font-weight: 700;
  margin-top: 12px;
}

.heading-section3 .head-title span {
  color: #015AA9;
}

.tag-btn {
  margin: 4px;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  border: 1px solid #ced4da;
}

.tag-btn.active {
  background: #015AA9;
  color: #fff;
  border-color: #015AA9;
}

.gallery-img-events {
  border-radius: 10px;
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img-events:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}



.why-us-section {
  background-color: #ffffff;
  color: #015AA9;
  padding: 70px 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.why-us-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

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

.why-us-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

/* Different colors */
.why-us-item:nth-child(1) .why-us-number {
  background: #27ae60;
}

.why-us-item:nth-child(2) .why-us-number {
  background: #3498db;
}

.why-us-item:nth-child(3) .why-us-number {
  background: #9b59b6;
}

.why-us-item:nth-child(4) .why-us-number {
  background: #e67e22;
}

.why-us-item:nth-child(5) .why-us-number {
  background: #1abc9c;
}

.why-us-item:nth-child(6) .why-us-number {
  background: #e74c3c;
}

.why-us-item:nth-child(7) .why-us-number {
  background: #16a085;
}

.why-us-item:nth-child(8) .why-us-number {
  background: #8e44ad;
}

.why-us-item:nth-child(9) .why-us-number {
  background: #f39c12;
}

.why-us-item:nth-child(10) .why-us-number {
  background: #2c3e50;
}


.why-us-item:nth-child(1) {
  background: #eafaf1;
}

.why-us-item:nth-child(2) {
  background: #ebf5ff;
}

.why-us-item:nth-child(3) {
  background: #f5eef8;
}

.why-us-item:nth-child(4) {
  background: #fef5e7;
}

.why-us-item:nth-child(5) {
  background: #e8f8f5;
}

.why-us-item:nth-child(6) {
  background: #fdecea;
}

.why-us-item:nth-child(7) {
  background: #e8f8f5;
}

.why-us-item:nth-child(8) {
  background: #f4ecf7;
}

.why-us-item:nth-child(9) {
  background: #fef9e7;
}

.why-us-item:nth-child(10) {
  background: #ecf0f1;
}



/* Items */
.why-us-item {
  display: flex;
  align-items: center;
  background-color: #D8F0FF;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #b6daf5;
  margin-bottom: 14px;
}

.why-us-number {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #015AA9;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.why-us-content h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.why-us-content p {
  font-size: 0.85rem;
  margin: 0;
  color: #29435f;
}

.why-us-image {
  margin-left: auto;
  flex: 0 0 30%;
}

.why-us-image img {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
}

/* Hover */
.why-us-item:hover {
  border-color: #015AA9;
  box-shadow: 0 4px 14px rgba(1, 90, 169, 0.16);
}



.school-footer {
  background-color: #015AA9;
  color: #ffffff;
  padding: 60px 0 30px;
  border-radius: 30px 30px 0 0;

}

/* Titles */
.school-footer .footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  color: #D8F0FF;
}

.footer-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #D8F0FF;
  color: #015AA9;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: #ffffff;
  color: #015AA9;
}

/* Links */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #D8F0FF;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Hours box */
.footer-hours-box {
  background-color: #D8F0FF;
  border-radius: 18px;
  padding: 18px 20px;
  color: #015AA9;
}

.footer-hours-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(1, 90, 169, 0.1);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

/* CTA */
.footer-cta {
  margin-top: 14px;
  background-color: #015AA9;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #D8F0FF;
  color: #015AA9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(216, 240, 255, 0.4);
  margin-top: 30px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links a {
  color: #D8F0FF;
  text-decoration: none;
  margin-left: 16px;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.mym {
  margin-top: 40px;
}

.mym2 {
  margin-top: 40px;
}


.blog-section {
  padding: 70px 0;
  background-color: #f7f9fc;
}

/* Heading */
.blog-section .section-heading {
  text-align: center;
  margin-bottom: 35px;
}



/* Blog card */
.blog-box {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.blog-box:hover .blog-image img {
  transform: scale(1.06);
}

/* Meta row */
.dated {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 0;
  font-size: 0.8rem;
  color: #708198;
  gap: 8px;
}

.dated p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dated i {
  color: #015AA9;
}

/* Divider */
.blog-box hr {
  margin: 10px 14px;
  border-top: 1px solid #e2e6f0;
}

/* Content */
.blog-content {
  padding: 0 14px 14px;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.blog-content h6 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1b2330;
  margin: 0;
}

.blog-content h6:hover {
  color: #015AA9;
}


.custom-breadcrumb-section {
  position: relative;
  padding: 40px 0;
  background-color: #015AA9;
  color: #ffffff;
  overflow: hidden;
  margin-top: 150px;
}

/* Optional soft overlay pattern */
.custom-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(216, 240, 255, 0.25) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(216, 240, 255, 0.18) 0, transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.custom-container {
  position: relative;
  z-index: 2;
}

/* Nav + list */
.custom-breadcrumb-nav {
  display: flex;
  justify-content: center;
}

.custom-breadcrumb-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
}

/* Links */
.custom-breadcrumb-list li a {
  color: #D8F0FF;
  text-decoration: none;
  font-weight: 500;
}

.custom-breadcrumb-list li a:hover {
  color: #ffffff;
}

/* Separator */
.custom-breadcrumb-list li {
  color: #D8F0FF;
}

/* Current page */
.custom-breadcrumb-list .current {
  font-weight: 600;
  color: #ffffff;
}



.proccess-box {

  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  padding: 40px;
  gap: 40px;
}

/* Left Side: Info Section */
.left-panel {
  flex: 1;
  border-right: 1px solid #e1e8ed;
  padding-right: 40px;
}

.left-panel h1 {
  color: #015AA9;
  font-size: 32px;
  margin-bottom: 30px;
}

.info-card {
  background: #D8F0FF;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  gap: 15px;
}

.info-card i {
  font-size: 24px;
  color: #015AA9;
  margin-top: 5px;
}

/* Right Side: Grid */
.right-panel {
  flex: 2;
}

.right-panel h2 {
  color: #015AA9;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.item {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  transition: 0.3s;
}

.item:hover {
  border-color: #015AA9;
  background: #fcfdfe;
}

.item i {
  font-size: 20px;
  color: #015AA9;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .left-panel {
    border-right: none;
    border-bottom: 1px solid #e1e8ed;
    padding-bottom: 40px;
  }
}


.apply-process {
  padding: 70px 0;
  background: #f7f9fc;
}

.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: .3s;
}

.process-card:hover {
  transform: translateY(-6px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #015AA9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.process-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #666;
}

.registration-process {
  padding: 80px 0;
  background: #f5f7fb;
}

.process-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.process-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #015AA9;
}

.process-desc {
  color: #666;
  margin-bottom: 30px;
}

.process-box label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.process-box input,
.process-box select,
.process-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
}

.register-btn {
  background: #015AA9;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

.register-btn:hover {
  background: #01407a;
}


.infrastructure-section {
  padding: 70px 0;
  background: #f7f9fc;
}


/* Blocks */
.infra-block {
  margin-bottom: 70px;
}

.infra-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Text styling */
.infrastructure-section h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #015AA9;
}

.infrastructure-section p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
}

/* Feature list */
.infra-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.infra-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #015AA9;
  font-weight: bold;
  font-size: 14px;
}


.news-section {
  padding: 70px 0;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
}

.news-header a {
  color: #2bb673;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

/* Featured */

.featured-news img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

.news-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-news h4 {
  font-size: 22px;
  font-weight: 600;
}

.featured-news h4 a {
  color: #222;
  text-decoration: none;
}


/* Side news */

.side-news {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.side-img img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.side-content h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.side-content a {
  color: #222;
  text-decoration: none;
}

.quick-links-box {
  background: linear-gradient(rgba(7, 33, 61, 0.9), rgba(7, 33, 61, 0.9)),
    url('/images/school.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 6px;
  color: #fff;
}

.quick-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-links li a {
  display: block;
  padding: 10px 0;
  color: #32c36c;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.quick-links li a:hover {
  color: #fff;
  padding-left: 10px;
}


.events-section {
  padding: 70px 0px;
  background-color: #E8F8F5;

}

.school-events-page {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(1, 90, 169, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.12), transparent 55%),
    #f7f9fc;
}

/* MAIN CARD */
.school-event-card {
  display: flex;
  gap: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfbff 40%, #f7fbff 100%);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  margin-bottom: 28px;
  border: 1px solid rgba(1, 90, 169, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.school-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(1, 90, 169, 0.08),
      rgba(255, 193, 7, 0.08),
      rgba(111, 66, 193, 0.08));
  opacity: 0;
  z-index: -1;
  transition: opacity .3s ease;
}

.school-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(1, 90, 169, 0.35);
}

.school-event-card:hover::before {
  opacity: 1;
}

/* LEFT IMAGE */
.event-image {
  position: relative;
  width: 38%;
  border-radius: 18px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.school-event-card:hover .event-image img {
  transform: scale(1.08);
}

/* STATUS BADGE + RIBBON */
.event-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25);
}

.event-status-badge.ongoing {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.event-status-badge.completed {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.event-ribbon {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
  opacity: .9;
}

/* RIGHT CONTENT */
.event-details {
  width: 62%;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 1.4rem;
  position: relative;
  padding-right: 26px;
}

.live-dot {
  position: absolute;
  top: 4px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }

  70% {
    transform: scale(1.6);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* META CHIPS */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.04);
  color: #4b5563;
}

.chip-date {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.chip-venue {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}

.event-desc {
  font-size: 14px;
  color: #4b5563;
}

/* TAG PILLS */
.event-tags {
  margin-top: 8px;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.tag-academic {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.tag-cultural {
  background: rgba(244, 114, 182, 0.12);
  color: #db2777;
}

.tag-sports {
  background: rgba(52, 211, 153, 0.12);
  color: #059669;
}

/* BUTTONS */
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, #246BB3, #015AA9);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(1, 90, 169, 0.35);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(1, 90, 169, 0.45);
  color: white;
  filter: brightness(1.05);
}

.main-btn.small {
  padding: 8px 16px;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
}

.celebrate-btn {
  background: linear-gradient(135deg, #34cd2f, #2fad13);
  border: none;
  padding: 11px 20px;
  color: white;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.celebrate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.55);
  filter: brightness(1.05);
}

/* UPCOMING CARD */
.upcoming-event-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(145deg, #ffffff 0%, #c3f9fe 40%, #c0e3fb 100%);
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(248, 196, 48, 0.4);
  transition: transform .3s ease, box-shadow .3s ease;
}

.upcoming-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.upcoming-event-image {
  position: relative;
  width: 90px;
  border-radius: 14px;
  overflow: hidden;
}

.upcoming-event-image img {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.badge-upcoming {
  position: absolute;
  top: 6px;
  left: 6px;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #1f2933;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
}

.countdown {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #1d4ed8;
}

/* UPCOMING TEXT */
.upcoming-event-details {
  flex: 1;
}

.upcoming-event-details h6 {
  margin: 0 0 6px 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.event-date-small {
  display: block;
  color: #4b5563;
  font-size: 12px;
  margin-bottom: 8px;
}

/* EMPTY STATE */
.no-events {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}


/* Card */

.blogpage-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
}

.blogpage-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image */

.blogpage-image {
  position: relative;
  overflow: hidden;
}

.blogpage-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.blogpage-box:hover img {
  transform: scale(1.08);
}

/* Category Badge */

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1fa463;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  font-weight: 500;
}

/* Content */

.blogpage-content {
  padding: 25px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.blog-meta i {
  margin-right: 6px;
  color: #1fa463;
}

/* Title */

.blogpage-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blogpage-content h4 a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.blogpage-content h4 a:hover {
  color: #1fa463;
}

/* Description */

.blogpage-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Button */

.blog-read-btn {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #1fa463;
  text-decoration: none;
  transition: 0.3s;
}

.blog-read-btn:hover {
  color: #0d6efd;
  letter-spacing: 1px;
}

.faq-section {
  padding: 70px 0px;
}

.gallery-section-page {
  padding: 70px 0px;
}

.serivce-container {
  padding: 70px 0px;
}


.service-page-wrapper {
  padding: 80px 0;
  background: #f6f8fb;
}

/* Layout Grid */

.service-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

/* Main Service Card */

.service-main-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Image */

.service-image-box {
  width: 100%;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* Content */

.service-content-box {
  padding: 35px;
}

/* Title */

.service-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* Description */

.service-description {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.service-description p {
  margin-bottom: 18px;
}

/* Sidebar */

.service-side-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Sidebar Widget */

.side-widget {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

/* Widget Title */

.widget-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

/* List */

.widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-list li {
  margin-bottom: 12px;
}

.widget-list li a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: 0.3s;
  display: block;
}

.widget-list li a:hover {
  color: #276CB2;
  padding-left: 6px;
}

.event-detail-section {
  padding: 70px 0;
  background: #f6f8fb;
}

/* Main Event Card */

.event-detail-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Event Image */

.event-detail-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Event Title */

.event-detail-card h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

/* Event Meta */

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.event-meta span {
  background: #f1f5f9;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
}

/* Event Description */

.event-description {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.event-description p {
  margin-bottom: 18px;
}

/* Sidebar */

.sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Sidebar Titles */

.sidebar h3 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
}

/* Related Events */

.related-event-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: 0.3s;
}

.related-event-box img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.related-event-box span {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.related-event-box:hover span {
  color: #1fa463;
}

/* Recent Blogs */

.recent-blog {
  list-style: none;
  margin-bottom: 10px;
}

.recent-blog a {
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: 0.3s;
}

.recent-blog a:hover {
  color: #1fa463;
  padding-left: 5px;
}

/* Remove default list styles */

.sidebar ul {
  list-style: none;
}


/* Cleaned up CSS */
.faculty-section {
  background: #f4f8fd;
  padding: 70px 0px;
}

.heading-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #015AA9;
}

.line {
  width: 60px;
  height: 4px;
  background: #015AA9;
  margin: 15px auto 0;
  border-radius: 2px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.faculty-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faculty-image {
  height: 280px;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faculty-card:hover img {
  transform: scale(1.08);
}

.faculty-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faculty-info h4 {
  font-size: 20px;
  color: #015AA9;
  margin-bottom: 5px;
}

.designation {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
  min-height: 40px;
  /* Keeps layout consistent if text wraps */
}

.read-btn {
  padding: 8px 20px;
  border-radius: 25px;
  background: #015AA9;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  align-self: center;
}

.read-btn:hover {
  background: #003f78;
  color: #fff;
  text-decoration: none;
}


.about-section {
  padding: 70px 0;
  background: #f7fafc;
}



.about-image2 img {
  width: 100%;
  object-fit: cover;
}

.about-text-box {
  background: #ffffff;
  padding: 25px 25px 20px;
  border-radius: 14px;

}



.faculty-detail-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f8fd 0%, #e8f4fd 50%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(3px 3px at 20px 30px, rgba(1, 90, 169, 0.3), transparent),
    radial-gradient(2px 2px at 80px 80px, rgba(1, 90, 169, 0.2), transparent),
    radial-gradient(1px 1px at 140px 40px, rgba(1, 90, 169, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 120px;
  animation: float 25s ease-in-out infinite;
  opacity: 0.15;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(0.5deg);
  }

  66% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

.faculty-image-wrapper {
  position: relative;
  z-index: 3;
}

.faculty-image {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faculty-img {
  width: 100%;
  max-width: 320px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.faculty-image:hover .faculty-img {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #015AA9, #0288d1, #015AA9);
  border-radius: 28px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.faculty-image:hover .image-glow {
  opacity: 1;
}

.expert-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #015AA9, #0288d1);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(1, 90, 169, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.faculty-header {
  margin-bottom: 40px;
}

.faculty-name {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #015AA9 0%, #0288d1 50%, #015AA9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1.2;
}

.designation-badge {
  display: inline-block;
  background: rgba(1, 90, 169, 0.1);
  color: #015AA9;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid rgba(1, 90, 169, 0.2);
  backdrop-filter: blur(10px);
}

.faculty-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(1, 90, 169, 0.15);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #015AA9;
  margin-bottom: 5px;
}

.stat-icon {
  font-size: 24px;
  color: #015AA9;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.faculty-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  color: #334155;
}

.meta-item i {
  width: 20px;
  color: #015AA9;
  font-size: 16px;
}

.faculty-description {
  font-size: 16px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.back-btn,
.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(1, 90, 169, 0.3);
}

.back-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #015AA9;
  border: 2px solid rgba(1, 90, 169, 0.2);
}

.contact-btn {
  background: linear-gradient(135deg, #015AA9 0%, #0288d1 100%);
  color: white;
}

.back-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(1, 90, 169, 0.25);
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(1, 90, 169, 0.4);
}

.career-detail-section {
  padding: 70px 0;
  background: #f5f9ff;
}

.career-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.career-box h1 {
  color: #015AA9;
  margin-bottom: 20px;
}

.career-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.career-meta span {
  background: #f2f6ff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.career-description {
  line-height: 1.8;
  margin-top: 20px;
}

.last-date {
  margin-top: 20px;
  font-weight: 600;
  color: #d9534f;
}



/* APPLY FORM */

.apply-form-box {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.apply-form-box h3 {
  color: #015AA9;
  margin-bottom: 20px;
}

.apply-form-box input,
.apply-form-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
}

.apply-btn {
  background: #015AA9;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
}



/* ALERTS */

.alert {
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
}

.alert ul {
  margin: 0;
  padding-left: 20px;
}

/* ===== Contact Section Wrapper ===== */
.contact-section {
  padding: 80px 0;
  background-color: #f7f9fc;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Heading */
.heading-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: #015AA9;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.heading-badge i {
  font-size: 0.9rem;
}



/* ===== Cards ===== */
.contact-card,
.info-box,
.map-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 22px 22px;
}

.contact-card {
  height: 100%;
}

/* Glass effect variation */
.glass-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}


.section-subtitle {
  font-size: 0.9rem;
  color: #6b7b93;
  margin-bottom: 18px;
}

.section-subtitle span {
  color: #e53935;
}

/* ===== Form ===== */
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d5deea;
  padding: 10px 12px;
  font-size: 0.92rem;
  color: #1b2330;
  background-color: #f9fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #9aa8bc;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #015AA9;
  box-shadow: 0 0 0 2px rgba(1, 90, 169, 0.2);
  background-color: #ffffff;
}

/* Main button */
.main-btn {
  background-color: #015AA9;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.main-btn:hover {
  background-color: #01437f;
  box-shadow: 0 6px 14px rgba(1, 67, 127, 0.3);
  transform: translateY(-1px);
}

/* ===== Info boxes ===== */
.info-card .info-box {
  margin-bottom: 16px;
}

.info-box h5 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1b2330;
}

.info-box p {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #4a5a72;
}

.info-box small {
  font-size: 0.8rem;
  color: #7c8aa3;
}

.info-box a {
  color: #015AA9;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Light highlight border */
.highlight-box {
  border: 1px solid #e1e9f5;
}

/* Icon badge */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #015AA9;
  color: #fff;
  font-size: 0.82rem;
  margin-right: 6px;
}

/* ===== Timings table ===== */
.timings {
  margin-top: 10px;
}

.timing-table-wrapper {
  margin-top: 10px;
  overflow-x: auto;
}

.timing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.timing-table th,
.timing-table td {
  padding: 10px 8px;
  text-align: left;
}

.timing-table thead th {
  background-color: #015AA9;
  color: #fff;
  font-weight: 600;
  border-bottom: 0;
}

.timing-table tbody tr:nth-child(even) {
  background-color: #f3f6fb;
}

.timing-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.timing-table tbody td {
  color: #34435a;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
}

.badge.morning {
  background-color: #e1f5fe;
  color: #0277bd;
}

.badge.special {
  background-color: #fff3e0;
  color: #ef6c00;
}

.special-row td {
  font-weight: 600;
}

/* ===== Map Card ===== */
.map-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 18px;
}


/* Review Section */
.review-o {
  padding: 70px 0;
  background: #f9f9f9;
}

/* Grid Layout */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* User Image */
.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f1f1;
}

/* Username */
.review-header h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Date */
.review-date {
  font-size: 13px;
  color: #888;
}

/* Rating */
.review-rating {
  margin-top: 4px;
}

.review-rating i {
  color: #f4b400;
  font-size: 14px;
}

/* Review Text */
.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}



.page-banner {
  background: #f5f5f5;
  padding: 40px 0;
  text-align: center;
}

.principal-profile {
  padding: 70px 0;
}

.principal-photo img {
  width: 100%;
  border-radius: 10px;
}

.principal-info h2 {
  font-size: 32px;
  margin-top: 20px;
}

.principal-vision {
  padding: 70px 0px;
}

.principal-message {
  background: #fafafa;
  padding: 60px 0;
}

.section-title {
  margin-bottom: 20px;
}

.exp-box {
  background: #99cdfb;
  padding: 30px;
  text-align: center;
  color: #003f78;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.exp-box h3 {
  font-size: 36px;
  color: #003f78;
}




.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #015AA9;
  margin-bottom: 30px;
  text-align: center;
}

/* Principal Profile */
.principal-profile {
  background: #D8F0FF;
  padding: 70px 0;
}

.principal-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principal-info {
  background: white;
  padding: 40px;
  border-radius: 12px;
}

.principal-info h2 {
  color: #015AA9;
  font-weight: 700;
}

.principal-info h4 {
  color: #333;
  margin-bottom: 15px;
}

.principal-info p {
  color: #555;
  line-height: 1.7;
}

.info-list p {
  margin: 6px 0;
}

.info-list strong {
  color: #015AA9;
}


/* Principal Message */
.principal-message {
  padding: 80px 0;
  background: white;
}

.principal-message p {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  color: #444;
  text-align: center;
}


/* Experience */
.principal-experience {
  background: #D8F0FF;
  padding: 80px 0;
}

.exp-box {
  background: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.exp-box:hover {
  transform: translateY(-6px);
}

.exp-box h3 {
  font-size: 40px;
  color: #015AA9;
  font-weight: 700;
}

.exp-box p {
  color: #555;
}


/* Vision Section */
.principal-vision {
  padding: 70px 0;
  background: white;
}

.principal-vision p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
  color: #444;
}

.footer-credit{
  font-size:14px;
  color:#bbb;
  text-align:center;
  margin:0;
}

.footer-credit a{
  color:white;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:all 0.3s ease;
}

.footer-credit a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-2px;
  background:white;
  transition:width 0.3s ease;
}

.footer-credit a:hover{
  color:white;
}

.footer-credit a:hover::after{
  width:100%;
}

.footer-credit .heart{
  color:#ff4d4d;
  animation:heartBeat 1.6s infinite;
}

.footer-credit .divider{
  margin:0 6px;
  color:#777;
}

@keyframes heartBeat{
  0%{transform:scale(1)}
  25%{transform:scale(1.2)}
  50%{transform:scale(1)}
  75%{transform:scale(1.2)}
  100%{transform:scale(1)}
}

   /* Classic Clean Design */
.admin-section {
    padding: 80px 20px;
    background-color: #D8F0FF;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    line-height: 1.7;
}

.container {
    margin: 0 auto;
    position: relative;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;

    margin: 0 auto;
}



/* Image Column - Classic Portrait Frame */
.admin-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8f4ff;
    background: #ffffff;
}

.admin-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #015AA9;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(1, 90, 169, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Content Column - Clean Typography */
.admin-content {
    padding: 0;
    background: transparent;
}

.sub-heading {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #015AA9;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-title {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
}

.accent {
    color: #015AA9;
    font-weight: 700;
    position: relative;
}



/* Classic Blockquote */
.highlight-text {
    font-size: 19px;
    font-style: italic;
    color: #015AA9;
    margin: 0 0 35px 0;
    padding: 10px 25px;
    background: #D8F0FF;
    border-left: 5px solid #015AA9;

    position: relative;
}


.scroll-content {
    margin-bottom: 40px;
}

.scroll-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.scroll-content strong {
    color: #015AA9;
}

/* Classic Signature */
.admin-footer {

    padding-top: 20px;
    border-top: 1px solid #e8f4ff;
}


.admin-footer h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #015AA9;
    font-weight: 600;
    font-style: italic;
}

.admin-footer p {
    margin: 0;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.visionary-leaders {
    padding: 30px 0;
    background: #EBF5FF;
}

.leader-photo img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(32, 102, 176, 0.15);
}

.leader-info {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(32, 102, 176, 0.1);
    border: 1px solid #EBF5FF;
}

.leader-info h2.philosopher-regular {
    color: #2066B0;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.leader-info h4 {
    color: #2066B0;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.leader-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-list p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-list strong {
    color: #2066B0;
}

.leaders-achievements {
    padding: 60px 0;
    background: #fff;
}

.exp-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 2px solid #EBF5FF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(32, 102, 176, 0.08);
    height: 100%;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.exp-box:hover {
    border-color: #2066B0;
    box-shadow: 0 8px 25px rgba(32, 102, 176, 0.15);
}

.exp-box h3 {
    font-size: 2rem;
    color: #2066B0;
    margin-bottom: 10px;
    font-weight: 600;
}

.exp-box p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.section-title.philosopher-regular {
    font-size: 2.2rem;
    color: #2066B0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title.philosopher-regular::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #2066B0;
    display: block;
    margin: 15px auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .visionary-leaders {
        padding: 40px 0;
    }
    
    .leader-info {
        padding: 30px 20px;
        margin-top: 25px;
    }
    
    .leader-info h2 {
        font-size: 2rem;
    }
    
    .exp-box h3 {
        font-size: 2.5rem;
    }
}


/* Mobile Responsiveness */
@media (max-width: 991px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .admin-section {
        padding: 60px 15px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .highlight-text {
        font-size: 18px;
        padding: 25px 20px;
    }
    
    .badge {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    
    .admin-img {
        height: 300px;
    }
    
    .scroll-content p {
        font-size: 15px;
    }
}




/* Responsive */
@media (max-width:992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 40px 0;
  }
}

@media (max-width: 575.98px) {

  .contact-card,
  .info-box,
  .map-card {
    border-radius: 14px;
  }

  .timing-table th,
  .timing-table td {
    padding: 8px 6px;
  }
}




/* Responsive */
@media (max-width: 991.98px) {
  .faculty-detail-section {
    padding: 80px 0;
  }

  .faculty-name {
    font-size: 36px;
  }

  .faculty-stats {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {


  .action-buttons {
    justify-content: center;
  }

  .faculty-stats {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .faculty-detail-section {
    padding: 60px 0;
  }
}



/* Responsive */

@media(max-width:992px) {
  .about-section {
    padding: 40px 0;
  }

  .event-detail-card img {
    height: 250px;
  }

  .event-detail-card h1 {
    font-size: 26px;
  }

  .event-meta {
    gap: 8px;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 28px;
  }

  .service-image-box img {
    height: 260px;
  }

  .school-events-page {
    padding: 60px 0;
  }

  .school-event-card {
    flex-direction: column;
    padding: 24px 18px;
    gap: 18px;
  }

  .event-image,
  .event-details {
    width: 100%;
  }

  .infra-block {
    margin-bottom: 50px;
  }


  .text-block {
    margin-left: 0;
    margin-top: 30px;
  }

  .left,
  .right {
    width: 100%;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .icon-card {
    width: 45%;
    /* 2 per row on mobile */
  }

  .why-us-section {
    padding: 40px 0;
  }

  .blog-section {
    padding: 40px 0;
  }
}




@media (max-width: 768px) {
  .school-footer {
    border-radius: 24px 24px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .achievement-section {
    padding: 40px 0;
  }

  .achievement-box {
    padding: 30px 15px;
    margin: 10px;
    transform: translateY(-10px) scale(1.02) !important;
  }

  .icons-row {
    justify-content: center;
    gap: 15px;
  }

  .icon-card {
    width: 30%;
    /* 3 per row on tablets */
  }

  .connect-section {
    padding: 40px 0;
  }


  .accordion-button {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 20px;
    font-size: 14px;
  }
}



@media (max-width: 575.98px) {

  .principal-vision {
    padding: 40px 0;
    background: white !important;
  }

  .principal-vision {
    padding: 40px 0px;
  }

  .exp-box {
    margin-top: 10px;


  }
.principal-experience{
  padding: 40px 0px;
}
  .principal-message {
    padding: 40px 0px;
  }

  .principal-profile {
    padding: 40px 0px;
  }

  .infrastructure-section {
    padding: 40px 0px;
  }

  .faq-section {
    padding: 40px 0px;
  }

  .review-o {
    padding: 40px 0px;
  }

  .gallery-section-page {
    padding: 40px 0px;
  }

  .event-detail-card {
    padding: 10px;
  }

  .event-detail-section {
    padding: 40px 0px;
  }

  .events-section {
    padding: 40px 0px;
  }

  .process-box {
    margin-top: 10px;
    padding: 10px !important;
  }

  .left-panel {
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .proccess-box {
    flex-direction: column;
    padding: 10px;
  }

  .process-card {
    padding: 10px;
  }

  .apply-process {
    padding: 40px 0px;
  }

  .career-box {
    padding: 10px !important;
  }

  .apply-form-box {
    padding: 10px !important;
  }

  .heading-badge {
    padding: 3px 7px !important;
  }

  .heading-section h2 {
    font-size: 33px;
  }

  .career-detail-section {
    padding: 40px 0px !important;
  }

  .faculty-section {
    padding: 40px 0px;
  }

  .career-section {
    padding: 40px 0px !important;
  }

  .blog-box {
    border-radius: 12px;
  }

  .about-text-box {
    padding: 10px;
    background-color: transparent;
  }

  .dated {
    flex-direction: column;
    align-items: flex-start;
  }

  .infra-img {
    border-radius: 12px;
  }

  .custom-breadcrumb-section {
    padding: 26px 0;
  }

  .custom-breadcrumb-list {
    font-size: 0.85rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .upcoming-event-card {
    flex-direction: column;
    align-items: stretch;
  }

  .upcoming-event-image {
    width: 100%;
    height: 130px;
  }

  .upcoming-event-image img {
    height: 130px;
  }

  .achievement-box {
    height: auto;
    margin-top: 20px;
  }

  .why-us-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .why-us-image {
    display: block;
    flex: 0 0 100%;
  }

  .why-us-image img {
    height: 200px;
    margin-top: 20px;
  }

  .mym {
    margin-top: 0px;
  }

  .main-header {
    display: none;

  }

  .second-header {
    display: none;

  }

  .phone-navbar {
    display: block;
  }

  .tag-box-main {
    flex-wrap: wrap;
    box-shadow: none;

  }

  .poster-tag {
    margin-top: 10px;
    z-index: 10;
  }

  .photo-block img {
    height: auto;
  }

  .news-section {
    padding: 40px 0px;
  }

  .about-university {
    margin-top: 0px;
    padding: 40px 0px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-des {
    margin-top: 20px;
  }

  .message-section {
    padding: 40px 0px;
  }

  .text-block {
    padding-left: 0px;
    box-shadow: none;
    padding: 0px;
  }

  .vision-section {
    padding: 40px 0px;
  }

  .point-box-main {
    flex-wrap: wrap-reverse;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .kassm {
    padding: 40px 0px;
  }

  .services-section {
    padding: 40px 0px;
  }

  .gallery-section {
    padding: 40px 0px !important;
  }

  .carousel-item img {
    height: auto !important;

  }

  .poster {
    margin-top: 125px;
  }

  .title {
    font-size: 30px;
  }

  .section-title {
    font-size: 33px;
  }

  .kassm-box-header {
    top: -26px;
    text-align: center;
  }
}