:root {
  --primary: #072b76;
  --primary-dark: #052361;
  --accent: #f3bf25;
  --light-bg: #f5f6fa;
  --text: #132649;
  --muted: #61718c;
  --card: #edf1fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cabin", sans-serif;
  color: var(--text);
  background: #fff;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Lora", serif;
}
a {
  text-decoration: none;
}

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

.section-space {
  padding: 5rem 0;
}

.bg-light-subtle {
  background: #f7f7f8;
}

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
}

.topbar .social-links a,
.footer-social a {
  color: #fff;
  opacity: 0.95;
  font-size: 0.95rem;
}

.brand-logo {
  width: min(330px, 100%);
}

.site-header {
  z-index: 1030;
}

.navbar {
  padding-top: 0px;
  padding-bottom: 0px;
}

.navbar-nav .nav-link {
  color: #222;
  font-weight: 500;
  position: relative;
  padding-inline: 0.7rem !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--accent);
}

.hero-section {
  background: var(--primary);
}

.hero-slide {
  min-height: 535px;
  background: linear-gradient(90deg, rgba(7, 43, 118, 0.98) 0%, rgba(7, 43, 118, 0.95) 38%, rgba(7, 43, 118, 0.55) 58%, rgba(7, 43, 118, 0.0) 74%),
    url('../images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide-alt {
  background:
    linear-gradient(90deg, rgba(7, 43, 118, 0.98) 0%, rgba(7, 43, 118, 0.90) 42%, rgba(7, 43, 118, 0.48) 60%, rgba(7, 43, 118, 0.0) 78%),
    url('../images/hero-bg.png') right center/cover no-repeat;
}

.hero-slide-third {
  background:
    linear-gradient(90deg, rgba(7, 43, 118, 0.98) 0%, rgba(7, 43, 118, 0.92) 38%, rgba(7, 43, 118, 0.4) 61%, rgba(7, 43, 118, 0.0) 80%),
    url('../images/hero-bg.png') center/cover no-repeat;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-copy h1 span,
.about-section h2 span,
.services-section h2 span {
  color: var(--accent);
  /* text-decoration: underline; */
  text-underline-offset: 0.12em;
}

.hero-copy p {
  max-width: 570px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.hero-btn {
  border-radius: 0;
  border-width: 1px;
  padding: 0.85rem 2rem;
  font-weight: 600;
}

.hero-btn:hover {
  background: #fff;
  color: var(--primary);
}

.news-ticker-wrap {
  background: var(--accent);
  color: #1c1c1c;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.news-heading {
  padding: 0rem 1.5rem;
  font-size: clamp(1.5rem, 4vw, 3.3rem);
  font-weight: 800;
  color: #d08f00;
  white-space: nowrap;
}

.news-ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.news-track {
  display: inline-flex;
  gap: 3rem;
  min-width: max-content;
  padding: 0.9rem 0 0.9rem 100%;
  animation: ticker-left 28s linear infinite;
  font-size: 0.96rem;
}

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

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

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-collage img,
.about-collage .stat-card {
  border-radius: 1.75rem;
  width: 100%;
}

.about-collage img {
  object-fit: cover;
}

.collage-left,
.collage-right {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.collage-left img {
  height: auto;
  border-radius: 100px 0px 0px 0px;
}

.collage-right img {
  height: auto;
  border-radius: 0px 0px 100px 0px;
}

.stat-card {
  background: #f1efec;
  padding: 1.8rem 1rem;
  text-align: center;
  display: grid;
  place-items: center;
}

.stat-card {
  max-height: 135px;
}

.stat-card h3 {
  color: #ffffff;
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
}

.stat-card p {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
}

.section-tag {
  text-transform: uppercase;
  color: #37589b;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

section h2 {
  color: var(--primary);
  font-size:2.5rem;
  line-height: 1.05;
  font-weight:400;
  margin-bottom: 1rem;
}
section h3 {
  color: var(--primary);
  font-weight:400;
  margin-bottom: 1rem;
}

.lead-text,
.services-section p,
.message-content p,
.site-footer p,
.footer-contact li,
.footer-links a {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 0.7rem;
  background: #eef2fa;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.93rem;
}

.btn-primary.cta-btn {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 0;
  padding: 0.95rem 2rem;
  font-weight: 600;
}

.btn-primary.cta-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.services-section {
  background: var(--primary);
}

.services-section h2,
.services-section p {
  color: #fff;
}

.services-banner {
  border-radius: 1.6rem;
  min-height: 230px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.service-card {
  background: #eff3fb;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  padding: 2rem 1.4rem 2.2rem;
  text-align: center;
  border-top: 6px solid var(--accent);
}

.icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: #f9fbff;
  border: 1px solid #d8dff2;
  font-size: 2rem;
  padding: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight:400;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #53617e;
  margin: 0;
  font-size: 0.97rem;
}

.message-card {
  background-image: url('../images/message-bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

.announcement-tabs .nav-link {
  border: 0;
  background: transparent;
  color: #2b2b2b;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.75rem 1.2rem;
}

.announcement-tabs .nav-link.active {
  color: var(--primary);
  border-bottom: 3px solid #4a5f9a;
}

.featured-news img {
  border-radius: 0.6rem;
  object-fit: cover;
  min-height: 350px;
}

.featured-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.date-box {
  width: 84px;
  min-width: 84px;
  background: var(--accent);
  color: #111;
  text-align: center;
  padding: 1rem 0.4rem;
  font-weight: 500;
}

.date-box span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.date-box small {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.featured-caption h3,
.news-item h4 {
  color: #2d3240;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.featured-caption p,
.news-item p {
  margin: 0;
  color: #6a748a;
  line-height: 1.55;
}

.news-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: center;
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-item p a,
.featured-caption p a {
  color: #5f73ab;
  font-weight: 600;
}

.message-card {
  background-color: #eaf0fd;
  border-radius: 1.4rem;
  display: flex;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  position: relative;
}

.message-image-wrap,
.message-content {
  position: relative;
  z-index: 1;
  position: relative;

}

.message-image-wrap {
  display: flex;
  place-items: center;
  padding: 2.1rem;
  min-width: 338px;
  justify-content: end;
}

.message-image-wrap img {
  width: auto;
  max-width: initial;
  border-radius: 0px 50px 0px 50px;
  height: 220px;
}

.message-content {
  padding: 5rem 3rem 2.8rem 0;
  flex: 1;
}

.message-content h2 {
  font-size: 2rem;
}

.quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
  position: absolute;
  left: 0px;
  top: 50px;
}

.message-content-inner {
  border-left: 1px solid #022468;
  padding-left: 30px;
  margin-left: 30px;
  margin-top: 30px;
}

.contact-cta {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  overflow: hidden;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-cta h2 {
  color: #fff;
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 3vw, 1.8rem);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.phone-pill,
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 1rem 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.phone-pill {
  background: var(--accent);
  color: #111;
  border-radius: 0.35rem 0 0 0.35rem;
}

.contact-pill {
  background: #fff;
  color: #111;
  border-radius: 0 0.35rem 0.35rem 0;
}

.or-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 700;
  margin-inline: -20px;
  z-index: 1;
  font-size: 0.9rem;
}

.site-footer {
  background: #fff;
}

.site-footer h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #dddddd;
}

.footer-logo {
  width: 260px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #4d586f;
}

.footer-bottom {
  border-top: 1px solid #dfe2ea;
  color: #6f7787;
  font-size: 0.9rem;
}

.footer-social a {
  color: #111;
  opacity: 1;
  font-size: 1rem;
}

.collage-left .bottom-stat {
  border-radius: 0px 0px 0px 100px;
  -webkit-border-radius: 0px 0px 0px 100px;
}

.collage-right .top-stat {
  border-radius: 0px 100px 0px 0px;
  -webkit-border-radius: 0px 100px 0px 0px;
  background: var(--primary);
}

.bottom-stat h3,
.top-stat h3 {
  font-size: 2rem;
  font-weight: 500;
}

.about-shade {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.shade2 {
  position: absolute;
  right: 0px;
  bottom: 100px;
}

.animate-swipe-right.swipe {
  animation: swipeRight 0.5s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  opacity: 1;
}

.animate-swipe-left.swipe {
  animation: swipeLeft 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  opacity: 1;
}

.animate-swipe-up.swipe {
  animation: swipeDown 1.5s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  opacity: 1;
}

.animate-swipe-down.swipe {
  animation: swipeUp 1.5s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes swipeRight {
  0% {
    transform: translate(30px, 0px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes swipeLeft {
  0% {
    transform: translate(-30px, 0px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes swipeDown {
  0% {
    transform: translate(0px, -30px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

@keyframes swipeUp {
  0% {
    transform: translate(0px, 30px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

.message-section {
  padding-top: 0px !important;
}

.page-hero {
  padding: 80px 0;
  background: linear-gradient(90deg, rgba(7, 43, 119, .96), rgba(7, 43, 119, .72)), url('../images/why-us.png') center/cover no-repeat;
  color: #fff
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  display: none;
}

.breadcrumb-clean {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-weight: 600
}

.breadcrumb-clean a {
  color: #fff
}

.breadcrumb-clean span {
  opacity: .75
}





.section-space {
  padding: 100px 0;
}

.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: inline-block;
}


.section-text {
  color: var(--muted);
  font-size: 16px;
}

.progress-item {
  margin-bottom: 10px;
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--muted);
}

.progress {
  height: 8px;
  background: #ececec;
  border-radius: 0;
  overflow: visible;
}

.progress-bar {
  background-color: var(--primary);
  position: relative;
}

.progress-value {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  position: absolute;
  right: 0;
  top: -28px;
  border-radius: 2px;
}

.about-visual {
  position: relative;
  min-height: 640px;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 640px;
  object-fit: cover;
}

.info-stack {
  position: relative;
  top: 55px;
  width: 100%;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  z-index: 2;
  display: flex;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}

.info-card {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid #efefef;
  flex: 1;
}

.info-card:last-child {
  border-right: 0;
}

.info-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background-color: var(--accent);
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.info-icon i {
  background-color: var(--accent);
}

.info-card h5 {
  font-size: 24px;
  font-weight:600;
  margin-bottom: 10px;
  color: var(--primary);
}

.info-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
}

.exp-box {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: #fff;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.exp-box h3 {
  color: var(--primary);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 5px;
}

.exp-box span {
  color: #777;
  font-size: 14px;
  font-weight: 500;
}

.cta-section {
  position: relative;
  padding: 150px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('../images/about-bottom.png') top/cover no-repeat;
  color: #fff;
  text-align: center;
  background-attachment: fixed;
}

.cta-title {
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 20px;
}

.cta-text {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.btn-custom-green {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 0;
}

.btn-custom-green:hover {
  background: #89b94a;
  color: #fff;
}

.teachers-section {
  background: #f5f5f5;
}

.teacher-card {
  background: #fff;
  transition: 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.teacher-image-wrap {
  position: relative;
  overflow: hidden;
}

.teacher-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.teacher-social {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.teacher-social a {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.teacher-content {
  padding: 24px 18px 26px;
  text-align: center;
}

.teacher-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.teacher-content p {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.teachers-title {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}


.edu-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.edu-card-image-wrap {
  position: relative;
  /* overflow: hidden; */
}

.edu-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.edu-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

.edu-card-body {
  padding: 30px 30px 30px;
  flex-grow: 1;
}

.edu-card-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 15px;
}

.edu-card-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

.edu-card-footer {
  border-top: 1px solid #e8e8e8;
  padding: 22px 42px;
  font-size: 16px;
  color: #a1a8b3;
  background: #fff;
}

.edu-meta-sep {
  margin: 0 10px;
}

.Institutes-info {
  display: block;
}

.contact-info {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}

.contact-info i {
  width: 20px;
  display: inline-block;
  position: absolute;
  left: 0px;
}

.faculty-section {
  background: #f5f5f5;
}

.faculty-card {
  position: relative;
  background: #fff;
  padding: 30px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  height: 100%;
}

.faculty-title {
  font-size:18px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.faculty-text {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 90%;
  position: relative;
  z-index: 1;
}

/* CTA */
.faculty-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-size: 18px;
  color: #1f2d3d;
  font-weight: 500;
}

.circle-btn {
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

/* Background shape */
.faculty-bg-shape {
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 242, 205, 0.5);
  border-radius: 50%;
  right: -60px;
  bottom: -60px;
  z-index: 0;
}

.faculty-bg-shape::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(255, 242, 205);
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
}

/* Icon */
.faculty-icon {
  position: absolute;
  right: 55px;
  bottom: 55px;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Hover effect (optional, matches modern UI feel) */
.faculty-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.faculty-card:hover .circle-btn {
  background: var(--accent);
}

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

.contact-card {
  background: #fff;
  border-radius: 0;
}

.contact-title {
  font-size: 32px;
  font-weight:500;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #6d6d6d;
  max-width: 560px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 14px;
  font-weight:400;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.form-control,
.form-select {
  height: 54px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  background: #f5f5f5;
  padding: 0 18px;
  font-size: 14px;
  color: #444;
  box-shadow: none;
}

textarea.form-control {
  height: 120px;
  padding-top: 16px;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.contact-details-group {
  display: flex;
  gap: 10px;
}

.country-code {
  max-width: 110px;
  flex: 0 0 110px;
}

.submit-wrap {
  text-align: right;
  margin-top: 10px;
}

.btn-send {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  min-width: 190px;
}

.btn-send:hover {
  background: var(--primary);
  color: #fff;
}

.info-panel {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  padding: 34px 28px;
  height: 100%;
}

.info-title {
  font-size: 28px;
  font-weight:500;
  line-height: 1.3;
  margin-bottom: 26px;
  max-width: 90%;
}

.info-box {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.info-box i {
  font-size: 18px;
  margin-top: 2px;
  color: #fff;
}

.info-box-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.info-box-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.social-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 22px;
  padding-top: 20px;
}

.social-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

.gallery-section {
  padding: 60px 0;
}

.gallery-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
}

.gallery-subtitle {
  color: var(--muted);
  text-align: center;
  margin-bottom: 30px;
}

.gallery-tabs {
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  border-bottom: 0;
}

.gallery-tabs .nav-link {
  border: 0;
  background: #fff;
  color: var(--primary);
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #eeeeee;
}

.gallery-tabs .nav-link.active {
  background: var(--primary);
  color: #fff;
}

.gallery-tabs .nav-link:hover {
  background-color: var(--accent);
}

.gallery-card {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

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

.modal-content {
  background: #111;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

.modal-body {
  padding: 0;
  position: relative;
  background: #111;
}

.modal-gallery-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  background: #111;
}

.gallery-modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 11;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.modal-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.name-designate label {
  font-weight: bold;
}

.logo-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddddd;
  position: absolute;
  z-index: 1;
  bottom: -20px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.logo-img img {
  height: 80%;
  max-width: 100%;
}


/* Replace these with your real images */
.hero-slide-1 {
  background-image: url('../images/hero-bg.png');
}

.hero-slide-2 {
  background-image: url('../images/hero-bg2.png');
}

.hero-slide-3 {
  background-image: url('../images/hero-bg3.png');
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev {
  left: 15px;
}

/* Dark + premium layered overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 61, 0.88) 0%, rgba(5, 20, 61, 0.72) 38%, rgba(5, 20, 61, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* Soft floating lights */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
  animation: floatY 7s ease-in-out infinite;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 196, 0, 0.12);
  top: 8%;
  left: 10%;
  z-index: 10;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  bottom: 12%;
  left: 22%;
  animation-delay: 1.5s;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  color: #fff;
  padding: 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.9s ease;
}

.carousel-item.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffd45c;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-weight:400;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
  text-decoration: none;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #f6c343, #e6ab12);
  color: #0d1b46;
  border: none;
  box-shadow: 0 10px 24px rgba(246, 195, 67, 0.25);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  color: #0d1b46;
  box-shadow: 0 16px 28px rgba(246, 195, 67, 0.35);
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-3px);
}

/* Slide image gentle zoom */
.carousel-item .hero-slide {
  transform: scale(1);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slide {
  transform: scale(1.06);
}

/* Controls */
.hero-control {
  width: auto;
  opacity: 1;
}

.hero-control-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.hero-control:hover .hero-control-icon {
  background: rgba(255, 255, 255, 0.20);
  transform: scale(1.06);
}

/* Indicators */
.hero-indicators {
  margin-bottom: 2rem;
  gap: 10px;
}

.hero-indicators button {
  width: 34px !important;
  height: 6px !important;
  border: 0 !important;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45) !important;
  transition: all 0.35s ease;
}

.hero-indicators button.active {
  width: 52px !important;
  background: linear-gradient(90deg, #f6c343, #fff0b3) !important;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-scroll span {
  display: block;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.hero-scroll span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollMove 1.6s infinite;
}

@keyframes scrollMove {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}

@keyframes floatY {

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

  50% {
    transform: translateY(-18px);
  }
}

/* Optional staggered text feel */
.carousel-item.active .hero-tag {
  animation: fadeUp .7s ease .1s both;
}

.carousel-item.active .hero-content h1 {
  animation: fadeUp .8s ease .25s both;
}

.carousel-item.active .hero-content p {
  animation: fadeUp .8s ease .4s both;
}

.carousel-item.active .hero-actions {
  animation: fadeUp .8s ease .55s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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




.about-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(16, 52, 130, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  filter: blur(40px);
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(241, 186, 29, 0.10);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  filter: blur(30px);
  z-index: 0;
}

/* section tag */
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}

.section-tag::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: #f0b81f;
}

/* content */
.about-content {
  position: relative;
  z-index: 2;
  padding-left: 10px;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-content h2 span {
  color: #f0b81f;
  position: relative;
}

.about-content h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 12px;
  background: rgba(240, 184, 31, 0.18);
  z-index: -1;
  border-radius: 10px;
}

.lead-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #667085;
  margin-bottom: 28px;
  max-width: 95%;
}

/* pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e8edf5;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  transition: all 0.3s ease;
}

.feature-pills span i {
  color: #f0b81f;
  font-size: 0.95rem;
}

.feature-pills span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}

/* buttons */
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-btn-primary,
.about-btn-outline {
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.about-btn-primary {
  background: linear-gradient(135deg, #f4bf27, #e5a900);
  color: #000000;
  box-shadow: 0 12px 24px rgba(240, 184, 31, 0.28);
}

.about-btn-primary:hover {
  color: #0f2f78;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(240, 184, 31, 0.36);
}

.about-btn-outline {
  border: 1px solid #d9e2f0;
  color: var(--primary);
  background: #fff;
}

.about-btn-outline:hover {
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

/* visual side */
.about-visual {
  position: relative;
  z-index: 2;
  padding: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 180px 340px;
  gap: 18px;
  align-items: stretch;
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  background: #fff;
  box-shadow: 0 0px 25px rgba(17, 24, 39, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-school-card{
    position: relative;
  overflow: hidden;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0px 25px rgba(17, 24, 39, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.18);
}

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

/* layout cards */
.about-card-tall {
  grid-row: 1 / span 2;
  min-height: 540px;
}

.about-card-top {
  background: linear-gradient(135deg, var(--primary), #0c2f78);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.about-card-top h3 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 800;
}

.about-card-top p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.about-card-bottom {
  min-height: 340px;
}

/* floating badge */
.floating-badge {
  position: absolute;
  left: -10px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
  z-index: 3;
  animation: floatBadge 3.5s ease-in-out infinite;
}

.badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f4bf27, #e5a900);
  color: var(--primary);
  font-size: 1.1rem;
}

.floating-badge strong {
  display: block;
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.2;
}

.floating-badge small {
  color: #667085;
  font-size: 0.82rem;
}

/* decorative shapes */
.about-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.about-shape-1 {
  width: 160px;
  height: 160px;
  background: rgba(18, 59, 143, 0.10);
  top: -20px;
  left: -30px;
  filter: blur(8px);
}

.about-shape-2 {
  width: 120px;
  height: 120px;
  background: rgba(240, 184, 31, 0.18);
  bottom: 20px;
  right: 10px;
  filter: blur(10px);
}

@keyframes floatBadge {

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

  50% {
    transform: translateY(-8px);
  }
}


.services-section {
  position: relative;
  background: linear-gradient(180deg, #0f3587 0%, #0a2d79 100%);
  overflow: hidden;
  padding: 100px 0;
}

.services-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -120px;
  left: -80px;
  /* filter: blur(20px); */
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  right: -60px;
  bottom: 80px;
  /* filter: blur(24px); */
  pointer-events: none;
}

.services-section h2 {
  margin-bottom: 20px;
  color: #fff;
}

.services-section h2 span {
  color: #f4bf27;
}

.services-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-banner {
  width: 100%;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* slider head */
.services-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 24px;
}

.services-mini-title {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.services-nav {
  display: flex;
  gap: 12px;
}

.services-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.services-nav-btn:hover {
  background: #f4bf27;
  color: #0f3587;
  transform: translateY(-2px);
}

/* slider */
.services-slider-wrap {
  overflow: hidden;
  position: relative;
}

.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.service-slide {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
}

/* card */
.service-card {
  position: relative;
  overflow: hidden;
  padding: 38px 28px 32px;
  border-radius: 40px 40px 22px 22px;
  background: linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(244, 191, 39, 0.9), rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

.service-card:hover {
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
}

.card-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 191, 39, 0.22) 0%, rgba(244, 191, 39, 0.08) 35%, transparent 70%);
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fa 100%);
  border: 1px solid #d9e2f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 2;
}

.icon-circle img {
  max-width: 48px;
  transition: transform 0.35s ease;
}

.service-card:hover .icon-circle {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 28px rgba(15, 53, 135, 0.10);
}

.service-card:hover .icon-circle img {
  transform: scale(1.08);
}

.service-card h3 {
  font-weight:400;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.service-card p {
  color: #5c6b8a;
  font-size: 1.02rem;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 2;
}

.services-image-slider {
  position: relative;
}

.services-banner-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.services-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 34px;
  transform: scale(1);
  transition: transform 5s ease;
}

.services-image-slider .carousel-item.active .services-banner {
  transform: scale(1.08);
}

/* dark premium overlay */
.services-banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 24, 66, 0.05) 0%,
      rgba(8, 24, 66, 0.18) 55%,
      rgba(8, 24, 66, 0.50) 100%);
  border-radius: 34px;
  pointer-events: none;
}

/* caption */
.services-banner-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.7s ease;
}

.services-image-slider .carousel-item.active .services-banner-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* controls */
.services-slider-control {
  width: auto;
  opacity: 1;
}

.services-slider-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.services-slider-control:hover .services-slider-icon {
  background: #f4bf27;
  color: #0f3587;
  transform: scale(1.06);
}

/* indicators */
.services-slider-indicators {
  margin-bottom: 1rem;
  gap: 8px;
}

.services-slider-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  transition: all 0.3s ease;
}

.services-slider-indicators button.active {
  width: 30px !important;
  border-radius: 999px;
  background-color: #f4bf27 !important;
}


.announcement-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafe 0%, #ffffff 100%);
}

.announcement-head {
  margin: 0 auto 42px;
  position: relative;
  z-index: 2;
}

.announcement-head h2 {
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.08;
}

.announcement-head p {
  font-size: 1.05rem;
  color: #667085;
  line-height: 1.8;
  margin: 0;
}

.announcement-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.announcement-blur-1 {
  width: 280px;
  height: 280px;
  background: rgba(15, 53, 135, 0.08);
  top: 40px;
  left: -80px;
}

.announcement-blur-2 {
  width: 220px;
  height: 220px;
  background: rgba(244, 191, 39, 0.14);
  right: -60px;
  bottom: 60px;
}

.announcement-tabs {
  gap: 12px;
  margin-bottom: 34px !important;
  position: relative;
  z-index: 2;
}

.announcement-tabs .nav-link {
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #667085;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
  backdrop-filter: blur(10px);
}

.announcement-tabs .nav-link:hover {
  color: #0f3587;
  transform: translateY(-2px);
}

.announcement-tabs .nav-link.active {
  background: linear-gradient(135deg, #0f3587, #1847aa);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 53, 135, 0.20);
}

.announcement-content {
  position: relative;
  z-index: 2;
}



.modern-news-card {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dddddd;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  /* transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; */
  transition: all 0.3s ease;
}

.modern-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(244, 191, 39, 0.08), rgba(15, 53, 135, 0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modern-news-card:hover {
  margin-top: -10px;
  box-shadow: 0 24px 55px rgba(17, 24, 39, 0.20);
  border-color: rgba(244, 191, 39, 0.35);
}

.modern-news-card:hover::before {
  opacity: 1;
}

.date-box {
  flex: 0 0 82px;
  width: 82px;
  min-height: 92px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: linear-gradient(180deg, #f4bf27 0%, #e8ab00 100%);
  color: #102b6a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 16px 24px rgba(244, 191, 39, 0.25);
  position: relative;
  overflow: hidden;
}

.date-box::after {
  content: "";
  position: absolute;
  inset: auto -20px -35px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.date-box span {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.date-box small {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.news-copy {
  position: relative;
  z-index: 1;
}

.news-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 53, 135, 0.08);
  color: #0f3587;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-copy h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-copy p {
  color: #667085;
  line-height: 1.75;
  margin-bottom: 8px;
}

.news-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f3587;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-copy a:hover {
  gap: 10px;
  color: #e0a400;
}

.tab-pane .modern-news-card {
  opacity: 0;
  transform: translateY(26px);
  animation: newsReveal 0.7s ease forwards;
}

.tab-pane .modern-news-card:nth-child(2) {
  animation-delay: 0.08s;
}

.tab-pane .modern-news-card:nth-child(3) {
  animation-delay: 0.16s;
}

.tab-pane .modern-news-card:nth-child(4) {
  animation-delay: 0.24s;
}

.tab-pane.show .modern-news-card {
  opacity: 0;
  transform: translateY(26px);
  animation: newsReveal 0.7s ease forwards;
}

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

@keyframes floatSoft {

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

  50% {
    transform: translateY(-10px);
  }
}

.announcement-blur-1,
.announcement-blur-2 {
  animation: floatSoft 7s ease-in-out infinite;
}

.announcement-blur-2 {
  animation-delay: 1.2s;
}

.message-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

.message-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
  animation: floatSoft 8s ease-in-out infinite;
}

.message-bg-circle-1 {
  width: 280px;
  height: 280px;
  background: rgba(15, 53, 135, 0.08);
  top: 40px;
  left: -80px;
}

.message-bg-circle-2 {
  width: 240px;
  height: 240px;
  background: rgba(244, 191, 39, 0.15);
  right: -70px;
  bottom: 40px;
  animation-delay: 1.4s;
}

.message-slider {
  position: relative;
  z-index: 2;
}

.modern-message-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 40px;
  min-height: 560px;
  padding: 42px;
  border-radius: 34px;
  background: rgba(238, 243, 252, 0.88);
  border: 1px solid rgba(220, 228, 242, 0.9);
  box-shadow: 0 24px 60px rgba(18, 33, 62, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}

.modern-message-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 53, 135, 0.06), transparent 35%),
    radial-gradient(circle at bottom right, rgba(244, 191, 39, 0.10), transparent 32%);
  pointer-events: none;
}

/* image */
.message-image-col {
  position: relative;
  z-index: 1;
}

.message-image-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.message-image-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.8s ease;
}

.carousel-item.active .message-image-wrap img {
  transform: scale(1.05);
}

.message-image-shape {
  position: absolute;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #0f3587, #173f99);
  border-radius: 42% 58% 50% 50% / 45% 42% 58% 55%;
  left: 0px;
  top: -35px;
  z-index: 1;
  animation: morphBlob 8s ease-in-out infinite;
}

.image-badge {
  display: none;
}

/* content */
.message-content {
  position: relative;
  z-index: 1;
  color: #16213e;
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: #0f3587;
  opacity: 0.12;
  margin-bottom: 10px;
  transform: translateY(10px);
  transition: all 0.7s ease;
}

.carousel-item.active .quote-mark {
  opacity: 1;
  transform: translateY(0);
}

.message-content-inner {
  position: relative;
  border-left: 2px solid rgba(15, 53, 135, 0.22);
  padding-left: 34px;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}

.carousel-item.active .message-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.message-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(15, 53, 135, 0.08);
  color: #0f3587;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.message-content-inner p {
  font-size: 1.08rem;
  color: #5d6c89;
  margin-bottom: 24px;
  max-width: 90%;
}

.name-designate h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #16213e;
  margin-bottom: 4px;
}

.name-designate span {
  color: #6f7d96;
  font-size: 1rem;
  font-weight: 500;
}

/* indicators */
.message-indicators {
  margin-bottom: -3rem;
  gap: 10px;
}

.message-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: 0 !important;
  background: rgba(15, 53, 135, 0.22) !important;
  transition: all 0.35s ease;
}

.message-indicators button.active {
  width: 36px !important;
  border-radius: 999px;
  background: #f4bf27 !important;
}

/* controls */
.message-control {
  width: auto;
  opacity: 1;
}

.message-control-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #0f3587;
  border: 1px solid rgba(15, 53, 135, 0.08);
  box-shadow: 0 10px 24px rgba(18, 33, 62, 0.10);
  transition: all 0.3s ease;
}

.message-control:hover .message-control-icon {
  background: #0f3587;
  color: #fff;
  transform: scale(1.06);
}

/* slide animation */
.carousel-item .modern-message-card {
  transform: scale(0.98);
  opacity: 0.4;
  transition: all 0.7s ease;
}

.carousel-item.active .modern-message-card {
  transform: scale(1);
  opacity: 1;
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 42% 58% 50% 50% / 45% 42% 58% 55%;
  }

  50% {
    border-radius: 58% 42% 60% 40% / 42% 56% 44% 58%;
  }
}

@keyframes floatSoft {

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

  50% {
    transform: translateY(-12px);
  }
}


.about-impact-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

.about-impact-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: floatSoft 8s ease-in-out infinite;
}

.about-impact-blur-1 {
  width: 280px;
  height: 280px;
  background: rgba(18, 59, 143, 0.10);
  top: 40px;
  left: -70px;
}

.about-impact-blur-2 {
  width: 230px;
  height: 230px;
  background: rgba(244, 191, 39, 0.16);
  bottom: 30px;
  right: -50px;
  animation-delay: 1.2s;
}

/* left side */
.about-impact-content {
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-tag::after {
  content: "";
  width: 48px;
  height: 2px;
  background: #f0b81f;
  display: inline-block;
}


.impact-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.glass-progress {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 236, 245, 0.95);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-progress:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  color: #4f5f7d;
}

.progress-label-row span:first-child {
  color: var(--primary);
}

.progress-num {
  color: var(--primary);
}

.modern-progress {
  height: 10px;
  background: #e9eef6;
  border-radius: 999px;
  overflow: hidden;
}

.modern-progress-bar {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, #1b4db4 65%, #f0b81f 100%);
  position: relative;
  transition: width 1.4s cubic-bezier(.22, .61, .36, 1);
}

.modern-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shimmerMove 2.2s linear infinite;
}

/* right side */
.about-impact-visual {
  position: relative;
  z-index: 2;
}

.image-card {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(231, 236, 245, 0.9);
  box-shadow: 0 24px 60px rgba(18, 33, 62, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.image-shape {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(18, 59, 143, 0.18), rgba(240, 184, 31, 0.14));
  top: -70px;
  right: -50px;
  filter: blur(10px);
  animation: floatSoft 7s ease-in-out infinite;
}

.about-impact-visual .image-shape {
  z-index: 1;
}

.about-main-img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  /* box-shadow: 0 18px 40px rgba(0,0,0,0.10); */
  transition: transform 0.8s ease;
}

.image-card:hover .about-main-img {
  transform: scale(1.03);
}

.image-overlay-badge {
  position: absolute;
  left: 42px;
  top: 42px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

.image-overlay-badge .mini-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-overlay-badge h4 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 800;
}

.image-overlay-badge p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.92;
}

.exp-box {
  position: absolute;
  right: 26px;
  bottom: 26px;
  min-width: 170px;
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  text-align: center;
  box-shadow: 0 18px 40px rgba(18, 33, 62, 0.12);
  border: 1px solid rgba(225, 231, 241, 0.95);
}

.exp-box h3 {
  font-size: 3.8rem;
  line-height: 1;
  margin: 0 0 6px;
  font-weight:500;
}

.exp-box h3::after {
  content: "+";
}

.exp-box span {
  display: block;
  font-size: 1rem;
  color: #667085;
  font-weight: 600;
}

.floating-mini-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 59, 143, 0.92);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 33, 62, 0.16);
}

.floating-mini-card i {
  font-size: 1.1rem;
  color: #f0b81f;
}

.floating-mini-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.floating-mini-card small {
  display: block;
  opacity: 0.85;
  font-size: 0.78rem;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-80px);
  }

  100% {
    transform: translateX(120px);
  }
}

@keyframes floatSoft {

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

  50% {
    transform: translateY(-10px);
  }
}

.modern-message-card {
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
}

.modern-message-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.35), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modern-message-card:hover::after {
  opacity: 1;
}

@keyframes fadeMessageUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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


.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}
.stat-box {
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dddddd;
    padding: 24px 18px;
    text-align: left;
}
.stat-box h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 2.5rem;
    margin: 0 0 6px;
}
.stat-box p {
    margin: 0;
    font-size: .95rem;
}
.quick-info {
    display: grid;
    gap: 16px;
}
.quick-item {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 22px;
    padding: 14px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.quick-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;;
    color: var(--primary);
    background: rgba(233, 179, 33, .16);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.quick-item span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 3px;
    font-weight: 600;
}
.quick-item strong {
    color: var(--primary);
    font-size: 1rem;
}

.staff-intro, .gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.staff-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #dddddd;
    background: linear-gradient(180deg, #fff 0%, #fefcf7 100%);
    transition: .28s ease;
}
.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}
.staff-body {
    padding: 22px;
}
.staff-body h4 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 1.12rem;
    font-weight: 800;
}
.designation {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(233, 179, 33, .14);
    color: var(--primary);
    font-size: .83rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.staff-body p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
    font-size: .94rem;
}
.staff-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.staff-meta a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #dddddd;
    color: var(--primary);
}

.gallery-shell {
    position: relative;
    border-radius: 34px;
    background: linear-gradient(180deg, #ffffff, #fdfbf6);
    border: 1px solid #dddddd;
    padding: 30px;
    box-shadow: var(--shadow);
}
.staff-intro, .gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.slider-controls {
    display: flex;
    gap: 12px;
}
.slider-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 18px;
    background: #fff;
    color: var(--primary);
    border: 1px solid #dddddd;
    box-shadow: 0 12px 30px rgba(20, 58, 126, .08);
}
.gallery-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:calc(20% - 18px);
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.gallery-card {
    position: relative;
    height:250px;
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: start;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .6);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}
.gallery-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}
.staff-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #eaf0ff, #f7f9ff);
    overflow: hidden;
}
.staff-photo img{
  object-fit: cover;
  object-position: top;
}

.feature-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #dddddd;
    background: rgba(255, 255, 255, .75);
    border-radius: 20px;
    padding: 18px 20px;
    color: var(--primary);
    font-weight: 700;
    min-height: 64px;
    box-shadow: 0 12px 32px rgba(20, 58, 126, .05);
}

.feature-pill i {
    color: var(--accent);
    font-size: 1.1rem;
}

.gallery-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.gallery-card {
  flex: 0 0 calc(33.333% - 14px);
}


:root{
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* section atmosphere */
.about-school-card,
.staff-card,
.gallery-card,
.quick-item,
.stat-box,
.cta-panel {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth),
    border-color 0.4s ease,
    background-color 0.4s ease;
  will-change: transform, box-shadow;
}

/* modern hover lift */
.about-school-card:hover,
.staff-card:hover,
.gallery-card:hover,
.quick-item:hover,
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 24, 40, 0.10);
}

/* soft gradient glow */
.about-school-card::before,
.staff-card::before,
.gallery-card::before,
.quick-item::before,
.stat-box::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 25%,
    rgba(232, 189, 75, 0.12) 50%,
    rgba(255,255,255,0) 75%
  );
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-smooth);
  pointer-events: none;
}

.about-school-card:hover::before,
.staff-card:hover::before,
.gallery-card:hover::before,
.quick-item:hover::before,
.stat-box:hover::before,
.cta-panel:hover::before {
  transform: translateX(120%);
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* image motion */
.staff-photo,
.gallery-card {
  overflow: hidden;
}

.staff-photo img,
.gallery-card img {
  transition: transform 0.9s var(--ease-smooth), filter 0.6s ease;
  will-change: transform;
}

.staff-card:hover .staff-photo img,
.gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}

/* subtle rotating gradient blob background */
.section-space,
.pt-5,
.contact-cta {
  position: relative;
  isolation: isolate;
}

.section-space::after,
.pt-5::after,
.contact-cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 191, 87, 0.18), rgba(229, 191, 87, 0));
  filter: blur(18px);
  animation: floatBlob 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-18px) translateX(-10px) scale(1.06); }
}

/* quick info hover polish */
.quick-item i {
  transition: transform 0.4s var(--ease-soft), background-color 0.4s ease;
}

.quick-item:hover i {
  transform: scale(1.08) rotate(-6deg);
}

/* stats emphasis */
.stat-box h4 {
  transition: transform 0.4s var(--ease-soft), color 0.3s ease;
}

.stat-box:hover h4 {
  transform: scale(1.05);
}

/* buttons */
.slider-btn,
.staff-meta a,
.contact-pill,
.phone-pill {
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft),
    background-color 0.35s ease;
}

.slider-btn:hover,
.staff-meta a:hover,
.contact-pill:hover,
.phone-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.12);
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.school-logo-img{
  width:150px;
  height: 150px;
  padding: 20px;
  border:1px solid #dddddd;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  margin: auto;
  display: flex;
	align-items: center;
	justify-content: center;
}


/* gallery usability */
.gallery-slider-wrap {
  overflow: hidden;
  position: relative;
}

.gallery-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  padding-bottom: 8px;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(18, 41, 94, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(18, 41, 94, 0.22);
  transition: all 0.3s ease;
}

.gallery-dot.active {
  width: 28px;
  background: #183d8c;
}

/* lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 34, 0.76);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-dialog {
  position: relative;
  width: min(92vw, 1100px);
  max-height: 90vh;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.lightbox-content p {
  margin-top: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #163774;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: scale(1.06);
}

.lightbox-close {
  top: -18px;
  right: -18px;
}

.lightbox-prev {
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -72px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}

body.lightbox-open {
  overflow: hidden;
}
.news-track {
  animation-play-state: running;
}

.news-ticker-wrap:hover .news-track {
  animation-play-state: paused;
}
.news-ticker-wrap .news-track a{
  color:#000000;
  text-decoration: underline;
}

/* responsive */
@media (max-width: 991.98px) {
  .gallery-card {
    flex: 0 0 calc(50% - 12px);
  }

  .gallery-card img {
    height: 300px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .gallery-card {
    flex: 0 0 88%;
  }

  .gallery-card img {
    height: 260px;
  }

  .gallery-slider {
    gap: 16px;
  }

  .lightbox-nav,
  .lightbox-close {
    width: 46px;
    height: 46px;
  }
}



@media (max-width: 991px) {
  .gallery-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .gallery-card {
    flex: 0 0 100%;
  }
}



@media (max-width: 1199.98px) {
  .about-main-img {
    height: 640px;
  }

  .service-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
  }

  .hero-slide {
    min-height: 560px;
  }

  .message-content {
    padding-right: 2rem;
  }

  .or-badge {
    display: none;
  }

  .edu-card-title {
    font-size: 26px;
  }

  .edu-card-body {
    padding: 32px 28px 28px;
  }

  .edu-card-footer {
    padding: 20px 28px;
  }
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .about-impact-section {
    padding: 85px 0;
  }

  .section-text {
    max-width: 100%;
  }

  .about-main-img {
    height: 520px;
  }

  .image-overlay-badge {
    left: 28px;
    top: 28px;
  }

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

  .modern-message-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
    min-height: auto;
  }

  .message-image-wrap {
    max-width: 280px;
  }

  .message-image-wrap img {
    height: 320px;
  }

  .message-content-inner {
    padding-left: 22px;
  }

  .message-content-inner p {
    max-width: 100%;
  }

  .announcement-section {
    padding: 85px 0;
  }

  .announcement-tabs {
    flex-wrap: wrap;
  }

  .modern-news-card {
    padding: 18px;
  }

  .news-copy h4 {
    font-size: 1.12rem;
  }

  .services-banner {
    height: 320px;
  }

  .service-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .service-card {
    min-height: 340px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-content {
    padding-left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 280px;
  }

  .about-card-tall {
    min-height: 460px;
  }

  .about-card-top h3 {
    font-size: 2.4rem;
  }

  .lead-text {
    max-width: 100%;
  }

  .section-space {
    padding: 4rem 0;
  }

  .hero-slide {
    min-height: 520px;
    background-position: center right;
  }

  .hero-copy {
    padding: 5.5rem 0;
  }

  .about-collage {
    max-width: 680px;
    margin: 0 auto;
  }

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

  .message-card::before {
    width: 100%;
    height: 200px;
    bottom: auto;
    border-bottom-right-radius: 5rem;
  }

  .message-image-wrap {
    padding-bottom: 0;
  }

  .message-content {
    padding: 1rem 2rem 2.5rem;
  }

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

  .message-image-wrap {
    min-width: 262px;
  }

  .message-card {
    background-image: initial;
  }

  .message-content-inner {
    margin-left: 0px;
  }

  .shade2 {
    display: none;
  }

  .quote-mark {
    top: 43px;
    background-color: #eaf0fd;
  }

  .message-content {
    padding: 1rem 2rem 1rem;
  }

  .section-title,
  .cta-title {
    font-size: 40px;
  }

  .about-visual {
    min-height: auto;
  }

  .about-main-img {
    min-height: 520px;
  }

  .info-stack {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }

  .info-stack {
    margin-top: 50px;
  }

  .info-panel {
    margin-top: 24px;
  }

  .gallery-img {
    height: 220px;
  }

  .hero-slide {
    min-height: 78vh;
    background-position: center;
  }

  .hero-content {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-control {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {

  .topbar .container,
  .topbar-left {
    justify-content: center;
  }

  .brand-logo {
    width: 240px;
  }

  .hero-slide {
    min-height: 480px;
    background-position: right;
    background-size: cover;
  }

  .hero-shape {
    display: none;
  }

  .news-ticker-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-heading {
    padding-bottom: 0.1rem;
    width: 100%;
    text-align: center;
    padding-top: 10px;
  }

  .news-track {
    padding-left: 0;
    animation-duration: 22s;
  }

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

  .services-banner {
    min-height: 180px;
  }

  .service-card {
    border-top-left-radius: 2.8rem;
    border-top-right-radius: 2.8rem;
  }

  .featured-caption {
    position: static;
    margin-top: 1rem;
  }

  .date-box {
    width: 74px;
    min-width: 74px;
  }

  .cta-actions {
    width: 100%;
    gap: 0.6rem;
  }

  .phone-pill,
  .contact-pill {
    min-width: 100%;
    border-radius: 0.35rem;
  }

  .or-badge {
    margin: 0;
  }

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

  .section-title,
  .cta-title {
    font-size: 32px;
  }

  .about-main-img {
    min-height: 420px;
  }

  .exp-box h3 {
    font-size: 38px;
  }

  .edu-card-image {
    height: 280px;
  }

  .edu-card-title {
    font-size: 24px;
  }

  .edu-card-text {
    font-size: 16px;
  }

  .edu-badge {
    top: 18px;
    right: 18px;
    padding: 9px 16px;
    font-size: 13px;
  }

  .faculty-title {
    font-size: 24px;
  }

  .faculty-card {
    padding: 30px;
  }

  .faculty-icon {
    font-size: 45px;
    right: 30px;
    bottom: 30px;
  }

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

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

  .gallery-img {
    height: 200px;
  }

  .gallery-modal-btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-card-tall,
  .about-card-bottom,
  .about-card-top {
    grid-row: auto;
    min-height: auto;
  }

  .about-card-tall img,
  .about-card-bottom img {
    height: auto;
    object-fit: cover;
  }

  .floating-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .feature-pills {
    gap: 10px;
  }

  .feature-pills span {
    width: 100%;
    justify-content: flex-start;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-btn-primary,
  .about-btn-outline {
    width: 100%;
    text-align: center;
  }

  .services-slider-track {
    flex-direction: column;
  }

  .news-badge {
    position: absolute;
    top: -104px;
    right: 0px;
  }

  .message-section {
    margin-top: 100px;
  }
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2.3rem;
  }

  .glass-progress {
    padding: 15px;
    border-radius: 16px;
  }

  .image-card {
    padding: 16px;
    border-radius: 24px;
  }

  .about-main-img {
    height: 420px;
    border-radius: 18px;
  }

  .image-overlay-badge {
    position: static;
    margin-top: 14px;
    max-width: 100%;
    color: var(--primary);
    background: #fff;
    border: 1px solid #e8edf5;
  }

  .floating-mini-card {
    position: static;
    margin-top: 14px;
  }

  .exp-box {
    right: 16px;
    bottom: initial;
    top:15px;
    min-width: 132px;
    padding: 16px;
  }

  .exp-box h3 {
    font-size: 2.6rem;
  }

  .modern-message-card {
    padding: 22px;
    border-radius: 24px;
  }

  .message-image-wrap img {
    height: 280px;
    border-radius: 24px;
  }

  .message-image-shape {
    width: 200px;
    height: 200px;
    left: -28px;
    top: -22px;
  }



  .message-content-inner p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .name-designate h4 {
    font-size: 1.2rem;
  }

  .message-control {
    display: none;
  }

  .announcement-head {
    margin-bottom: 28px;
  }

  .announcement-tabs .nav-link {
    width: 100%;
    justify-content: center;
  }

  .modern-news-card {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
  }

  .date-box {
    width: 78px;
    min-height: 86px;
  }

  .news-copy h4 {
    font-size: 1.05rem;
  }

  .news-copy p {
    font-size: 0.95rem;
  }

  .services-banner {
    height: 240px;
    border-radius: 24px;
  }

  .services-banner-wrap {
    border-radius: 24px;
  }

  .services-banner-wrap::after {
    border-radius: 24px;
  }

  .services-slider-icon {
    width: 40px;
    height: 40px;
  }

  .services-banner-overlay {
    left: 14px;
    bottom: 14px;
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .news-item,
  .featured-caption {
    align-items: flex-start;
  }

  .message-image-wrap {
    justify-content: center;
  }

  .topbar .social-links {
    flex: 1;
    justify-content: center;
  }

  .hero-copy {
    padding: 5.5rem 15px;
  }

  .about-collage img {
    object-position: top;
  }

  .collage-left .bottom-stat {
    border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
  }

  .collage-right img {
    border-radius: 0px 0px 0px 0px;
  }

  .collage-right .top-stat {
    border-radius: 0px 0px 100px 0px;
    -webkit-border-radius: 0px 0px 100px 0px;
  }

  .announcement-tabs .nav-link {
    padding: 0.75rem .5rem;
  }

  .announcement-section {
    padding-bottom: 0px;
  }

  .message-card {
    flex-direction: column;
  }

  .info-stack {
    margin-top: 50px;
    flex-direction: column;
  }

  .cta-section {
    padding: 50px 0px;
  }

  .contact-title {
    font-size: 26px;
  }

  .submit-wrap {
    text-align: left;
  }

  .btn-send {
    width: 100%;
  }

  .hero-slide {
    min-height: 72vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    text-align: center;
    width: 100%;
  }

  .service-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .services-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card {
    border-radius: 28px;
    min-height: 320px;
    padding: 30px 22px;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }
  .staff-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .staff-intro, .gallery-header{
    flex-direction: column;
    gap:0px;
  }
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  flex:1;
}
.tab button:hover {
  background-color: #ddd;
}
.tab button.active {
  background-color: #73222B;
  color:#ffffff;
}
.login-outer{
  max-width: 500px;
  margin: auto;
}
.tabcontent {
  display: none;
  padding: 6px 12px;
}
.login-outer .tab{
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  display: flex;
}
.login-form{
  padding:30px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dddddd;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}
.login-form h3{
  font-size: 25px;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}
.form-field label {
    font-size: 14px;
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom:5px;
    display: block;
}
.form-input, .form-select {
    height: 54px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    background: #f5f5f5;
    padding: 0 18px;
    font-size: 14px;
    color: #444;
    box-shadow: none;
    width: 100%;
}
.form-field {
    display: block;
    margin-bottom: 20px;
}

.navbar-nav .hero-btn-primary {
    padding: 10px 14px 10px 20px;
    margin-top: -2px;
}

.search-outer{
    position: relative;
    width: 300px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    background: #f5f5f5;
    padding:0 18px 0px 42px;
    font-size: 14px;
    color: #444;
    margin-left:auto;
    display:inline-block;
    margin-bottom:20px;
}
.search-outer i{
    position: absolute;
    left:12px;
    top:12px;
    color:#777777;
    font-size: 20px;
}
.search-outer input{
    width: 100%;
    height: 54px;
    border:none;
    color: #444;
    background: none;
    outline: none;
}

.btn-blue {
    background-color:#072b76;
    color:#ffffff;
}
@media (max-width: 767.98px) {    
    .search-outer{width:100%;}
}

#no-record-alert{
    display: block;
    margin:15px 0;
    padding:12px 16px;
    background:#fff3cd;
    color:#856404;
    border:1px solid #ffeeba;
    border-radius:6px;
    text-align: center;
}

.topbar-left a{
  color:#ffffff;
}
.topbar-left a:hover, .footer-contact a:hover{
  text-decoration:underline;
}
.footer-contact a{
  color:var(--muted);
}

.icon-circle{
border: none;
box-shadow: initial;
}
.icon-circle {
width: 75px;
height: 75px;
}
.service-card{
padding:20px 15px 20px;
border-radius: 20px;
display: flex;
text-align: left;
border: 1px solid;
align-items: center;
background: none;
}
.service-card h3{
color:#ffffff;
margin-bottom:0px;
font-size: 30px;
}
.service-card p{
color:#ffffff;
}
.service-card::before{
background:none;
}
.icon-circle{
margin-right: 10px;
margin-left:0px;
margin-bottom:0px;
}
.icon-circle img {
max-width: 38px;
}
.services-banner {
height: 450px;
}
.staff-grid {
    display: flex;
    flex-wrap: wrap;
}
.staff-card{
    display: flex;
    flex:1 0 calc(25% - 12px);
}

.gallery-lightbox-dialog{
    width: auto;
}
.lightbox-content img {
    width: auto;
}