:root {
  --red: #FF3B5C;
  --orange: #FF7A00;
  --yellow: #FFD600;
  --green: #00C853;
  --teal: #00BCD4;
  --blue: #2979FF;
  --violet: #7C3AED;
  --pink: #FF4081;
  --white: #FFFFFF;
  --offwhite: #F7F8FC;
  --gray: #6B7280;
  --dark: #1A1A2E;
  --radius: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--offwhite);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cur {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, background .18s;
  background: var(--blue);
  mix-blend-mode: multiply;
}

#cur2 {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  border: 2.5px solid var(--blue);
  opacity: .4;
  transition: transform .22s ease, opacity .22s;
}

/* SCROLL BAR */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #f0f0f0
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--violet));
  border-radius: 3px
}

/* SCROLL PROGRESS */
#sprog {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  z-index: 3000;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--violet));
  width: 0%;
  transition: width .05s;
}

/* === NAVBAR === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--dark);
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(237, 238, 239, 0.35);
}

.logo-txt span {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: .3px;
  position: relative;
  transition: color .2s;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transition: right .25s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(41, 121, 255, .35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41, 121, 255, .45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* NOTIF STRIP */
.notif-strip {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink), var(--orange));
  background-size: 300% 100%;
  animation: gradShift 5s linear infinite;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  overflow: hidden;
  transform: translateY(-100%);
  transition: transform .6s .4s cubic-bezier(.4, 0, .2, 1);
}

.notif-strip.show {
  transform: translateY(0);
}

@keyframes gradShift {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 300%
  }
}

.notif-ticker {
  overflow: hidden;
  flex: 1;
  max-width: 700px;
}

.notif-ticker-inner {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.notif-close-btn {
  background: rgba(255, 255, 255, .25);
  border: none;
  color: #fff;
  cursor: none;
  font-size: .8rem;
  padding: 3px 10px;
  border-radius: 50px;
  transition: background .2s;
}

.notif-close-btn:hover {
  background: rgba(255, 255, 255, .4);
}

/* SECTIONS */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* SECTION HEADER */
.sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(41, 121, 255, .1), rgba(124, 58, 237, .1));
  border: 2px solid rgba(41, 121, 255, .2);
  color: var(--blue);
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
  font-family: 'Baloo 2', cursive;
}

.sec-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

.sec-title .col {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title .col2 {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-line {
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  margin: 14px auto 0;
  animation: shimmerLine 2.5s ease-in-out infinite;
}

@keyframes shimmerLine {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1
  }

  50% {
    transform: scaleX(1.3);
    opacity: .7
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.rev-l {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity .65s ease, transform .65s ease;
}

.rev-l.in {
  opacity: 1;
  transform: translateX(0);
}

.rev-r {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity .65s ease, transform .65s ease;
}

.rev-r.in {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== HERO CAROUSEL ==================== */
#hero {
  height: 100vh;
  min-height: 680px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.77, 0, .175, 1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hs1 {
  background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 40%, #EDE9FE 100%);
}

.hs2 {
  background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 40%, #FECDD3 100%);
}

.hs3 {
  background: linear-gradient(135deg, #D1FAE5 0%, #CFFAFE 40%, #DBEAFE 100%);
}

.hs4 {
  background: linear-gradient(135deg, #FCE7F3 0%, #EDE9FE 40%, #DBEAFE 100%);
}

/* Blob shapes */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(41, 121, 255, .35), rgba(124, 58, 237, .2));
  animation-delay: 0s;
}

.blob2 {
  width: 300px;
  height: 300px;
  bottom: -40px;
  right: 20%;
  background: radial-gradient(circle, rgba(255, 64, 129, .3), rgba(255, 122, 0, .15));
  animation-delay: 3s;
}

.blob3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 5%;
  background: radial-gradient(circle, rgba(0, 200, 83, .25), rgba(0, 188, 212, .15));
  animation-delay: 1.5s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: scale(1) translateY(0)
  }

  50% {
    transform: scale(1.08) translateY(-22px)
  }
}

.hero-deco-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-c {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed;
  opacity: .18;
  animation: spinDeco 20s linear infinite;
}

.deco-c:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  border-color: var(--blue);
  animation-duration: 25s;
}

.deco-c:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: 0;
  right: 15%;
  border-color: var(--violet);
  animation-direction: reverse;
  animation-duration: 18s;
}

.deco-c:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 8%;
  border-color: var(--orange);
  animation-duration: 12s;
}

@keyframes spinDeco {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* Floating emojis */
.hero-emoji {
  position: absolute;
  font-size: 2.4rem;
  animation: emojiFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .12));
}

.em1 {
  top: 12%;
  right: 18%;
  animation-delay: 0s;
}

.em2 {
  top: 65%;
  right: 8%;
  animation-delay: 2s;
  font-size: 2rem;
}

.em3 {
  bottom: 18%;
  right: 35%;
  animation-delay: 4s;
  font-size: 1.8rem;
}

.em4 {
  top: 25%;
  right: 42%;
  animation-delay: 1s;
  font-size: 1.6rem;
}

@keyframes emojiFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg)
  }

  50% {
    transform: translateY(-20px) rotate(5deg)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10vw;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(41, 121, 255, .18);
  margin-bottom: 22px;
  animation: badgePop .5s .2s both;
  font-family: 'Baloo 2', cursive;
}

.hero-badge::before {
  content: '✦';
  color: var(--orange);
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(.8)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  animation: slideUp .6s .35s both;
}

.hero-title .gr1 {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .gr2 {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .gr3 {
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 480px;
  animation: slideUp .6s .5s both;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideUp .6s .65s both;
}

.btn-main {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 22px rgba(41, 121, 255, .38);
  font-family: 'Poppins', sans-serif;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(41, 121, 255, .48);
}

.btn-sec {
  background: #fff;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, .08);
  font-weight: 600;
  font-size: .95rem;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
}

.btn-sec:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 22px rgba(41, 121, 255, .18);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: slideUp .6s .8s both;
}

.hero-stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2.1rem;
  font-weight: 800;
  display: block;
}

.hero-stat-num.c1 {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-num.c2 {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-num.c3 {
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Carousel controls */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .2s, box-shadow .2s;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .13);
  color: var(--dark);
}

.hero-prev {
  left: 3vw;
}

.hero-next {
  right: 3vw;
}

.hero-prev:hover,
.hero-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(41, 121, 255, .3);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .18);
  border: none;
  cursor: none;
  transition: .3s;
}

.hero-dot.on {
  background: var(--blue);
  transform: scale(1.4);
  width: 28px;
  border-radius: 6px;
}

/* ==================== STATS TICKER ==================== */
.stats-bar {
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink), var(--orange), var(--yellow), var(--green), var(--teal), var(--blue));
  background-size: 400% 100%;
  animation: gradShift 8s linear infinite;
  padding: 14px 0;
  overflow: hidden;
}

.stats-bar-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  align-items: center;
}

.stat-tick {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  font-family: 'Baloo 2', cursive;
}

.stat-tick span {
  font-size: 1.2rem;
}

.tick-sep {
  color: rgba(255, 255, 255, .4);
  font-size: 1.2rem;
}

/* ==================== NOTIFICATIONS ==================== */
#notifications {
  padding: 80px 0;
  background: var(--white);
}

.notif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.notif-panel-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--offwhite);
  border-left: 4px solid;
  transition: transform .2s, box-shadow .2s;
  cursor: none;
}

.notif-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.notif-item.blue {
  border-color: var(--blue);
}

.notif-item.orange {
  border-color: var(--orange);
}

.notif-item.green {
  border-color: var(--green);
}

.notif-item.red {
  border-color: var(--red);
}

.notif-item.violet {
  border-color: var(--violet);
}

.notif-dot2 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.nd-blue {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(41, 121, 255, .5);
}

.nd-orange {
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 122, 0, .5);
}

.nd-green {
  background: var(--green);
  box-shadow: 0 0 8px rgba(0, 200, 83, .5);
}

.nd-red {
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 59, 92, .5);
}

.nd-violet {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(124, 58, 237, .5);
}

.notif-text2 {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.5;
  font-weight: 500;
}

.notif-date2 {
  font-size: .74rem;
  color: var(--gray);
  margin-top: 3px;
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
}

/* ==================== ABOUT ==================== */
#about {
  padding: 100px 0;
  background: var(--offwhite);
}
.about-principle {
  gap: 72px;
  align-items: center;
  padding: 0 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 0 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-main-card {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 28px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(41, 121, 255, .28);
  position: relative;
  overflow: hidden;
}

.about-main-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-icon-big {
  font-size: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-card-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-card-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-float1,
.about-float2 {
  position: absolute;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: cardFloat 4s ease-in-out infinite;
}

.about-float1 {
  top: -20px;
  right: -28px;
  animation-delay: 0s;
}

.about-float2 {
  bottom: -20px;
  left: -28px;
  animation-delay: 2s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.fi1 {
  background: linear-gradient(135deg, #FFF7ED, #FECDD3);
}

.fi2 {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.float-num {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.float-lbl {
  font-size: .72rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.about-dots-bg {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(41, 121, 255, .25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  border-radius: 50%;
}

/* About content */
.about-tagline {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}

.about-body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
  cursor: none;
  border: 1.5px solid transparent;
}

.pillar:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .09);
  border-color: rgba(41, 121, 255, .2);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pi1 {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.pi2 {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.pi3 {
  background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
}

.pillar-text strong {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
}

.pillar-text span {
  font-size: .82rem;
  color: var(--gray);
  font-weight: 500;
}

/* ==================== PROGRAMS TABS ==================== */
#programs {
  padding: 100px 0;
  background: var(--white);
}

.programs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.tabs-row {
  display: flex;
  gap: 8px;
  background: var(--offwhite);
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 44px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
}

.tab-b {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray);
  background: transparent;
  transition: .25s;
}

.tab-b.on {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 4px 18px rgba(41, 121, 255, .35);
}

.tab-b:nth-child(2).on {
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 4px 18px rgba(255, 122, 0, .35);
}

.tab-b:nth-child(3).on {
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 4px 18px rgba(0, 200, 83, .35);
}

.tab-b:nth-child(4).on {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 4px 18px rgba(255, 64, 129, .35);
}

.prog-panel {
  display: none;
  animation: fadeIn .4s ease;
}

.prog-panel.on {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.prog-card {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 28px;
  cursor: none;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.prog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.prog-card.c-blue::before {
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.prog-card.c-orange::before {
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.prog-card.c-green::before {
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .11);
  border-color: rgba(41, 121, 255, .12);
}

.prog-card.c-orange:hover {
  border-color: rgba(255, 122, 0, .18);
}

.prog-card.c-green:hover {
  border-color: rgba(0, 200, 83, .18);
}

.prog-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.iw-blue {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.iw-orange {
  background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
}

.iw-green {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.iw-violet {
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
}

.prog-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.prog-desc {
  font-size: 1.0rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 500;
}

.prog-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
}

.pt-blue {
  background: #DBEAFE;
  color: var(--blue);
}

.pt-orange {
  background: #FFF7ED;
  color: var(--orange);
}

.pt-green {
  background: #D1FAE5;
  color: var(--green);
}

.pt-violet {
  background: #EDE9FE;
  color: var(--violet);
}

/* ==================== INFRA SLIDER ==================== */
#infrastructure {
  padding: 100px 0;
  background: var(--offwhite);
  overflow: hidden;
}

.infra-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.infra-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 46px;
}

.infra-track {
  display: flex;
  gap: 22px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.infra-card {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: none;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  transition: transform .3s, box-shadow .3s;
  border: 2px solid rgba(255, 255, 255, .8);
}

.infra-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.infra-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: transform .4s;
}

.infra-card:hover .infra-bg {
  transform: scale(1.1);
}

.ib1 {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.ib2 {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.ib3 {
  background: linear-gradient(135deg, #FFF7ED, #FECDD3);
}

.ib4 {
  background: linear-gradient(135deg, #CFFAFE, #DBEAFE);
}

.ib5 {
  background: linear-gradient(135deg, #FEF3C7, #FFF7ED);
}

.ib6 {
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
}

.infra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(255, 255, 255, .97));
  padding: 40px 22px 22px;
}

.infra-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3px;
}

.infra-desc2 {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
}

.infra-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
  font-family: 'Baloo 2', cursive;
}

.ib-blue {
  color: var(--blue);
}

.ib-green {
  color: var(--green);
}

.ib-orange {
  color: var(--orange);
}

.ib-teal {
  color: var(--teal);
}

.ib-yellow {
  color: var(--orange);
}

.ib-violet {
  color: var(--violet);
}

.slider-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.sl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: .2s;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(41, 121, 255, .15);
}

.sl-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(41, 121, 255, .35);
}


/* ==================== BLOGS ==================== */
#blogs {
  padding: 100px 0;
  background: var(--white);
}

.blogs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.blogs-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
}
.blog-card {
  background: var(--offwhite);
  border-radius: 22px;
  overflow: hidden;
  cursor: none;
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .11);
}

.blog-card.feat {
  grid-row: span 2;
}

.blog-card.feat:hover {
  border-color: rgba(41, 121, 255, .2);
}

.blog-card:not(.feat):hover {
  border-color: rgba(255, 122, 0, .18);
}

.blog-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s;
}

.blog-card.feat .blog-thumb {
  height: 280px;
}

.blog-card:not(.feat) .blog-thumb {
  height: 200px;
}

.blog-card:hover .blog-thumb {
  transform: scale(1.04);
}

.bt1 {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.bt2 {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.bt3 {
  background: linear-gradient(135deg, #FFF7ED, #FECDD3);
}

.bt4 {
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
}

.blog-body {
  padding: 22px 24px 26px;
}

.blog-cat {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Baloo 2', cursive;
}

.bc-blue {
  background: #DBEAFE;
  color: var(--blue);
}

.bc-orange {
  background: #FFF7ED;
  color: var(--orange);
}

.bc-green {
  background: #D1FAE5;
  color: var(--green);
}

.bc-violet {
  background: #EDE9FE;
  color: var(--violet);
}

.blog-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card.feat .blog-title {
  font-size: 1.25rem;
}

.blog-card:not(.feat) .blog-title {
  font-size: 1.2rem;
}

.blog-excerpt {
  font-size: 1.0rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: var(--gray);
}

.blog-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .7rem;
  color: #fff;
}

.av1 {
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.av2 {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.av3 {
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.av4 {
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.blog-rm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: gap .2s;
}

.blog-card.feat .blog-rm {
  color: var(--blue);
}

.blog-card:not(.feat) .blog-rm {
  color: var(--orange);
}

.blog-rm:hover {
  gap: 12px;
}

/* ==================== FACULTY ==================== */
#faculty {
  padding: 100px 0;
  background: var(--offwhite);
}

.fac-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fac-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  cursor: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.fac-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
}

.fc1::after {
  background: linear-gradient(180deg, rgba(41, 121, 255, .04), rgba(124, 58, 237, .06));
}

.fc2::after {
  background: linear-gradient(180deg, rgba(0, 200, 83, .04), rgba(0, 188, 212, .06));
}

.fc3::after {
  background: linear-gradient(180deg, rgba(255, 122, 0, .04), rgba(255, 59, 92, .06));
}

.fc4::after {
  background: linear-gradient(180deg, rgba(124, 58, 237, .04), rgba(255, 64, 129, .06));
}

.fac-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.fac-card:hover::after {
  opacity: 1;
}

.fc1:hover {
  border-bottom-color: var(--blue);
}

.fc2:hover {
  border-bottom-color: var(--green);
}

.fc3:hover {
  border-bottom-color: var(--orange);
}

.fc4:hover {
  border-bottom-color: var(--violet);
}

.fac-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid transparent;
  transition: border-color .3s;
}

.fav1 {
  background: linear-gradient(135deg, #DBEAFE, #EDE9FE);
}

.fav2 {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.fav3 {
  background: linear-gradient(135deg, #FFF7ED, #FECDD3);
}

.fav4 {
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
}

.fc1:hover .fac-av {
  border-color: var(--blue);
}

.fc2:hover .fac-av {
  border-color: var(--green);
}

.fc3:hover .fac-av {
  border-color: var(--orange);
}

.fc4:hover .fac-av {
  border-color: var(--violet);
}

.fac-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.fac-role {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Baloo 2', cursive;
}

.fr1 {
  color: var(--blue);
}

.fr2 {
  color: var(--green);
}

.fr3 {
  color: var(--orange);
}

.fr4 {
  color: var(--violet);
}

.fac-exp {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ==================== CONTACT ==================== */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5vw;
}

.contact-card {
  background: linear-gradient(135deg, #F0F7FF, #F5F0FF);
  border-radius: 30px;
  padding: 48px 40px;
  box-shadow: 0 12px 50px rgba(41, 121, 255, .12);
  border: 2px solid rgba(41, 121, 255, .1);
  margin-top: 36px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.finput,
.fselect,
.ftextarea {
  background: #fff;
  border: 2px solid rgba(41, 121, 255, .12);
  color: var(--dark);
  border-radius: 14px;
  padding: 13px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
}

.finput::placeholder,
.ftextarea::placeholder {
  color: var(--gray);
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(41, 121, 255, .1);
}

.fselect option {
  color: var(--dark);
}

.ftextarea {
  height: 120px;
  resize: none;
}

.fsubmit {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 22px rgba(41, 121, 255, .35);
  letter-spacing: .3px;
}

.fsubmit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(41, 121, 255, .45);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--dark);
  padding: 64px 5vw 28px;
  color: rgba(255, 255, 255, .8);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.foot-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.foot-logo span {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foot-tagline {
  font-size: .85rem;
  line-height: 1.75;
  max-width: 260px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.foot-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  cursor: none;
  transition: .2s;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  font-weight: 700;
}

.fsoc:hover {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
}

.foot-col h4 {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: 'Baloo 2', cursive;
}

.foot-col.c1 h4 {
  color: var(--blue);
}

.foot-col.c2 h4 {
  color: var(--green);
}

.foot-col.c3 h4 {
  color: var(--orange);
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-links a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  transition: color .2s;
}

.foot-links a:hover {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.foot-bottom a {
  color: var(--blue);
  text-decoration: none;
}

/* MOBILE MENU */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu a {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}

.mob-menu a:hover {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.feat {
    grid-column: span 2;
  }

  .about-wrap {
    gap: 48px;
  }

  .prog-panel.on {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .notif-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.feat {
    grid-column: span 1;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gal-item:nth-child(4) {
    grid-column: span 1;
  }

  .gal-item:nth-child(7) {
    grid-row: span 1;
  }

  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prog-panel.on {
    grid-template-columns: 1fr;
  }

  .form-row2 {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-card {
    padding: 32px 22px;
  }

  .infra-card {
    min-width: 260px;
  }

  .gcar-card {
    min-width: 240px;
  }

  .notif-grid {
    padding: 0 5vw;
  }
}

/* FLOATING BUBBLES */
.bubble {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  animation: bubbleRise linear infinite;
  z-index: 0;
}
.fac-card::before,
.fac-card::after {
  pointer-events: none;
}

@keyframes bubbleRise {
  from {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  10% {
    opacity: .6
  }

  90% {
    opacity: .6
  }

  to {
    transform: translateY(-120px) scale(1);
    opacity: 0
  }
}

/*========================academic=============================*/
#academics {
  padding: 80px 0;
  background: #f7f9fc;
}

.academic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.academic-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.academic-card:hover {
  transform: translateY(-8px);
}

.ac-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.academic-card h3 {
  margin-bottom: 10px;
}

.academic-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.ac-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.ac-btn:hover {
  background: #0056b3;
}

/*===================admission==================*/
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.step-no {
  width: 45px;
  height: 45px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
  font-weight: bold;
}

.eligibility-box ul {
  font-size: 16px;
  line-height: 1.8;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.fee-table th,
.fee-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.download-item {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.download-item a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background: #007bff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}
.nav-links a.active {
  color: #024856;
  font-weight: 600;
  border-bottom: 2px solid #02404d;
}

.gcar-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077cc;
  margin-bottom: 12px;
}
#eligibility {
  padding: 100px 0;
  background: var(--offwhite);
}
/* Accordion container */
.doc-accordion {
  max-width: 820px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card style */
.doc-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: all .35s ease;
  position: relative;
}

/* Hover effect */
.doc-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--blue);
}

/* Title button */
.doc-title {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}

/* hover title */
.doc-title:hover {
  background: linear-gradient(90deg, #f7faff, #f0f5ff);
}

/* Arrow icon */



/* list */
.doc-content ul {
  padding-left: 18px;
  margin-top: 8px;
}

/* list items */
.doc-content li {
  margin-bottom: 7px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  position: relative;
  padding-left: 4px;
}

/* bullet style */
.doc-content li::marker {
  color: var(--blue);
}

/* slight hover effect on list */
.doc-content li:hover {
  color: var(--dark);
  transform: translateX(4px);
  transition: .25s;
}

.doc-accordion {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media(max-width:768px) {
  .doc-accordion {
    grid-template-columns: 1fr;
  }
}

.tap-icon {
  display: inline-block;
  animation: tap 0.6s infinite;
}

@keyframes tap {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

#admission-process {
  padding: 100px 0;
  background: var(--white);
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ad-step {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  transition: .35s;
  border-top: 4px solid var(--blue);
}

.ad-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.ad-step h3 {
  font-family: 'Baloo 2', cursive;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.ad-step p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

.test-box {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--offwhite);
  border-radius: 10px;
}

.test-box ul {
  padding-left: 18px;
  margin-top: 5px;
}

.test-box li {
  font-size: 14px;
  margin-bottom: 3px;
}

.doc-list {
  padding-left: 18px;
  margin-top: 10px;
}

.doc-list li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--gray);
}

.small {
  font-size: 12px;
  color: var(--gray);
  margin-top: 5px;
}

#fee-policy {
  padding: 100px 0;
  background: var(--offwhite);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fee-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: .35s;
  border-top: 4px solid var(--blue);
}

.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fee-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.fee-card h3 {
  font-family: 'Baloo 2', cursive;
  margin-bottom: 10px;
}

.fee-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.fee-box {
  background: var(--offwhite);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 10px;
}

.fee-highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.rules-box {
  margin-top: 50px;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.rules-box h3 {
  font-family: 'Baloo 2', cursive;
  margin-bottom: 15px;
}

.rules-box ul {
  padding-left: 20px;
}

.rules-box li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

#academic-section {
  padding: 100px 0;
  background: var(--offwhite);
}

.academic-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.academic-block {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: .35s;
}

.academic-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.academic-block h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.academic-block h4 {
  font-family: 'Baloo 2', cursive;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--blue);
}

.academic-block ul {
  padding-left: 18px;
  margin-top: 8px;
}

.academic-block li {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
  line-height: 1.6;
}

#cbse-links {
  padding: 100px 0;
  background: var(--offwhite);
}

.cbse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.cbse-card {
  background: var(--offwhite);
  padding: 30px 25px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid transparent;
}

.cbse-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--blue);
}

.cbse-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
#contact-info{
padding:100px 0;
background:var(--offwhite);
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
margin-bottom:40px;
}

.contact-card-box{
background:#fff;
padding:30px;
border-radius:var(--radius);
box-shadow:var(--shadow);
text-align:center;
transition:.3s;
border-top:4px solid var(--blue);
}

.contact-card-box:hover{
transform:translateY(-8px);
box-shadow:var(--shadow-lg);
}

.cicon{
font-size:32px;
margin-bottom:10px;
}

.contact-card-box h3{
font-family:'Baloo 2',cursive;
margin-bottom:8px;
}

.google-map{
margin-top:30px;
border-radius:var(--radius);
overflow:hidden;
box-shadow:var(--shadow);
}
.contact-card-box a{
color:var(--blue);
text-decoration:none;
font-weight:600;
}

.contact-card-box a:hover{
color:var(--violet);
text-decoration:underline;
}
#school-info{
padding:100px 0;
background:var(--offwhite);
}

.info-table-wrap{
max-width:1000px;
margin:auto;
margin-top:40px;
}

.info-table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:var(--shadow);
}

.info-table th{
width:35%;
text-align:left;
padding:18px;
background:#f5f8ff;
font-family:'Baloo 2',cursive;
font-weight:700;
color:var(--dark);
border-bottom:1px solid #eee;
}

.info-table td{
padding:18px;
font-size:14px;
color:var(--gray);
line-height:1.6;
border-bottom:1px solid #eee;
}

.info-table a{
color:var(--blue);
font-weight:600;
text-decoration:none;
}

.info-table a:hover{
color:var(--violet);
text-decoration:underline;
}

@media(max-width:768px){

.info-table th,
.info-table td{
display:block;
width:100%;
}

.info-table tr{
display:block;
margin-bottom:15px;
}
}
/*hide image in mobile */
@media(max-width:768px){

.hero-right-img{
display:none;
}

.hero-slide{
flex-direction:column;
justify-content:center;
text-align:center;
padding:60px 20px;
}

.hero-content{
max-width:100%;
margin:auto;
}

.hero-btns{
justify-content:center;
}

.hero-stats{
justify-content:center;
}

}
.school-logo {
  max-width: 100%;      
  height: auto;          
  display: block;       
  margin: 0 auto;        
}
.privacy-box{
max-width:960px;
margin:120px 0 80px 40px;  
padding:40px 50px;       
border-radius:10px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.blog-excerpt a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.blog-excerpt a:hover {
  text-decoration: none; 
  color: #007bff;  
  font-weight: 600;    
}
.committee-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:30px;
padding:0 40px;
}

.committee-grid .blog-card{
background:#fff;
border-radius:20px;
padding:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.committee-grid .blog-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.committee-grid .blog-title{
font-size:20px;
margin:10px 0;
}

.committee-grid .blog-excerpt{
font-size:18px;
line-height:1.6;
}

.committee-grid .blog-rm{
display:inline-block;
margin-top:12px;
font-weight:600;
color:var(--blue);
}
@media(max-width:900px){
.committee-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.committee-grid{
grid-template-columns:1fr;
}
}
/* Table styling */
.information-table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:12px;
overflow:hidden;
font-size:15px;
}

/* Table rows */
.information-table tr{
border-bottom:1px solid #e6e6e6;
}

/* Left column */
.information-table th{
width:35%;
padding:16px 22px;
text-align:left;
font-weight:600;
color:#333;
background:#f7f8fb;
vertical-align:top;
}

/* Right column */
.information-table td{
padding:16px 22px;
color:#555;
line-height:1.6;
}

/* Hover effect */
.information-table tr:hover{
background:#f9faff;
}

/* Remove border from last row */
.information-table tr:last-child{
border-bottom:none;
}

/* Links inside table */
.information-table a{
color:#2b6cff;
text-decoration:none;
font-weight:500;
}

.information-table a:hover{
text-decoration:underline;
}
@media (max-width:768px){

.information-table,
.information-table tbody,
.information-table tr,
.information-table th,
.information-table td{
display:block;
width:100%;
}

.information-table tr{
margin-bottom:15px;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.information-table th{
background:#f4f6ff;
border-bottom:none;
padding-bottom:6px;
}

.information-table td{
padding-top:0;
}
}
/* WhatsApp floating button */
/* Floating Buttons */
.float-btn{
  position: fixed;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp-btn{
  bottom: 90px;
  background:#25D366;
  color:white;
}

/* Login */
.login-vertical{
  position: fixed;
  right: -45px;
  top: 20%;
  transform: rotate(-90deg);
  background:linear-gradient(135deg,#2979FF,#7C3AED);
  color:#fff;
  border:none;
  padding:12px 30px;
  font-weight:600;
  letter-spacing:1px;
  border-radius:8px 8px 0 0;
  z-index:9999;
}
/* Hover */
.float-btn:hover{
  transform:scale(1.1);
  transition:.3s;
}

.table td, .table th{
white-space: nowrap;
}

@media(max-width:768px){
.table td, .table th{
font-size:13px;
}
}
/* Make accordion text same as about text */
#notifications .accordion-button{
  color: #555;        /* match about text */
  background: #fff;
  box-shadow: none;
}

#notifications .accordion-button:not(.collapsed){
  color: #555;
  background: #f8f9fa;
}

#notifications .accordion-body{
  color: #666;
}

/* remove bootstrap blue focus */
#notifications .accordion-button:focus{
  box-shadow: none;
}
    .infrastructure-scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.gc5 {
  background: linear-gradient(135deg, #FEF3C7, #D1FAE5);
}
.gcar-sub {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 600;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* hover */
.gallery-btn:hover {
    background: linear-gradient(135deg, #2979FF, #7C3AED);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(41, 121, 255, 0.4);
}

/* icon animation */
.gallery-btn:hover::before {
    transform: scale(1.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media(max-width:900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.stats-bar .stat-tick a {
  text-decoration: none;   
  color: inherit;          
  transition: color 0.3s ease;
}

.stats-bar .stat-tick a:hover,
.stats-bar .stat-tick a:focus {
  color: #0056b3;        
  text-decoration: underline; 
}
.accordion-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}
.leader-card {
  background:#fff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  text-align:center;
}

.leader-card img {
  max-width:150px;
  border-radius:50%;
  margin-bottom:15px;
}