@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 15px;
  color: #000;
  background-color: #ffffff;
  font-family: "Saira", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Saira", sans-serif;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 15px;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #8B1E2D;
}

img {
  max-width: 100%;
}

.common-btn {
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  background: #8B1E2D;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: inline-block;
  margin-top: 20px;
}
.common-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.common-btn:hover {
  background: #8B1E2D;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
}
.common-btn:hover::before {
  left: 120%;
}
@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (min-width: 991px) {
  .container-fluid {
    width: 94%;
  }
}
.space {
  padding: 40px 0;
}

.title-box {
  margin-bottom: 10px;
}
.title-box .badge-ttl {
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  color: #FFFFFF;
  padding: 5px;
  display: inline-block;
  font-size: 14px;
  border-radius: 40px;
}
.title-box .wigt-title {
  font-size: 35px;
  font-weight: 600;
  margin-top: 10px;
  color: #0F172A;
}

.common-title {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #8B1E2D;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #8B1E2D, #00c6ff, #ff6ec7);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 6s linear infinite;
}
.common-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, #8B1E2D, #00c6ff);
  animation: underlineMove 3s ease-in-out infinite;
}
.common-title::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}
.common-title:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Animated Gradient */
@keyframes textGlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 300% center;
  }
}
/* Moving underline */
@keyframes underlineMove {
  0%, 100% {
    width: 70px;
  }
  50% {
    width: 140px;
  }
}
/* Shine effect */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}
.parabx p {
  text-align: justify;
  padding-bottom: 10px;
}
@keyframes shine {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 100%;
  }
}
.top-bar {
  background: #4B5563;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.top-bar .top-btns ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: right;
}
.top-bar .top-btns ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.top-bar {
  /* HAMBURGER */
}
.top-bar .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.top-bar .menu-toggle .mobMenus {
  color: #FFFFFF;
  border-radius: 5px;
}
.top-bar {
  /* MOBILE */
}
@media (max-width: 768px) {
  .top-bar .menu-toggle {
    display: flex;
  }
  .top-bar .top-btns {
    position: absolute;
    top: 43px;
    left: 0;
    width: 100%;
    background: #8B1E2D;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }
  .top-bar .top-btns ul {
    flex-direction: column;
    gap: 0;
  }
  .top-bar .top-btns ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    width: 100%;
  }
  .top-bar .top-btns.active {
    max-height: 300px;
    overflow-y: scroll;
  }
}

.logo-section {
  padding: 10px 0;
  position: relative;
  background: url(../img/bg-pat-new.jpg) repeat 0 0;
}
.logo-section .contactInfo .flCon {
  display: flex;
  gap: 10px;
  justify-content: end;
  margin-bottom: 5px;
}
.logo-section .contactInfo .flCon i {
  color: #8B1E2D;
}
.logo-section .contactInfo .phoneX a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
}
.logo-section .contactInfo .phoneX a:hover {
  color: #8B1E2D;
}
.logo-section .admBtn {
  text-align: right;
}
.logo-section .admBtn .admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b00, #8B1E2D);
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 0 15px #8B1E2D;
  animation: blinkPulse 1.2s infinite;
  transition: 0.3s;
  margin-top: 10px;
}
.logo-section .admBtn .admission-btn span {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes blinkPulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  }
  50% {
    opacity: 0.75;
    box-shadow: 0 0 25px rgb(255, 255, 0);
  }
}
.logo-section .logo {
  width: 85px;
}
.logo-section .logobar {
  display: flex;
  gap: 10px;
}
.logo-section .clg-name {
  text-transform: uppercase;
  font-size: 35px;
  word-spacing: 2px;
  color: #8B1E2D;
  font-weight: bold;
}
.logo-section .logo-txt p {
  font-weight: 500;
}

.wrapperSlider .cms-slider {
  width: 100%;
  height: 550px;
}
.wrapperSlider .cms-slide {
  position: relative;
  overflow: hidden;
}
.wrapperSlider {
  /* =========================
     IMAGE
  ========================= */
}
.wrapperSlider .cms-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.15);
}
.wrapperSlider {
  /* Zoom Animation */
}
.wrapperSlider .swiper-slide-active .cms-image {
  animation: cmsZoom 7s linear forwards;
}
@keyframes cmsZoom {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
.wrapperSlider {
  /* =========================
     CORNER REVEAL PANELS
  ========================= */
}
.wrapperSlider .cms-panel {
  position: absolute;
  width: 50%;
  height: 50%;
  background: rgba(75, 85, 99, 0.4588235294);
  z-index: 5;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 2s ease;
}
.wrapperSlider {
  /* Top Left */
}
.wrapperSlider .cms-top-left {
  top: 0;
  left: 0;
}
.wrapperSlider {
  /* Top Right */
}
.wrapperSlider .cms-top-right {
  top: 0;
  right: 0;
}
.wrapperSlider {
  /* Bottom Left */
}
.wrapperSlider .cms-bottom-left {
  bottom: 0;
  left: 0;
}
.wrapperSlider {
  /* Bottom Right */
}
.wrapperSlider .cms-bottom-right {
  bottom: 0;
  right: 0;
}
.wrapperSlider {
  /* Active Animation */
}
.wrapperSlider .swiper-slide-active .cms-top-left {
  transform: translate(-100%, -100%) rotate(-10deg);
}
.wrapperSlider .swiper-slide-active .cms-top-right {
  transform: translate(100%, -100%) rotate(10deg);
}
.wrapperSlider .swiper-slide-active .cms-bottom-left {
  transform: translate(-100%, 100%) rotate(10deg);
}
.wrapperSlider .swiper-slide-active .cms-bottom-right {
  transform: translate(100%, 100%) rotate(-10deg);
}
.wrapperSlider {
  /* =========================
     CENTER FLASH
  ========================= */
}
.wrapperSlider .cms-flash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  filter: blur(80px);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}
.wrapperSlider .swiper-slide-active .cms-flash {
  animation: cmsFlash 1.8s ease;
}
@keyframes cmsFlash {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}
.wrapperSlider {
  /* =========================
     OVERLAY
  ========================= */
}
.wrapperSlider .cms-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  z-index: 3;
}
.wrapperSlider {
  /* =========================
     NAVIGATION
  ========================= */
}
.wrapperSlider .cms-slider .swiper-button-next,
.wrapperSlider .cms-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  backdrop-filter: blur(15px);
}
.wrapperSlider .cms-slider .swiper-button-next:hover,
.wrapperSlider .cms-slider .swiper-button-prev:hover {
  background: #8B1E2D;
}
.wrapperSlider .cms-slider .swiper-button-next::after,
.wrapperSlider .cms-slider .swiper-button-prev::after {
  color: #fff;
  font-size: 16px;
}
.wrapperSlider {
  /* =========================
     PROGRESS BAR
  ========================= */
}
.wrapperSlider .cms-slider .swiper-pagination-progressbar {
  height: 4px !important;
  background: rgba(255, 255, 255, 0.15);
}
.wrapperSlider .cms-slider .swiper-pagination-progressbar-fill {
  background: #2F3E46;
}
@media (max-width: 768px) {
  .wrapperSlider .cms-slider .swiper-button-next,
  .wrapperSlider .cms-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}

.scroll-lnews {
  position: relative;
  z-index: 1;
  margin: -50px auto 10px;
}
.scroll-lnews .newScroll svg {
  fill: #fff;
  height: 45px;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}

.scroll-lnews .news-strip {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.scroll-lnews {
  /* LEFT */
}
.scroll-lnews .news-left {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 14px;
  border-right: 2px solid #e5e7eb;
  white-space: nowrap;
}
.scroll-lnews .news-left i {
  color: #8B1E2D;
  font-size: 35px;
}
.scroll-lnews {
  /* CENTER */
}
.scroll-lnews .news-center {
  flex: 1;
  overflow: hidden;
  padding: 0 15px;
  position: relative;
}
.scroll-lnews {
  /* TRACK */
}
.scroll-lnews .news-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 18s linear infinite;
}
.scroll-lnews {
  /* ITEM */
}
.scroll-lnews .news-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #0F172A;
  font-weight: 500;
}
.scroll-lnews .news-item:hover {
  color: #8B1E2D;
}
.scroll-lnews .news-dot {
  width: 6px;
  height: 6px;
  background: #8B1E2D;
  border-radius: 2px;
}
.scroll-lnews {
  /* SEAMLESS LOOP DUPLICATION STYLE */
}
.scroll-lnews .news-track span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-lnews {
  /* ANIMATION */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll-lnews {
  /* RIGHT CONTROLS */
}
.scroll-lnews .news-right {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 2px solid #e5e7eb;
  padding-left: 10px;
}
.scroll-lnews .news-right button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  cursor: pointer;
  transition: 0.3s;
}
.scroll-lnews .news-right button:hover {
  background: #8B1E2D;
  color: #fff;
}
.scroll-lnews {
  /* ARROWS */
}
.scroll-lnews .arrow {
  font-size: 12px;
}
.scroll-lnews {
  /* HOVER PAUSE */
}
.scroll-lnews .news-center:hover .news-track {
  animation-play-state: paused;
}

.faq__accordian-main-wrapper {
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  background-color: #FFFFFF;
}

.neWs_date {
  padding: 2px;
  text-align: center;
  margin: 8px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.4196078431);
  border-radius: 5px;
  background-color: #8B1E2D;
}

#faq__accordian-main-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.event-box2 {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-row-gap: 0px;
  grid-column-gap: 0px;
  border-bottom: 1px solid rgba(75, 85, 99, 0.2392156863);
}

.event-box2 .event-date {
  padding: 8px;
  text-align: center;
  margin: 8px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.4196078431);
  border-radius: 5px;
  background-color: #8B1E2D;
  border: 2px solid #2F3E46;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 15px;
  height: 55px;
}

.event-text-box a {
  color: #0F172A;
  font-weight: 600;
}
.event-text-box a:hover {
  color: #8B1E2D;
}

.event-date h5 {
  font-weight: normal;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0;
  border-bottom: 1px solid #FFFFFF;
}

.faq__accordian-heading:nth-last-child(5) {
  margin-bottom: 0;
}

.faq__accordian-heading {
  background: #8B1E2D;
  padding: 10px 30px 10px 10px;
  display: block;
  margin-bottom: 2px;
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  font-size: 18px;
  border-radius: 5px;
}

.faq__accordian-heading:hover {
  color: #FFFFFF;
}

.faq__accordian-heading::before {
  content: "\f0d7";
  color: #ffffff;
  font-family: fontawesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(0deg);
}

.faq__accordian-heading.active {
  background: #2F3E46;
  color: #FFFFFF;
  font-weight: 600;
}

.faq__accordian-heading.active::before {
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(360deg);
}

.faq__accordian-heading.active::before {
  color: #FFFFFF;
}

.faq__accordion-content {
  display: none;
}

.view-btn {
  text-align: right;
}

.notice-content {
  height: 411px;
  background-color: rgba(6, 182, 212, 0.11);
  padding: 10px;
  border-radius: 5px;
  overflow-y: scroll;
}

.notice-content::-webkit-scrollbar {
  width: 8px;
}

.notice-content::-webkit-scrollbar-track {
  background: #FFFFFF;
  /* track color */
  border-radius: 10px;
}

.notice-content::-webkit-scrollbar-thumb {
  background: #8B1E2D;
  /* scrollbar color */
  border-radius: 10px;
}

.notice-content::-webkit-scrollbar-thumb:hover {
  background: #8B1E2D;
  /* hover color */
}

.qiick-links ul li {
  position: relative;
  min-height: 60px;
}

.qiick-links ul li a {
  font-size: 14px;
  color: #000;
  display: block;
  font-weight: 400;
  padding-top: 0;
  padding-left: 75px;
}
.qiick-links ul li a:hover {
  color: #8B1E2D;
  font-weight: 600;
}

.about-college .leftBar {
  position: relative;
  height: 520px;
}
.about-college {
  /* main big image */
}
.about-college .about-1 {
  width: 70%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease;
  border: 6px solid #fff;
  -o-object-position: top;
     object-position: top;
}
.about-college {
  /* top small image */
}
.about-college .about-2 {
  width: 45%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  position: absolute;
  right: 30px;
  top: 40px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 1.3s ease;
}
.about-college {
  /* bottom small image */
}
.about-college .about-3 {
  width: 55%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  position: absolute;
  right: 30px;
  bottom: 0;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 1.6s ease;
}
.about-college .paraBx p {
  text-align: justify;
}
.about-college {
  /* animation */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-college {
  /* hover zoom (subtle professional) */
}
.about-college .leftBar img {
  transition: 0.4s ease;
}
.about-college .leftBar img:hover {
  transform: scale(1.02);
}
.about-college {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  .about-college .leftBar {
    height: 420px;
    margin-bottom: 30px;
  }
  .about-college .about-1 {
    width: 85%;
    height: 280px;
    right: 5px;
  }
  .about-college .about-2 {
    width: 50%;
    height: 180px;
    top: 20px;
    right: 10px;
  }
  .about-college .about-3 {
    width: 70%;
    height: 200px;
  }
}

.noticeFsection {
  background-image: url(../img/uploads/bengaleducationalcollege39.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.noticeFsection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4B5563;
  z-index: -1;
  opacity: 0.75;
}
.noticeFsection .ntb-wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  height: 517px;
  overflow: hidden;
}
.noticeFsection {
  /* ===== HEADER ===== */
}
.noticeFsection .ntb-header {
  padding: 18px 20px;
  font-size: 30px;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  position: relative;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.noticeFsection .principalArea {
  padding: 15px;
}
.noticeFsection .principalArea p {
  text-align: justify;
}
.noticeFsection .prinHeader {
  justify-content: center;
}
.noticeFsection .ntb-footer a {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background: #2F3E46;
  position: relative;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  justify-content: center;
}
.noticeFsection .ntb-footer a:hover {
  background: #8B1E2D;
}
.noticeFsection .ntb-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
}
.noticeFsection {
  /* ===== SWIPER AREA ===== */
}
.noticeFsection .ntb-swiper {
  height: 380px;
}
.noticeFsection {
  /* ===== SLIDE ITEM ===== */
}
.noticeFsection .ntb-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  margin: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  width: 100%;
  max-width: 380px;
}
.noticeFsection .swiper-slide a {
  display: block;
  width: 100%;
}
.noticeFsection .ntb-item:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.noticeFsection {
  /* ===== LEFT SIDE ===== */
}
.noticeFsection .ntb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.noticeFsection {
  /* ICON BOX */
}
.noticeFsection .ntb-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2F3E46;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}
.noticeFsection .ntb-icon img {
  width: 22px;
}
.noticeFsection {
  /* TEXT */
}
.noticeFsection .ntb-text {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.noticeFsection {
  /* ===== DATE BOX ===== */
}
.noticeFsection .ntb-date {
  text-align: center;
  min-width: 55px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #f1f5f9;
}
.noticeFsection .ntb-date h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #8B1E2D;
}
.noticeFsection .ntb-icon-anim {
  display: inline-block;
  margin-right: 8px;
  color: #FFFFFF;
  font-size: 30px;
  /* animation */
  animation: ntb-bounce 1.5s infinite ease-in-out, ntb-glow 2s infinite ease-in-out;
}
.noticeFsection {
  /* slight bounce/alert motion */
}
@keyframes ntb-bounce {
  0%, 100% {
    transform: rotate(0deg) translateY(0);
    color: #FFFFFF;
  }
  25% {
    transform: rotate(-8deg) translateY(-2px);
    color: #B42318;
  }
  50% {
    transform: rotate(8deg) translateY(-2px);
    color: yellow;
  }
  75% {
    transform: rotate(-4deg) translateY(0);
    color: #FFFFFF;
  }
}
.noticeFsection {
  /* glow pulse */
}
@keyframes ntb-glow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  }
}
.noticeFsection .ntb-date span {
  font-size: 12px;
  color: #0F172A;
}
.noticeFsection {
  /* ===== SWIPER FIX ===== */
}
.noticeFsection .swiper-slide {
  display: flex;
  align-items: center;
}
.noticeFsection {
  /* ===== RESPONSIVE ===== */
}
@media (max-width: 576px) {
  .noticeFsection .ntb-wrapper {
    max-width: 95%;
  }
  .noticeFsection .ntb-text {
    font-size: 13px;
  }
}
.noticeFsection .principal-image {
  float: left;
  max-width: 250px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  padding: 5px;
  margin: 5px 5px 0 0;
  text-align: center;
}
.noticeFsection .principal-image img {
  width: 100%;
  height: 185px;
  border-radius: 10px;
}
.noticeFsection .principal-image h3 {
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 22px;
}
.noticeFsection .principal-image h4 {
  font-size: 14px;
  color: #FFFFFF;
}

.collegeFeatures .fac-glowCard {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 18px;
  padding: 20px 10px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0px 10px rgba(33, 30, 30, 0.53);
  transition: 0.4s ease;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.collegeFeatures {
  /* soft glow effect */
}
.collegeFeatures .fac-glowCard::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 60%);
  transform: rotate(25deg);
}
.collegeFeatures {
  /* hover effect */
}
.collegeFeatures .fac-glowCard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
  border: 1px solid #ddd;
}
.collegeFeatures {
  /* logo container */
}
.collegeFeatures .fac-logoWrap {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}
.collegeFeatures {
  /* logo animation */
}
.collegeFeatures .fac-logoWrap img {
  width: 100%;
  transition: 0.4s ease;
}
.collegeFeatures {
  /* hover zoom */
}
.collegeFeatures .fac-glowCard:hover .fac-logoWrap img {
  transform: scale(1.08);
}
.collegeFeatures {
  /* title */
}
.collegeFeatures .fac-title h2 {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 10px;
}

.excellencesection {
  background-image: url(../img/uploads/bengaleducationalcollege17.webp);
}
.excellencesection .wigt-title {
  color: #FFFFFF;
}
.excellencesection {
  /* ===== CARD ===== */
}
.excellencesection .px-card {
  background: rgba(250, 251, 254, 0.8705882353);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}
.excellencesection {
  /* hover */
}
.excellencesection .px-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}
.excellencesection {
  /* ICON */
}
.excellencesection .px-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}
.excellencesection {
  /* NUMBER */
}
.excellencesection .px-num {
  font-size: 42px;
  font-weight: 800;
  color: #0F172A;
}
.excellencesection {
  /* LABEL */
}
.excellencesection .px-label {
  font-size: 14px;
  color: #0F172A;
  margin-top: 5px;
  font-weight: bold;
}
.excellencesection {
  /* RESPONSIVE */
}
@media (max-width: 768px) {
  .excellencesection .px-card {
    margin-bottom: 20px;
  }
}

.collegeAddmission .bedBox {
  box-shadow: 0 0 10px #ddd;
  padding: 10px;
  background-color: #F3F4F6;
}
.collegeAddmission .bedBox p {
  font-size: 16px;
  padding-top: 10px;
  font-weight: 600;
  text-align: center;
}
.collegeAddmission .contt {
  background-color: #2F3E46;
}
.collegeAddmission .btnsExam {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gallery .video-gallery iframe {
  display: block;
  margin: 0;
  padding: 25px;
  border: none;
  border-radius: 25px !important;
  background-color: #8B1E2D;
  height: 350px !important;
}
.gallery .video-gallery img {
  width: 100%;
  height: 350px;
  border-radius: 25px;
  padding: 25px;
  background-color: #8B1E2D;
}

.footerSection {
  background-color: #2F3E46;
  border-top: 10px solid #8B1E2D;
  padding: 30px 0;
}
.footerSection .footerBox h2 {
  font-size: 25px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.footerSection .footerBox h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #8B1E2D;
}
.footerSection .footerBox p {
  color: #FFFFFF;
  text-align: justify;
  padding-right: 25px;
}
.footerSection .footerBox .footerLinks li {
  display: block;
}
.footerSection .footerBox .footerLinks li a {
  color: #FFFFFF;
  display: block;
  padding-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.footerSection .footerBox .footerLinks li a::before {
  content: "\f054";
  font-family: FontAwesome;
  position: absolute;
  top: 2px;
  left: 0;
  color: #FFFFFF;
}
.footerSection .footerBox .addressBox li a {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  color: #FFFFFF;
}
.footerSection .footerBox .addressBox li a i {
  margin-top: 5px;
}
.footerSection .copyRight {
  color: #FFFFFF;
}
.footerSection .copyRight a {
  color: #FFFFFF;
}

.gallerySection {
  background: #F3F4F6;
  /* UNIQUE OWL CLASS */
}
.gallerySection .modern-owl-slider .item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.95);
  transition: 0.4s ease;
}
.gallerySection .modern-owl-slider .item img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
.gallerySection {
  /* Hover Effects */
}
.gallerySection .modern-owl-slider .item:hover {
  transform: scale(1);
}
.gallerySection .modern-owl-slider .item:hover img {
  transform: scale(1.15) rotate(1deg);
}
.gallerySection {
  /* Overlay */
}
.gallerySection .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: 0.4s ease;
}
.gallerySection .modern-owl-slider .item:hover .overlay {
  opacity: 1;
}
.gallerySection {
  /* Nav buttons */
}
.gallerySection .owl-nav button {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2F3E46 !important;
  color: #FFFFFF !important;
}
.gallerySection .owl-nav .owl-prev {
  left: -10px;
}
.gallerySection .owl-nav .owl-next {
  right: -10px;
}
.gallerySection .owl-dots {
  margin-top: 15px;
}
.gallerySection .owl-carousel .owl-nav button.owl-next,
.gallerySection .owl-carousel .owl-nav button.owl-prev,
.gallerySection .owl-carousel button.owl-dot {
  display: none;
}

/* Sidebar box */
.master-page .sidebar-menu {
  position: relative;
  overflow: hidden;
  background-image: url("../img/master-page-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 15px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

/* Overlay Color */
.master-page .sidebar-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  z-index: -1;
}

/* Optional Glass Effect */
.master-page .sidebar-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

/* Title */
.master-page .tittle_menu {
  color: #FFFFFF;
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Menu */
.sidebar-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu nav ul li {
  position: relative;
}

/* Links */
.sidebar-menu nav ul li a {
  font-size: 15px;
  padding: 10px 15px 10px 40px;
  margin: 8px 0;
  color: #333;
  background: #f5f7fa;
  border-radius: 30px;
  display: block;
  text-decoration: none;
  position: relative;
  transition: 0.4s ease;
  font-weight: 600;
}

/* Arrow icon */
.sidebar-menu nav ul li a::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0F172A;
  transition: 0.4s;
}

/* Hover */
.sidebar-menu nav ul li a:hover {
  background: #2F3E46;
  color: #FFFFFF;
  box-shadow: 0 5px 15px #8B1E2D;
}

.sidebar-menu nav ul li a:hover .drop2x {
  color: #FFFFFF;
}

.sidebar-menu nav ul li a:hover::before {
  color: #FFFFFF;
}

/* Active */
.sidebar-menu nav ul li a.active {
  background: #2F3E46;
  color: #FFFFFF;
}

.sidebar-menu nav ul li a.active::before {
  color: #FFFFFF;
}

/* Dropdown icon */
.drop2x {
  position: absolute;
  right: 20px;
  top: 12px;
  color: #0F172A;
  font-size: 14px;
}

/* Submenu */
.submenu2 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s ease;
  padding-left: 15px;
}

/* Submenu open */
.sidebar-menu nav ul li:hover .submenu2 {
  max-height: 500px;
  opacity: 1;
  transform: scaleY(1);
}

/* Submenu links */
.submenu2 a {
  background: #e8ebf1;
  font-size: 14px;
  padding-left: 50px;
}

.master-page .master-content {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
}

.master-page .master-content .master-title {
  text-align: center;
}

.master-page .master-content .inner {
  padding: 10px;
  margin: 5px 0;
}

.master-page .master-content .inner p {
  text-align: justify;
  padding: 5px 0;
  color: #1A1A1A;
}

.master-page .table {
  margin-top: 10px;
  color: #1A1A1A;
  background-color: #fff;
  text-align: center;
}

.master-page .table tr,
.master-page .table td,
.master-page .table th {
  border: 1px solid #888888;
}

.master-page .table thead {
  background-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.master-page .table thead th {
  border-bottom: 0;
}

.master-page .table i {
  font-size: 22px;
  color: #2F3E46;
}

.master-page .table i:hover {
  color: #8B1E2D;
}

.master-page .nav-tabs {
  flex-direction: column;
  border: 0;
}

.master-page .nav-tabs .nav-link {
  font-size: 15px;
  padding: 10px 15px 10px 40px;
  margin: 8px 0;
  color: #0F172A;
  background: #f5f7fa;
  border-radius: 30px;
  display: block;
  text-decoration: none;
  position: relative;
  transition: 0.4s ease;
  position: relative;
  border: 0;
  font-weight: bold;
}

.master-page .nav-tabs .nav-link::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0F172A;
  transition: 0.4s;
}

.master-page .nav-tabs .nav-link.active {
  background: #2F3E46;
  color: #FFFFFF;
  box-shadow: 0 5px 15px #8B1E2D;
}

.master-page .nav-tabs .nav-link:hover {
  background: #2F3E46;
  color: #FFFFFF;
  border: 0;
}

.master-page .nav-tabs .nav-link.active::before {
  color: #FFFFFF;
}

.master-page .nav-tabs .nav-link:hover::before {
  color: #FFFFFF;
}

.master-page .sidebar-menu nav ul {
  list-style: none;
  padding-left: 0;
}

.master-page {
  padding: 50px 0;
}

.right-page-content {
  background-image: url(../img/master-page-bg.svg);
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 5px 10px rgba(22, 33, 62, 0.85);
  position: relative;
}

.master-banner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
  background-image: url("../img/slider/banner_image_1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  overflow: hidden;
}
.master-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(139, 30, 45, 0.2901960784);
  z-index: -1;
}
.master-banner .master-title {
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: bold;
  color: #FFFFFF;
  animation: floatText 3s ease-in-out infinite;
}

.master-page .inner-subttl {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  color: #8B1E2D;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.master-page .inner-subttl span {
  color: #4B5563;
}
.master-page .inner-subttl::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 3px;
  background: #8B1E2D;
  border-radius: 10px;
}
.master-page .parabx p {
  text-align: justify;
  padding-bottom: 10px;
}
.master-page .mst-ul {
  list-style: disc;
  padding-left: 20px;
}
.master-page .mst-ul li {
  padding-bottom: 10px;
}
.master-page .mst-ol {
  list-style: auto;
  padding-left: 20px;
}
.master-page .mst-ol li {
  padding-bottom: 10px;
}
.master-page .master-tble .table thead {
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  color: #FFFFFF;
}
.master-page {
  /* ===============================
     Modern Glassmorphism Teacher Card
  ================================= */
}
.master-page .teacher-profile {
  padding-top: 20px;
  position: relative;
}
.master-page {
  /* Card */
}
.master-page .teacher-card {
  position: relative;
  overflow: hidden;
  padding: 35px 25px;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  z-index: 1;
  margin-bottom: 20px;
}
.master-page {
  /* Animated Glow */
}
.master-page .teacher-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  border-radius: 50%;
  top: -60px;
  right: -60px;
  transition: 0.5s;
}
.master-page .teacher-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46, #E6EEEC);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}
.master-page {
  /* Hover */
}
.master-page .teacher-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.master-page .teacher-card:hover::before {
  transform: scale(1.4) rotate(20deg);
}
.master-page .teacher-card:hover::after {
  opacity: 1;
}
.master-page {
  /* Image Wrapper */
}
.master-page .teacher-img {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
}
.master-page {
  /* Image */
}
.master-page .teacher-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #fff;
  transition: all 0.45s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.master-page {
  /* Rotating Ring */
}
.master-page .teacher-img::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(#8B1E2D, #2F3E46, #E6EEEC, #8B1E2D);
  z-index: -1;
  animation: rotateRing 5s linear infinite;
}
.master-page .teacher-card:hover .teacher-img img {
  transform: scale(1.08);
}
.master-page .teacher-info {
  position: relative;
  z-index: 1;
}
.master-page {
  /* Name */
}
.master-page .teacher-info h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}
.master-page {
  /* Role */
}
.master-page .teacher-info p {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.master-page {
  /* Button */
}
.master-page .view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}
.master-page .view-btn:hover {
  transform: translateY(-4px);
  letter-spacing: 0.5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.master-page {
  /* Animation */
}
@keyframes rotateRing {
  100% {
    transform: rotate(360deg);
  }
}

.master-desk .innerdsk {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(22, 33, 62, 0.85);
  position: relative;
}
.master-desk p {
  text-align: justify;
  padding-bottom: 10px;
}
.master-desk .princi-desk01 p {
  font-size: 16px;
  color: #0F172A;
}
.master-desk .princi-desk01 .fl-right .principal-nme {
  font-size: 25px;
  font-style: italic;
  color: #0F172A;
  margin-top: 10px;
}
.master-desk .princi-desk01 .fl-right .princi-subs {
  line-height: 1.5;
  font-size: 18px;
  color: #0F172A;
}
.master-desk .leftPbox {
  max-width: 250px;
  float: left;
  box-shadow: 0 0 5px #ddd3d3;
  padding: 5px;
  margin: 5px 5px 0 0;
}
.master-desk .leftPbox img {
  width: 100%;
  height: 235px;
}

.galleryssr .innerdsk {
  background: #FFFFFF;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(22, 33, 62, 0.31);
  position: relative;
}
.galleryssr {
  /* ===============================
     Modern Hover Image Card Style
  ================================= */
}
.galleryssr .fancy-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
}
.galleryssr .fancy-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.galleryssr {
  /* Image Wrapper */
}
.galleryssr .single-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 10px;
  border: 2px solid #8B1E2D;
  padding: 5px;
}
.galleryssr {
  /* Image */
}
.galleryssr .image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 24px;
}
.galleryssr iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 24px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.galleryssr .single-img:hover .image {
  transform: scale(1.12) rotate(2deg);
}
.galleryssr {
  /* Gradient Overlay */
}
.galleryssr .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s ease;
  backdrop-filter: blur(3px);
}
.galleryssr {
  /* Hover Effect */
}
.galleryssr .single-img:hover .img-overlay {
  opacity: 1;
  visibility: visible;
}
.galleryssr {
  /* Animated Border */
}
.galleryssr .img-overlay::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.45s ease;
}
.galleryssr .single-img:hover .img-overlay::before {
  transform: scale(1);
  opacity: 1;
}
.galleryssr {
  /* Text */
}
.galleryssr .text {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 20px;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.45s ease;
}
.galleryssr .single-img:hover .text {
  transform: translateY(0);
  opacity: 1;
}
.galleryssr .text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.galleryssr .text p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}
.galleryssr {
  /* Optional Button */
}
.galleryssr .text a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8B1E2D, #E6EEEC);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.35s ease;
}
.galleryssr .text a:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.contact-us {
  margin: 30px 0;
  /* ===================================
     Premium Modern Contact Section
  =================================== */
}
.contact-us .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.contact-us .contact-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-us .contact-subtitle {
  color: #6c757d;
  margin-bottom: 30px;
}
.contact-us .form-control,
.contact-us .form-select {
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 10px;
  font-size: 14px;
}
.contact-us textarea.form-control {
  height: 100px;
  resize: none;
}
.contact-us .input-group-text {
  background: #f8f9fa;
  border-radius: 12px 0 0 12px;
}
.contact-us .contact-btn {
  background: #8B1E2D;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}
.contact-us .contact-btn:hover {
  background: #6f1723;
  transform: translateY(-2px);
}
.contact-us .contact-main {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.contact-us {
  /* Animated Glow */
}
.contact-us .contact-main::before,
.contact-us .contact-main::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(70px);
}
.contact-us .contact-main::before {
  width: 260px;
  height: 260px;
  background: rgba(0, 114, 255, 0.18);
  top: -100px;
  right: -80px;
}
.contact-us .contact-main::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 180, 0, 0.15);
  bottom: -80px;
  left: -60px;
}
.contact-us {
  /* ======================
     Title
  ====================== */
}
.contact-us .contact-title {
  text-align: center;
  margin-bottom: 45px;
}
.contact-us .contact-title span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E6EEEC;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-us .contact-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-us .contact-title p {
  color: #777;
  font-size: 15px;
  max-width: 600px;
  margin: auto;
}
.contact-us {
  /* ======================
     Contact Item
  ====================== */
}
.contact-us .contact-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  margin-bottom: 22px;
  border-radius: 24px;
  background: rgba(6, 182, 212, 0.0784313725);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.4s ease;
  overflow: hidden;
}
.contact-us .contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}
.contact-us .contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.contact-us .contact-item:hover::before {
  opacity: 1;
}
.contact-us {
  /* ======================
     Icon
  ====================== */
}
.contact-us .contact-icon {
  min-width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.contact-us .contact-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
  top: -60%;
  left: -60%;
}
.contact-us .contact-icon i {
  font-size: 24px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.contact-us {
  /* ======================
     Text
  ====================== */
}
.contact-us .contact-text {
  flex: 1;
}
.contact-us .contact-text h5 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #111;
}
.contact-us .contact-text p,
.contact-us .contact-text a {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  text-decoration: none;
  transition: 0.3s;
}
.contact-us .contact-text a:hover {
  color: #8B1E2D;
}
.contact-us {
  /* ======================
     Map
  ====================== */
}
.contact-us .map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.contact-us {
  /* ======================
     Social Links
  ====================== */
}
.contact-us .social-links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-us .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #8B1E2D, #2F3E46);
  box-shadow: 0 10px 25px rgba(131, 116, 116, 0.12);
  transition: all 0.35s ease;
}
.contact-us .social-links a:hover {
  transform: translateY(-6px) rotate(8deg);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}
.contact-us .cpzx {
  display: flex;
  gap: 10px;
}

.quick-links-top {
  background-color: #2F3E46;
  padding: 10px 0;
}
.quick-links-top ul li {
  display: inline-block;
}
.quick-links-top ul li a {
  display: inline-block;
  padding: 5px 8px;
  margin: 2px 2px 0 2px;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 25px;
  transition: all 0.3s ease;
  background-color: rgba(228, 233, 238, 0.71);
}
.quick-links-top ul li a:hover {
  background: #FFFFFF;
  color: #0F172A;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Fixed Help Desk Container */
.help-desk-fixed {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

/* Floating Button with Animation */
.help-desk-btn {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.help-desk-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
  opacity: 0;
}

.help-desk-btn:hover::before {
  left: 120%;
  opacity: 1;
}

.help-desk-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.6);
}

.help-desk-btn .pulse {
  animation: pulse-ring 2s infinite;
  border-radius: 50%;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* Icon Animation */
.help-icon-main {
  font-size: 20px;
  animation: bounce 2s infinite;
  padding: 5px 10px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
/* Help Desk Panel */
.help-desk-panel {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 340px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
}

.help-desk-panel.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.panel-header {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: normal;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.panel-body {
  padding: 10px;
  max-height: 420px;
  overflow-y: auto;
}

/* Help Items with Hover Animation */
.help-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  margin-bottom: 12px;
  background: #f8fbff;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e0efff;
}

.help-item:hover {
  background: #e6f0ff;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
  border-color: #8B1E2D;
}

.help-icon {
  font-size: 21px;
  transition: transform 0.3s ease;
  color: #8B1E2D;
}

.help-item:hover .help-icon {
  transform: scale(1.2) rotate(10deg);
  opacity: 1;
}

.help-info h4 {
  margin: 0 0 4px 0;
  font-size: 16.5px;
  color: #1a1a1a;
}

.help-info p {
  margin: 0;
  font-size: 13.5px;
  color: #555;
}

.call-btn {
  background: #00c853;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.call-btn:hover {
  background: #00b140;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 200, 83, 0.4);
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 480px) {
  .help-desk-panel {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
}
.mssion-vssion .mssion-box {
  padding: 25px;
  border-radius: 15px;
  background: #5d9cec;
  color: #03204d;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  height: 300px;
}
.mssion-vssion .ms-box-img {
  width: 25%;
}
.mssion-vssion .ms-box-img img {
  width: 100px;
}
.mssion-vssion .ms-box {
  width: 100%;
}
.mssion-vssion .ms-box h2 {
  font-size: 30px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.mssion-vssion .ms-box h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background: #E5E7EB;
}
.mssion-vssion .ms-box p {
  color: #FFFFFF;
  text-align: justify;
}
.mssion-vssion .ms-2 {
  background-color: #ef5861;
}
.mssion-vssion .ms-3 {
  background-color: #e79800;
}
.mssion-vssion .readmore2 {
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  transition: all 0.3s linear;
}
.mssion-vssion .readmore2:hover {
  color: #8B1E2D;
  font-weight: bold;
  padding-left: 5px;
}




.erp-payment-container{
    width:100%;
    max-width:450px;
    margin:auto;
}

.erp-payment-card{
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 5px 20px rgb(15 14 14 / 47%);
}

.erp-payment-header{
    text-align:center;
    margin-bottom:30px;
}

.erp-payment-header-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background: #8b1e2d;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}

.erp-payment-title{
    font-size:28px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:5px;
}

.erp-payment-subtitle{
    color:#64748b;
    font-size:14px;
}

.erp-payment-group{
    margin-bottom:25px;
}

.erp-payment-label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#334155;
}

.erp-payment-select-wrapper{
    position:relative;
}

/*.erp-payment-select-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color: #8b1e2d;
    font-size:16px;
    pointer-events:none;
}*/

.erp-payment-select, .form-control{
    width:100%;
    padding:10px;
    /*padding:;*/
    border: 1px solid #8b1e2d;
    border-radius:12px;
    font-size:15px;
    background:#fff;
    outline:none;
    transition:all .3s ease;
    cursor:pointer;
}

.erp-payment-select:focus{
    border-color: #8b1e2d;
    box-shadow:0 0 0 5px rgba(13,110,253,.12);
}

.erp-payment-button{
    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background: #8b1e2d;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.erp-payment-button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(13,110,253,.25);
}

.erp-payment-button i{
    margin-right:8px;
}

@media(max-width:576px){
    .erp-payment-card{
        padding:25px;
    }

    .erp-payment-title{
        font-size:24px;
    }
}


/*home-popup*/
.modal-header{
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #4f4f50 100%);
  color: #fff;
}

.modal-content{
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

.btn-close{
  filter: invert(1);
}
.mod-adm-btn{
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    /* border-radius: 8px; */
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e54, #35373b4f);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Hover lift + glow */
.mod-adm-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(109,67,90,0.4);
  color:#fff;
  background:#1A1A2E;
}

/* Shine animation */
.mod-adm-btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-25deg);
}

/* Animate shine on hover */
.mod-adm-btn:hover::before{
  animation: shine 0.8s ease;
  
}

@keyframes shine{
  0% { left: -75%; }
  100% { left: 125%; }
}

.search-btn {
  padding: 10px 20px;
  background: #8B1E2D;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.search-btn:focus{
    outline:0;
}

/* Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.search-box {
    width: 60%;
    max-width: 600px;
    border: 2px solid white;
    padding: 10px;
    border-radius: 30px;
    background: transparent; 
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.search-box::placeholder{
    color:#fff;
}
.search-box:focus-visible{
    outline:0;
}

.menu-items {
  margin-top: 30px;
  width: 300px;
}

.menu-items .over-menu-items {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid white;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
}

.menu-items button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.txt-bx i{
    color: #42a2d5;;
}
 #show_pdf_div {
        width: 100%;
        height: 100vh; /* full screen height */
    }
    

#welcomeModal .modal-title{
    font-size:20px;
}
.about-teacher .nav-tabs .nav-link{
    background:#8b1e2d;
    color:#fff;
}
.tech-dtls-bx01{
    background: #d1a139;
    padding: 15px;
    border-radius: 10px;
}
.tech-dtls-bx01 a{
    display: block;
    padding-top: 7px;
    color: #fffcfc;
    text-decoration: underline;
}
@media screen and (min-width:991px){
    .master-page .teacher-card{
        min-height:325px;
    }
}

