@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+GB+J:ital,wght@0,100..400;1,100..400&display=swap");
* {
  scrollbar-width: thin;
  scrollbar-color: #FDA31B rgb(8, 38, 79);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #004377, #00c6ff);
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Hover Effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00345c, #0099cc);
}

/* Corner */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Modern gradient selection */
::-moz-selection {
  color: white;
  background: #FDA31B;
  text-shadow: 0 0 0 #FDA31B, 0 0 0 rgba(253, 163, 27, 0.4196078431);
}
::selection {
  color: white;
  background: #FDA31B;
  text-shadow: 0 0 0 #FDA31B, 0 0 0 rgba(253, 163, 27, 0.4196078431);
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

.cv-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transition: all 0.35s ease;
}

body {
  padding-top: 120px;
}

/* smooth transition */
.top-header,
.navbar-wrapper,
.logo-section img,
.apply-btn,
.main-nav a,
.main-nav,
.arrow {
  transition: all 0.35s ease;
}

/* ================= TOP HEADER ================= */
.top-header {
  height: 42px;
  background: #072d4f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.welcome-box {
  background: #fda31b;
  min-width: 450px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 12px;
  font-weight: 500;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 30px;
}

.utility-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
}

.utility-links a img {
  width: 14px;
  height: 14px;
}

.utility-links a:hover {
  color: #f4a11d;
}

/* ================= NAVBAR ================= */
.navbar-wrapper {
  height: 85px;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
}

.logo-section img {
  height: 82px;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  font-weight: 600;
}

/* dropdown */
.dropdown {
  padding-top: 3px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.arrow {
  font-size: 22px;
}

.submenu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 2px solid #f4a11d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin: 0;
  z-index: 9999;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  color: #222;
  white-space: nowrap;
}

.submenu a:hover {
  background: #f8f8f8;
  color: #f4a11d;
  border-bottom: none !important;
}

/* desktop dropdown */
@media (min-width: 992px) {
  .dropdown:hover > .submenu {
    display: block;
  }
  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}
/* active menu */
.main-nav li.active > a,
.main-nav li.active .dropdown-toggle a {
  position: relative;
}

.main-nav li.active > a::after,
.main-nav li.active .dropdown-toggle a::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: #29a9ff;
}

/* right section */
.right-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.apply-btn {
  border: none;
  background: #fda31b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px 160px 160px 0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.apply-btn:hover {
  background: #ea920e;
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #072d4f;
}

/* ================= SHRINK ================= */
.cv-header.shrink {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cv-header.shrink .top-header {
  height: 0;
  padding: 0;
}

.cv-header.shrink .navbar-wrapper {
  height: 62px;
  padding: 0 28px;
}

.cv-header.shrink .logo-section img {
  height: 50px;
}

.cv-header.shrink .apply-btn {
  padding: 10px 20px;
  font-size: 11px;
}

.cv-header.shrink .main-nav li.active > a::after,
.cv-header.shrink .main-nav li.active .dropdown-toggle a::after {
  bottom: -23px;
  height: 22px;
}

/* ================= MULTILEVEL ================= */
.has-submenu {
  position: relative;
}

.nested-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.nested-toggle a {
  width: 100%;
}

.nested-arrow {
  font-size: 18px;
  transition: 0.3s ease;
}

/* desktop nested submenu */
.nested-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 2px solid #f4a11d;
  padding: 8px 0;
  z-index: 9999;
}

/* desktop hover */
@media (min-width: 992px) {
  .has-submenu:hover > .nested-submenu {
    display: block;
  }
  .has-submenu:hover .nested-arrow {
    transform: rotate(90deg);
  }
}
/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .nested-toggle {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }
  .nested-toggle a {
    color: #fff !important;
    padding-left: 0 !important;
    background: transparent !important;
  }
  .nested-arrow {
    color: #fff;
    font-size: 24px;
  }
  .nested-submenu {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-top: 8px;
  }
  .has-submenu.open-submenu > .nested-submenu {
    display: block;
    animation: fadeSlide 0.3s ease;
  }
  .has-submenu.open-submenu .nested-arrow {
    transform: rotate(90deg);
  }
  .nested-submenu li {
    margin-bottom: 6px;
  }
  .nested-submenu li li::marker {
    text-decoration: none;
  }
  .nested-submenu a {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding: 14px 20px 14px 45px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }
  .nested-submenu a:hover {
    background: #fda31b !important;
    color: #fff !important;
  }
}
.submenu li::marker,
.nested-submenu li::marker {
  display: none;
  content: "";
}

.submenu li,
.nested-submenu li {
  list-style: none;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  body {
    padding-top: 75px;
  }
  .utility-links {
    display: none;
  }
  .welcome-box {
    width: 100%;
    min-width: unset;
    font-size: 11px;
    text-align: center;
  }
  .navbar-wrapper {
    padding: 0 18px;
    height: 75px;
  }
  .logo-section img {
    height: 55px;
  }
  .apply-btn {
    display: none;
  }
  /* trendy hamburger */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(253, 163, 27, 0.3098039216);
    border: 2px solid #fda31b;
    font-size: 24px;
    color: #dd8500;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    z-index: 10001;
    position: relative;
  }
  .main-nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 45, 79, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: -1;
  }
  .main-nav.show::before {
    opacity: 1;
    visibility: visible;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 430px;
    max-width: 100%;
    height: 100vh;
    background: rgba(7, 45, 79, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    transition: right 0.4s ease;
    display: block;
    overflow-y: auto;
    padding: 90px 0 30px;
    z-index: 10000;
  }
  .main-nav.show {
    right: 0;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 16px;
    margin-top: 25px;
  }
  .main-nav li {
    width: 100%;
    border: none;
    border-bottom: #fd7e14 1px solid;
  }
  .main-nav li a {
    display: block;
    width: 100%;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }
  .main-nav li a:hover {
    color: #fd7e14;
  }
  /* dropdown */
  .dropdown-toggle {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    justify-content: space-between;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }
  .dropdown-toggle a {
    padding-left: 0 !important;
  }
  .arrow {
    font-size: 30px;
    color: #fff;
  }
  .dropdown.open .arrow {
    transform: rotate(180deg);
  }
  /* submenu */
  .submenu {
    position: static;
    display: none;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 0 0;
    margin-top: 6px;
  }
  .dropdown.open > .submenu {
    display: block;
    animation: fadeSlide 0.35s ease;
  }
  .submenu li {
    margin-bottom: 6px;
  }
  .submenu a {
    padding: 14px 20px 14px 32px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    box-shadow: none;
  }
  .submenu a:hover {
    background: #fda31b !important;
    color: #fff !important;
  }
  .main-nav li.active a::after {
    display: none;
  }
  .cv-header.shrink .navbar-wrapper {
    height: 70px;
  }
  .cv-header.shrink .logo-section img {
    height: 55px;
  }
}
/* submenu animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .welcome-box {
    padding: 0 10px;
  }
}
.dream-section {
  padding: 55px 0px 40px;
  position: relative;
}

/* MAIN WHITE WRAPPER */
.dream-container {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 18px;
  background-image: url("../images/sliderbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 35px 12px;
  position: relative;
}

.slider-overlap {
  position: relative;
  margin-top: -35px;
  z-index: 5;
}

.left-slider {
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.7s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay-box {
  position: absolute;
  left: 35px;
  bottom: 0px;
  width: 45%;
  background: rgba(214, 141, 22, 0.95);
  color: #fff;
  padding: 24px;
  border-radius: 20px 22px 12px 0;
}

.overlay-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.overlay-box p {
  font-size: 14px;
  line-height: 1.6;
}

.right-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-slider {
  background: #ddb118;
  height: 180px;
  overflow: hidden;
  border-radius: 30px 30px 30px 0px;
  position: relative;
}

.quote-slide {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-content {
  width: 68%;
}

.quote-content p {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.quote-slide img {
  width: 175px;
}

.news-slider {
  background: #1550af;
  height: 220px;
  border-radius: 0px 30px 30px 30px;
  position: relative;
  overflow: hidden;
}

.news-slide {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: white;
}

.news-slide h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.news-slide ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.news-slide li {
  margin-bottom: 10px;
  font-size: 14px;
}

.news-slide a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 991px) {
  .dream-container {
    grid-template-columns: 1fr;
  }
  .slider-overlap {
    margin-top: -25px;
  }
  .left-slider {
    height: 340px;
  }
}
@media (max-width: 768px) {
  .dream-section {
    padding: 65px 12px 20px;
  }
  .slider-overlap {
    margin-top: -8px;
  }
  .left-slider {
    height: 260px;
  }
  .overlay-box {
    width: 85%;
    left: 15px;
    bottom: 15px;
    padding: 16px;
  }
  .overlay-box h2 {
    font-size: 22px;
  }
}
.slide,
.quote-slide,
.news-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.7s ease;
}

.slide.active,
.quote-slide.active,
.news-slide.active {
  opacity: 1;
  z-index: 2;
}

.legacy-section {
  width: 100%;
  padding: 50px 40px;
  background: #f5f5f5;
}

.legacy-wrapper {
  max-width: 1450px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 42px;
  position: relative;
}

/* LEFT */
.legacy-left {
  width: 39%;
  position: relative;
}

.image-box {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.image-box img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  display: block;
}

.vision-card {
  position: absolute;
  bottom: 34px;
  right: -88px;
  width: 235px;
  background: #2F5EA7;
  color: #fff;
  padding: 18px 18px;
  border-radius: 0px 30px 30px 30px;
  font-size: 11px;
  line-height: 1.7;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.legacy-right {
  width: 61%;
}

.mini-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: #BCE4FF;
  color: #2f67bb;
  font-size: 11px;
  margin-bottom: 12px;
  font-weight: 500;
}

.heading-row {
  position: relative;
}

.heading-content {
  padding-left: 0px;
}

.circle-thumb {
  position: absolute;
  top: 20px;
  left: -150px;
  width: 95px;
  height: 95px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-border {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  z-index: 1;
  background: conic-gradient(#2f67bb 0deg 20deg, transparent 20deg 40deg, #2f67bb 40deg 60deg, transparent 60deg 80deg, #2f67bb 80deg 100deg, transparent 100deg 120deg, #2f67bb 120deg 140deg, transparent 140deg 160deg, #2f67bb 160deg 180deg, transparent 180deg 200deg, #2f67bb 200deg 220deg, transparent 220deg 240deg, #2f67bb 240deg 260deg, transparent 260deg 280deg, #2f67bb 280deg 300deg, transparent 300deg 320deg, #2f67bb 320deg 340deg, transparent 340deg 360deg);
  animation: rotateDots 8s linear infinite;
}

.rotating-border::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #f5f5f5;
  border-radius: 50%;
}

.circle-thumb img {
  position: relative;
  z-index: 2;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: white;
  padding: 0px;
}

@keyframes rotateDots {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.heading-content h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.heading-content span {
  color: #f5a623;
}

.heading-content p {
  font-size: 13px;
  color: #7b7b7b;
  line-height: 1.8;
  max-width: 620px;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 10px 0;
}

.info-row {
  display: flex;
  gap: 28px;
}

.info-box {
  flex: 1;
  display: flex;
  gap: 14px;
}

.icon-circle {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}
.icon-circle img {
  width: 40px;
  height: 40px;
}

.info-box h4 {
  font-size: 15px;
  margin-bottom: 7px;
  color: #111;
}

.info-box p {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.7;
}

.btn-area {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
}

.btn-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 130px;
  top: 70%;
  transform: translateY(-50%);
  height: 1px;
  background: #d9d9d9;
}

.btn-area button {
  position: relative;
  z-index: 2;
  padding: 10px 28px;
  border: 1px solid #2f67bb;
  background: #f5f5f5;
  color: #2f67bb;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-area button:hover {
  background: #2f67bb;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .legacy-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .legacy-left,
  .legacy-right {
    width: 100%;
  }
  .image-box {
    margin: auto;
  }
  .vision-card {
    right: 20px;
    bottom: 20px;
  }
  .heading-content {
    padding-left: 0;
  }
  .circle-thumb {
    position: relative;
    top: unset;
    left: unset;
    margin-bottom: 20px;
  }
  .heading-row {
    display: flex;
    flex-direction: column;
  }
  .info-row {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .legacy-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .legacy-section {
    padding: 30px 18px;
  }
  .image-box img {
    height: 320px;
  }
  .vision-card {
    width: 90%;
    right: 5%;
    font-size: 10px;
    bottom: 15px;
  }
  .heading-content h2 {
    font-size: 28px;
  }
  .btn-area {
    justify-content: center;
  }
  .circle-thumb {
    display: none;
  }
  .btn-area::before {
    display: none;
  }
}
.academic-section {
  width: 100%;
  background: #002f72;
  padding: 70px 40px;
  overflow: hidden;
}
.academic-section .container {
  max-width: 1450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.academic-section .academic-content {
  flex: 1;
  max-width: 620px;
}
.academic-section .section-tag {
  display: inline-block;
  color: #f6a623;
  font-size: 13px;
  font-weight: 700;
  background: rgba(188, 228, 255, 0.1882352941);
  border-radius: 15px;
  padding: 3px 15px;
  margin-bottom: 18px;
  position: relative;
}
.academic-section h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 22px;
}
.academic-section h2 span {
  color: #f6a623;
}
.academic-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}
.academic-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 20px;
}
.academic-section .feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 5px 0px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
  min-height: 105px;
}
.academic-section .feature-card:hover {
  transform: translateY(-6px);
}
.academic-section .feature-card:hover .arrow {
  transform: translateX(5px);
}
.academic-section .feature-card .icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 28px 40px 40px 0px;
  background: #f6a623;
  display: flex;
  align-items: center;
  justify-content: center;
}
.academic-section .feature-card .icon-box img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.academic-section .feature-card .feature-content {
  flex: 1;
}
.academic-section .feature-card .feature-content h4 {
  font-size: 18px;
  color: #1b1b1b;
  margin-bottom: 6px;
  font-weight: 700;
}
.academic-section .feature-card .feature-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
  color: #777777;
}
.academic-section .feature-card .arrow {
  color: #888;
  font-size: 20px;
  transition: 0.3s ease;
  margin-top: 40px;
  padding-left: 5px;
}
.academic-section .academic-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.academic-section .image-wrapper {
  width: 520px;
  height: 520px;
  border: 4px solid #f6a623;
  border-radius: 120px 0 120px 0;
  overflow: hidden;
  position: relative;
}
.academic-section .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
  .academic-section .container {
    gap: 50px;
  }
  .academic-section h2 {
    font-size: 44px;
  }
  .academic-section .image-wrapper {
    width: 430px;
    height: 430px;
  }
}
@media (max-width: 992px) {
  .academic-section {
    padding: 60px 25px;
  }
  .academic-section .container {
    flex-direction: column;
    text-align: center;
  }
  .academic-section .academic-content {
    max-width: 100%;
  }
  .academic-section p {
    margin-inline: auto;
  }
  .academic-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .academic-section .image-wrapper {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .academic-section h2 {
    font-size: 36px;
  }
  .academic-section .feature-grid {
    grid-template-columns: 1fr;
  }
  .academic-section .feature-card {
    text-align: left;
  }
  .academic-section .image-wrapper {
    width: 100%;
    max-width: 380px;
    height: 380px;
    border-radius: 80px 0 80px 0;
  }
  .academic-section .image-wrapper::before {
    border-radius: 65px 0 65px 0;
  }
}
@media (max-width: 480px) {
  .academic-section {
    padding: 50px 18px;
  }
  .academic-section h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .academic-section p {
    font-size: 15px;
  }
  .academic-section .feature-card {
    padding: 18px 0;
  }
  .academic-section .feature-card .icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  .academic-section .feature-card .icon-box img {
    width: 24px;
    height: 24px;
  }
  .academic-section .feature-card .feature-content h4 {
    font-size: 16px;
  }
  .academic-section .feature-card .feature-content p {
    font-size: 12px;
  }
  .academic-section .image-wrapper {
    height: 320px;
  }
}
.why-chinmaya {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 80px;
  background: linear-gradient(90deg, #edf1f7 0%, #d9eef2 100%);
}
.why-chinmaya .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.why-chinmaya .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-chinmaya .title .orange {
  color: #f59a17;
}
.why-chinmaya .title .blue {
  color: #1f4f96;
}
.why-chinmaya .subtitle {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 14px;
}
.why-chinmaya .udise {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 20px;
  background: rgba(135, 190, 255, 0.15);
  color: #5b92d1;
  font-size: 13px !important;
  font-weight: 500;
  margin-bottom: 55px;
}
.why-chinmaya .stats-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.why-chinmaya .stat-card {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #eef1f5;
  background-image: url("../images/Ellipse 6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 12px 12px 24px rgba(180, 190, 210, 0.28), -8px -8px 18px rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.why-chinmaya .stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  z-index: 0;
}
.why-chinmaya .stat-card::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 4px solid rgba(198, 208, 224, 0.75);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7), 0 8px 18px rgba(0, 0, 0, 0.04);
  z-index: -1;
}
.why-chinmaya .stat-card h3, .why-chinmaya .stat-card p {
  position: relative;
  z-index: 2;
}
.why-chinmaya .stat-card h3 {
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  color: #f59a17;
  margin-bottom: 10px;
  text-shadow: 0 4px 0 #BCE4FF;
}
.why-chinmaya .stat-card p {
  font-size: 16px;
  line-height: 1.35;
  color: #31528f;
  font-weight: 500;
  text-align: center;
}
.why-chinmaya .stat-card:hover {
  transform: translateY(-6px);
}
.why-chinmaya .bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.why-chinmaya .bg-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(241, 143, 81, 0.12) 0px, rgba(241, 143, 81, 0.12) 2px, transparent 2px, transparent 10px);
}
.why-chinmaya .left-top {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -70px;
}
.why-chinmaya .left-top::before {
  background: repeating-radial-gradient(circle, rgba(130, 160, 220, 0.15) 0px, rgba(130, 160, 220, 0.15) 2px, transparent 2px, transparent 10px);
}
.why-chinmaya .left-bottom {
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: -100px;
}

@media (max-width: 992px) {
  .why-chinmaya .title {
    font-size: 36px;
  }
  .why-chinmaya .stat-card {
    width: 160px;
    height: 160px;
  }
  .why-chinmaya .stat-card h3 {
    font-size: 44px;
  }
  .why-chinmaya .stat-card p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .why-chinmaya {
    padding: 45px 16px 45px;
  }
  .why-chinmaya .title {
    font-size: 30px;
  }
  .why-chinmaya .subtitle {
    font-size: 14px;
    line-height: 1.7;
  }
  .why-chinmaya .stats-wrapper {
    gap: 20px;
  }
  .why-chinmaya .stat-card {
    width: 145px;
    height: 145px;
  }
  .why-chinmaya .stat-card h3 {
    font-size: 38px;
  }
  .why-chinmaya .stat-card p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .why-chinmaya .title {
    font-size: 28px;
  }
  .why-chinmaya .udise {
    font-size: 12px;
    padding: 6px 14px;
  }
  .why-chinmaya .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 18px;
  }
  .why-chinmaya .stat-card {
    width: 135px;
    height: 135px;
  }
  .why-chinmaya .stat-card h3 {
    font-size: 34px;
  }
  .why-chinmaya .stat-card p {
    font-size: 14px;
  }
}
.leadership-section {
  background: #edf9f6;
  padding: 60px 20px 70px;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 480px) {
  .leadership-section {
    padding: 17px 20px 20px;
  }
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  position: relative;
}

/* dotted pattern */
.dots {
  position: absolute;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(#a6d9d1 1.4px, transparent 1.4px);
  background-size: 11px 11px;
  opacity: 0.9;
}

.dots-left {
  top: 28px;
  left: 250px;
}

.dots-right {
  top: 24px;
  right: 180px;
}

/* top layout */
.top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 55px;
}

/* LEFT SIDE */
.left-cards {
  width: 50%;
  min-height: 470px;
  position: relative;
}

/* mint shape */
.curve-bg {
  position: absolute;
  width: 100px;
  height: 90px;
  background: #b8ece4;
  left: 230px;
  top: 355px;
  border-radius: 100px 45px 120px 120px;
  z-index: 0;
}

/* shared cards */
.card,
.quote-card {
  position: absolute;
  background: #fff;
  border: 1px solid #d9ece8;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 4px 14px rgba(44, 62, 80, 0.07);
  z-index: 2;
}

/* profile cards */
.profile-card {
  width: 255px;
  min-height: 210px;
  text-align: center;
}

.profile-card img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 12px;
}

.profile-card p {
  font-size: 11px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 10px;
}

.profile-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: #f4a51c;
  margin-bottom: 4px;
}

.profile-card span {
  font-size: 11px;
  color: #2563eb;
  font-weight: 500;
}

/* quote cards */
.quote-card {
  width: 255px;
  min-height: 95px;
}

.quote-card p {
  font-size: 11px;
  line-height: 1.75;
  color: #f4a51c;
}

.quote-card h5 {
  margin-top: 8px;
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* exact placements */
.card1 {
  top: 0;
  left: 18px;
}

.quote1 {
  top: 255px;
  left: 18px;
}

.quote2 {
  top: 50px;
  left: 295px;
}

.card2 {
  top: 200px;
  left: 295px;
}

/* RIGHT SIDE */
.content-area {
  width: 60%;
  padding-right: 30px;
}

.badge {
  display: inline-block;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #f4a51c;
  border-radius: 6px;
  margin-bottom: 18px;
}

.content-area h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #143c77;
  margin-bottom: 18px;
}

.content-area p {
  font-size: 14px;
  line-height: 1.9;
  color: #667085;
  margin-bottom: 14px;
  max-width: 500px;
}

.content-area button {
  margin-top: 10px;
  padding: 12px 24px;
  border: 1px solid #2d63a7;
  background: transparent;
  color: #2d63a7;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.content-area button:hover {
  background: #2d63a7;
  color: #fff;
}

/* bottom cards */
.bottom-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.small-card {
  background: #fff;
  border: 1px solid #d9ece8;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.small-card img {
  width: 100%;
  height: 82px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 12px 0px;
  margin-bottom: 12px;
}

.small-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.small-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 14px;
}

.small-card a {
  display: inline-block;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #f4a51c;
  border-radius: 6px;
}

/* tablet */
@media (max-width: 992px) {
  .top-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .left-cards,
  .content-area {
    width: 100%;
  }
  .bottom-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* mobile */
@media (max-width: 768px) {
  .left-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
  }
  .curve-bg,
  .dots {
    display: none;
  }
  .card,
  .quote-card {
    position: static;
    width: 100%;
  }
  .content-area {
    padding-right: 0;
  }
  .content-area h2 {
    font-size: 28px;
  }
  .bottom-cards {
    grid-template-columns: 1fr;
  }
}
.bottom-slider {
  margin-top: 35px;
  padding-bottom: 40px;
}
@media (max-width: 480px) {
  .bottom-slider {
    margin-top: 10px;
    padding-bottom: 20px;
  }
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  display: flex;
  align-items: stretch;
}

.glide__slide {
  display: flex;
  height: auto;
  padding: 8px;
  box-sizing: border-box;
}

.small-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.small-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.048);
}
.small-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.small-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d2d62;
  margin: 10px 20px 10px;
  line-height: 1.3;
}
.small-card p {
  margin: 0 20px 10px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
  flex-grow: 1;
}
.small-card a {
  margin: 0 20px 20px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px 160px 160px 0;
  background: #f4a51c;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.small-card a:hover {
  background: #0d2d62;
  transform: translateY(-2px);
}

/* =========================
   Bullets
========================= */
.glide__bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.glide__bullet {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #c8ddd8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glide__bullet--active {
  width: 28px;
  border-radius: 30px;
  background: #f4a51c;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
  .small-card img {
    height: 220px;
  }
  .small-card h3 {
    font-size: 20px;
  }
}
/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
  .glide__slide {
    padding: 4px;
  }
  .small-card {
    border-radius: 16px;
  }
  .small-card img {
    height: 220px;
  }
  .small-card h3 {
    font-size: 18px;
    margin: 16px 16px 8px;
  }
  .small-card p {
    margin: 0 16px 16px;
    font-size: 14px;
  }
  .small-card a {
    margin: 0 16px 16px;
    padding: 10px 20px;
    font-size: 13px;
  }
  .glide__bullets {
    margin-top: 20px;
  }
}
.hero-gallery {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 60px 50px;
  overflow: hidden;
}
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/banner-bg.png") center center/cover no-repeat;
  animation: bgMove 20s ease-in-out infinite alternate;
  transform: scale(1);
  z-index: 0;
}
.hero-gallery .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 10%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.hero-gallery .hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-gallery {
  /* LEFT */
}
.hero-gallery .hero-content {
  color: #fff;
  max-width: 600px;
}
.hero-gallery .hero-content .sub-heading {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}
.hero-gallery .hero-content h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #FDA31B;
}
.hero-gallery .hero-content .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
}
.hero-gallery .hero-content .breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.hero-gallery .hero-content .breadcrumbs a:hover {
  color: #ffd54f;
}
.hero-gallery .hero-content .breadcrumbs span {
  color: #ddd;
}
.hero-gallery {
  /* RIGHT */
}
.hero-gallery .hero-description {
  max-width: 700px;
  color: #fff;
}
.hero-gallery .hero-description p {
  font-size: 16px;
  line-height: 1.9;
  color: #f1f1f1;
  margin-bottom: 24px;
}

@keyframes bgMove {
  0% {
    transform: scale(1.05) translate(0px, 0px);
  }
  25% {
    transform: scale(1.1) translate(-15px, -8px);
  }
  50% {
    transform: scale(1.08) translate(12px, 8px);
  }
  75% {
    transform: scale(1.12) translate(-8px, 12px);
  }
  100% {
    transform: scale(1.1) translate(10px, -8px);
  }
}
/* Tablet */
@media (max-width: 991px) {
  .hero-gallery {
    min-height: 420px;
    padding: 100px 6%;
  }
  .hero-gallery .hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
  .hero-gallery .hero-content h1 {
    font-size: 52px;
  }
  .hero-gallery .hero-content .sub-heading {
    font-size: 16px;
  }
  .hero-gallery .hero-content .breadcrumbs {
    font-size: 15px;
  }
  .hero-gallery .hero-description {
    max-width: 100%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-gallery {
    min-height: 350px;
    padding: 80px 8%;
  }
  .hero-gallery .hero-content {
    max-width: 100%;
  }
  .hero-gallery .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .hero-gallery .hero-content .sub-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hero-gallery .hero-content .breadcrumbs {
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  .hero-gallery .hero-description p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .hero-gallery {
    min-height: 255px;
  }
  .hero-gallery .hero-content h1 {
    font-size: 28px;
  }
  .hero-gallery .hero-content .breadcrumbs {
    font-size: 13px;
  }
}
.media-gallery {
  background: rgb(237, 249, 246);
  padding: 50px 20px;
}
.media-gallery .media-gallery-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}
.media-gallery {
  /* FILTERS */
}
.media-gallery .gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.media-gallery .gallery-controls select {
  width: 240px;
  height: 45px;
  padding: 0 14px;
  border: 1px solid #fda31b;
  background: #fff;
  font-size: 13px;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.media-gallery .gallery-controls select:hover {
  border-color: #ff8800;
}
.media-gallery .gallery-controls .video-btn {
  height: 45px;
  padding: 0 22px;
  border-radius: 100px 160px 160px 0;
  background: linear-gradient(135deg, #ff7b00, #ffb300);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}
.media-gallery .gallery-controls .video-btn span {
  font-size: 15px;
}
.media-gallery .gallery-controls .video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.25);
}
.media-gallery {
  /* GRID */
}
.media-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}
.media-gallery {
  /* CARD */
}
.media-gallery .gallery-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.media-gallery .gallery-card:hover {
  transform: translateY(-8px);
}
.media-gallery .gallery-card:hover img {
  transform: scale(1.08);
}
.media-gallery .gallery-card img,
.media-gallery .gallery-card .video-thumb img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.4s ease;
}
.media-gallery .gallery-card .video-thumb {
  position: relative;
  overflow: hidden;
}
.media-gallery .gallery-card .video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(6px);
}
.media-gallery .gallery-card .card-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-gallery .gallery-card .card-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111;
  line-height: 1.4;
}
.media-gallery .gallery-card .card-content p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-top: auto;
}

/* =========================================
   MODAL
========================================= */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 100001;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
.gallery-modal .modal-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.gallery-modal .modal-content img,
.gallery-modal .modal-content iframe,
.gallery-modal .modal-content video {
  width: 100%;
  max-height: 82vh;
  -o-object-fit: contain;
     object-fit: contain;
  border: none;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.gallery-modal {
  /* CLOSE */
}
.gallery-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}
.gallery-modal .close-modal:hover {
  transform: rotate(90deg);
}
.gallery-modal {
  /* NAVIGATION */
}
.gallery-modal .modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
  z-index: 10;
}
.gallery-modal .modal-nav:hover {
  background: #ff9900;
  transform: translateY(-50%) scale(1.08);
}
.gallery-modal .prev-btn {
  left: 30px;
}
.gallery-modal .next-btn {
  right: 30px;
}
.gallery-modal {
  /* ACTION BUTTONS */
}
.gallery-modal .modal-actions {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-modal .modal-actions button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}
.gallery-modal .modal-actions button:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .media-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .media-gallery .gallery-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .media-gallery .gallery-controls select,
  .media-gallery .gallery-controls .video-btn {
    width: 100%;
  }
  .media-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .media-gallery .gallery-card img,
  .media-gallery .gallery-card .video-thumb img {
    height: 190px;
  }
  .gallery-modal .modal-nav {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  .gallery-modal .prev-btn {
    left: 10px;
  }
  .gallery-modal .next-btn {
    right: 10px;
  }
  .gallery-modal .modal-actions {
    bottom: 15px;
  }
  .gallery-modal .modal-actions button {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .media-gallery {
    padding: 40px 15px;
  }
  .media-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
  .media-gallery .gallery-card img,
  .media-gallery .gallery-card .video-thumb img {
    height: 220px;
  }
}
.quick-contact-section {
  width: 100%;
  background: #f5f5f5;
  padding: 70px 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.quick-contact-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-form-box {
  width: 100%;
}

.small-title {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: #f29b12;
  margin-bottom: 8px;
  line-height: 1;
}

.contact-form-box h2 {
  font-size: 35px;
  color: #24539b;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact-form-box p {
  color: #6B6969;
  font-size: 15px;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 35px;
  font-weight: 500;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px;
  color: #222;
  outline: none;
  transition: 0.3s ease;
  font-family: inherit;
}

.contact-form input {
  height: 58px;
}

.contact-form textarea {
  height: 130px;
  resize: none;
  margin-bottom: 28px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f29b12;
  box-shadow: 0 0 0 3px rgba(242, 155, 18, 0.1);
}

.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #9c9c9c;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9c9c9c;
  font-size: 14px;
}

.contact-form button {
  min-width: 180px;
  height: 58px;
  border: none;
  border-radius: 6px;
  background: #f29b12;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  letter-spacing: 0.5px;
  display: block;
  margin: auto;
}

.contact-form button:hover {
  background: #dd8a08;
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.contact-info-box {
  width: 100%;
  padding-top: 12px;
}

.contact-info-box h3 {
  color: #f29b12;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 45px;
  max-width: 600px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 50px;
}

.info-item h4 {
  color: #2a61af;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.info-item p {
  color: #444;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.phone-group {
  margin-bottom: 28px;
}

.phone-group strong {
  display: block;
  font-size: 16px;
  color: #3b3b3b;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinators {
  padding-top: 40px;
}

@media (max-width: 1200px) {
  .small-title {
    font-size: 28px;
  }
  .contact-form-box h2 {
    font-size: 25px;
  }
}
@media (max-width: 992px) {
  .quick-contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-info-box {
    padding-top: 0;
  }
  .coordinators {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .quick-contact-section {
    padding: 60px 18px;
  }
  .small-title {
    font-size: 28px;
  }
  .contact-form-box h2 {
    font-size: 32px;
  }
  .contact-info-box h3 {
    font-size: 24px;
    line-height: 1.6;
  }
  .form-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form button {
    width: 100%;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
  }
}
@media (max-width: 480px) {
  .small-title {
    font-size: 24px;
  }
  .contact-form-box h2 {
    font-size: 28px;
  }
  .contact-form-box p,
  .info-item p {
    font-size: 14px;
  }
  .contact-info-box h3 {
    font-size: 22px;
  }
  .contact-form input {
    height: 54px;
  }
  .contact-form button {
    height: 54px;
  }
}
/*  Map Section */
.neon-map-section {
  background: #050816;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.neon-map-container {
  max-width: 1400px;
  margin: auto;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
}
.map-header span {
  color: #f29b12;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.map-header h2 {
  color: #fff;
  margin: 15px 0;
  font-size: 42px;
  font-weight: 700;
}
.map-header p {
  color: #a7b0c0;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 247, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.15), 0 0 60px rgba(0, 247, 255, 0.1);
}
.map-wrapper iframe {
  width: 100%;
  height: 650px;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(120%) brightness(80%) hue-rotate(180deg);
  transition: 0.5s ease;
}
.map-wrapper:hover iframe {
  transform: scale(1.02);
}

.map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 247, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.location-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 340px;
  background: rgba(8, 15, 35, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 155, 18, 0.3607843137);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(242, 155, 18, 0.231372549);
  z-index: 5;
}
.location-card h3 {
  color: #fff;
  margin-bottom: 15px;
}
.location-card p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 25px;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #f29b12, #d18000);
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}
.direction-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
}

.pulse-pin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f29b12;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #f29b12, 0 0 30px #f29b12;
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
/* Tablet */
@media (max-width: 991px) {
  .map-wrapper iframe {
    height: 500px;
  }
  .location-card {
    position: static;
    width: 100%;
    border-radius: 0;
  }
  .map-wrapper {
    display: flex;
    flex-direction: column;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .neon-map-section {
    padding: 70px 15px;
  }
  .map-header h2 {
    font-size: 30px;
  }
  .map-wrapper iframe {
    height: 400px;
  }
  .location-card {
    padding: 25px;
  }
}
.curriculum-section {
  width: 100%;
  background: #f3f3f3;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ===================================
   TOP SECTION
=================================== */
.curriculum-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  padding: 60px 50px;
}

.curriculum-box {
  color: #555;
}
.curriculum-box h3 {
  color: #e6a02b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.curriculum-box h4 {
  color: #4d75b9;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 10px;
}
.curriculum-box p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  font-weight: 500;
}
.curriculum-box span {
  color: #4d75b9;
  font-size: 12px;
  font-weight: 600;
}

.secondary-title {
  margin-top: 25px;
}

/* ===================================
   SENIOR SECONDARY
=================================== */
.senior-secondary {
  background: #e9ecef;
  padding-bottom: 40px;
}
.senior-secondary h2 {
  text-align: center;
  padding: 22px 15px;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #e6a02b;
}
.senior-secondary .blue {
  color: #3e6fb8;
}

.group-table {
  width: 100%;
}

.group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d8d8d8;
}

.group-row:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.group {
  padding: 16px 50px;
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  font-weight: 500;
  display: flex;
}

.group-badge {
  font-weight: 800;
  padding-right: 10px;
}

.group strong {
  color: #333;
  font-weight: 700;
}

.group-row:nth-child(even) {
  background: #f6f6f6;
}

/* ===================================
   TABLET
=================================== */
@media (max-width: 991px) {
  .curriculum-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 35px 30px;
  }
  .senior-secondary h2 {
    font-size: 30px;
  }
  .group {
    padding: 15px 25px;
  }
}
/* ===================================
   MOBILE
=================================== */
@media (max-width: 768px) {
  .curriculum-top {
    padding: 30px 20px;
    gap: 30px;
  }
  .curriculum-box h3 {
    font-size: 17px;
  }
  .curriculum-box h4 {
    font-size: 13px;
  }
  .curriculum-box p {
    font-size: 12px;
  }
  .senior-secondary {
    padding: 20px 15px 30px;
  }
  .senior-secondary h2 {
    font-size: 28px;
    padding: 10px 0 20px;
  }
  .group-table {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .group-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: none;
    background: transparent !important;
  }
  .group {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    border-left: 5px solid #e6a02b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
  }
  .group:hover {
    transform: translateY(-2px);
  }
  .group strong {
    display: inline-block;
    background: #e6a02b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
  }
}
/* ===================================
   SMALL MOBILE
=================================== */
@media (max-width: 576px) {
  .curriculum-top {
    padding: 25px 18px;
  }
  .senior-secondary h2 {
    font-size: 24px;
  }
  .group {
    padding: 15px;
    font-size: 12px;
    line-height: 1.7;
  }
  .group p {
    padding-left: 10px;
  }
  .group strong {
    font-size: 11px;
    padding: 5px 12px;
  }
  .group-badge {
    display: inline-block;
    background: #e6a02b;
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
}
/* ===================================
   EXTRA SMALL DEVICES
=================================== */
@media (max-width: 380px) {
  .curriculum-top {
    padding: 20px 15px;
  }
  .senior-secondary h2 {
    font-size: 22px;
  }
  .group {
    padding: 14px;
    font-size: 11px;
  }
}
.arts-section {
  background: #012758;
  padding: 40px 60px;
  overflow: hidden;
}

.arts-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.arts-content {
  flex: 1;
  max-width: 560px;
}

.content-block {
  margin-bottom: 40px;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-block h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.content-block p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}
.content-block p span {
  color: #f6a313;
  font-weight: 700;
}

.arts-images {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.arts-images::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(246, 163, 19, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.img-box {
  overflow: hidden;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s ease;
}
.img-box img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.img-box:hover {
  transform: translateY(-12px);
}
.img-box:hover img {
  transform: scale(1.08);
}
.img-box::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(246, 163, 19, 0.4);
  animation: pulseBorder 3s infinite;
  pointer-events: none;
}

/* LEFT IMAGE */
.img-one {
  width: 250px;
  margin-top: 100px;
  animation: floatLeft 5s ease-in-out infinite;
}

.img-two {
  width: 250px;
  animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatRight {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulseBorder {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .arts-container {
    flex-direction: column;
    gap: 40px;
  }
  .arts-content {
    max-width: 100%;
  }
  .arts-images {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .arts-section {
    padding: 30px 20px;
  }
  .content-block h2 {
    font-size: 22px;
  }
  .content-block p {
    font-size: 14px;
    line-height: 1.8;
  }
  .arts-images {
    flex-direction: column;
    width: 100%;
    gap: 25px;
  }
  .arts-images::before {
    width: 220px;
    height: 220px;
  }
  .img-one,
  .img-two {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
  }
}
.activity-section {
  background: rgba(188, 228, 255, 0.2901960784);
  padding: 50px 20px;
}
.activity-section .container {
  max-width: 1285px;
  margin: auto;
}

/* Top Images */
.top-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 25px;
  width: 950px;
  margin: 0 auto;
}
.top-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}
.top-gallery .gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.top-gallery .gallery-item:nth-child(3) {
  animation-delay: 0.4s;
}
.top-gallery .gallery-item:nth-child(4) {
  animation-delay: 0.6s;
}
.top-gallery .gallery-item img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.7s ease;
}
.top-gallery .gallery-item {
  /* Dark Overlay */
}
.top-gallery .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.top-gallery .gallery-item {
  /* Shine Effect */
}
.top-gallery .gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  z-index: 2;
}
.top-gallery .gallery-item:hover {
  transform: translateY(-8px);
}
.top-gallery .gallery-item:hover img {
  transform: scale(1.12) rotate(1deg);
}
.top-gallery .gallery-item:hover::before {
  opacity: 1;
}
.top-gallery .gallery-item:hover::after {
  animation: shine 1.2s ease;
}

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Shine Animation */
@keyframes shine {
  100% {
    left: 150%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .top-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .top-gallery .gallery-item img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .top-gallery {
    width: 100%;
  }
  .top-gallery .gallery-item img {
    height: 180px;
  }
}
/* Content */
.activity-content {
  padding-top: 20px;
  margin-bottom: 35px;
}
.activity-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
}

/* Bottom Section */
.bottom-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.event-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s ease forwards;
}
.event-card:nth-child(2) {
  animation-delay: 0.3s;
}
.event-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.event-card h3 .blue {
  color: #3468d6;
}
.event-card h3 .orange {
  color: #f59e0b;
}

.event-images {
  display: grid;
  gap: 15px;
}
.event-images .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  max-width: 100% !important;
}
.event-images .image-box img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.7s ease;
  border-radius: 10px !important;
}
.event-images .image-box {
  /* Overlay */
}
.event-images .image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.event-images .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  z-index: 2;
}
.event-images .image-box:hover img {
  transform: scale(1.12) rotate(1deg);
}
.event-images .image-box:hover::before {
  opacity: 1;
}
.event-images .image-box:hover::after {
  animation: shine 1.2s ease;
}

.event-card:first-child .event-images {
  grid-template-columns: repeat(2, 1fr);
}

.event-card:last-child .event-images {
  grid-template-columns: 1fr;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Shine Animation */
@keyframes shine {
  100% {
    left: 150%;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .top-gallery {
    gap: 15px;
  }
  .top-gallery .gallery-item img {
    height: 200px;
  }
  .event-images img {
    height: 190px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .activity-section {
    padding: 40px 15px;
  }
  .top-gallery,
  .bottom-gallery {
    grid-template-columns: 1fr;
  }
  .event-card:first-child .event-images {
    grid-template-columns: 1fr;
  }
  .top-gallery .gallery-item img {
    height: 220px;
  }
  .event-images img {
    height: 220px;
  }
  .event-card h3 {
    font-size: 20px;
    text-align: center;
  }
  .activity-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .top-gallery .gallery-item img,
  .event-images img {
    height: 190px;
  }
  .activity-content p {
    font-size: 13px;
  }
  .event-card h3 {
    font-size: 18px;
  }
}
.bank-section {
  padding: 30px 50px;
}
@media (max-width: 480px) {
  .bank-section {
    padding: 35px 35px;
  }
}

.bank-card {
  max-width: 1300px;
  margin: 0 auto;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: 35px;
  align-items: center;
}

.bank-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}
.bank-info h2 {
  font-size: 16px;
  font-weight: 700;
  color: #002b5c;
  margin-bottom: 30px;
  line-height: 1.3;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 15px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.detail-item .label {
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}
.detail-item .value {
  font-weight: 700;
  color: #222;
  word-break: break-word;
  text-align: right;
}

/* ==========================
   QR BOX PREMIUM VERSION
========================== */
.qr-box {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-box img {
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid rgba(0, 170, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 170, 255, 0.15);
  position: relative;
  z-index: 2;
  animation: qrFloat 3s ease-in-out infinite;
  transition: all 0.4s ease;
}
.qr-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 0 30px rgba(0, 170, 255, 0.3);
}
.qr-box {
  /* Scanner Line */
}
.qr-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00aaff, transparent);
  top: 12px;
  z-index: 3;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.8);
  animation: scanLine 2.5s linear infinite;
}
.qr-box p {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes qrFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scanLine {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(180px);
    opacity: 1;
  }
}
/* ==========================
   TABLET
========================== */
@media (max-width: 991px) {
  .bank-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .qr-box {
    order: -1;
  }
  .qr-box img {
    width: 200px;
    height: 200px;
  }
  .qr-box::after {
    width: 200px;
    animation: scanLineTablet 2.5s linear infinite;
  }
  @keyframes scanLineTablet {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(200px);
    }
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 576px) {
  .bank-card {
    padding: 25px 20px;
  }
  .bank-info h3 {
    font-size: 14px;
  }
  .bank-info h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .detail-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .detail-item .label {
    font-size: 14px;
  }
  .detail-item .value {
    font-size: 15px;
    text-align: left;
  }
  .qr-box img {
    width: 170px;
    height: 170px;
  }
  .qr-box::after {
    width: 170px;
    animation: scanLineMobile 2.5s linear infinite;
  }
  .qr-box p {
    font-size: 14px;
  }
  @keyframes scanLineMobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(170px);
    }
  }
}
.kindergarten-section {
  padding: 70px 0;
  background: #ffffff;
}
.kindergarten-section .container {
  width: 95%;
  margin: 0 auto;
}
.kindergarten-section p {
  color: #555;
  font-size: 15px;
  line-height: 30px;
}
@media (max-width: 480px) {
  .kindergarten-section p {
    text-align: justify;
  }
}
.kindergarten-section .top-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 35px;
  align-items: flex-start;
}
.kindergarten-section .main-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
}
.kindergarten-section .content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #204a8e;
}
.kindergarten-section .content h2 span {
  color: #e39c2a;
}
.kindergarten-section .content p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
}
.kindergarten-section .gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 950px;
  margin: 0 auto;
  margin-top: 60px;
}
@media (max-width: 580px) {
  .kindergarten-section .gallery-row {
    width: 100%;
  }
}
.kindergarten-section .gallery-row .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  /* Entrance Animation */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s ease forwards;
}
.kindergarten-section .gallery-row .gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.kindergarten-section .gallery-row .gallery-item:nth-child(3) {
  animation-delay: 0.4s;
}
.kindergarten-section .gallery-row .gallery-item:nth-child(4) {
  animation-delay: 0.6s;
}
.kindergarten-section .gallery-row .gallery-item img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.7s ease;
  transform: scale(1);
}
.kindergarten-section .gallery-row .gallery-item {
  /* Dark Overlay */
}
.kindergarten-section .gallery-row .gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.kindergarten-section .gallery-row .gallery-item {
  /* Shine Effect */
}
.kindergarten-section .gallery-row .gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg);
  z-index: 2;
}
.kindergarten-section .gallery-row .gallery-item:hover {
  transform: translateY(-10px);
}
.kindergarten-section .gallery-row .gallery-item:hover img {
  transform: scale(1.12) rotate(1deg);
}
.kindergarten-section .gallery-row .gallery-item:hover::before {
  opacity: 1;
}
.kindergarten-section .gallery-row .gallery-item:hover::after {
  animation: shine 1.2s ease;
}
.kindergarten-section {
  /* Fade Up Animation */
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kindergarten-section {
  /* Shine Animation */
}
@keyframes shine {
  100% {
    left: 150%;
  }
}
.kindergarten-section {
  /* Floating Animation */
}
.kindergarten-section .gallery-item {
  animation: fadeUp 0.8s ease forwards, floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.kindergarten-section {
  /* Responsive */
}
@media (max-width: 768px) {
  .kindergarten-section .gallery-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .kindergarten-section .gallery-item {
    border-radius: 15px;
  }
}
.kindergarten-section .bottom-text {
  max-width: 950px;
  margin: 35px auto 0;
  text-align: center;
}
.kindergarten-section .bottom-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #d29a3b;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 991px) {
  .kindergarten-section .top-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .kindergarten-section .content h2 {
    font-size: 28px;
  }
  .kindergarten-section .gallery-row {
    margin-top: 40px;
    gap: 20px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .kindergarten-section {
    padding: 50px 0;
  }
  .kindergarten-section .content h2 {
    font-size: 24px;
  }
  .kindergarten-section .content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .kindergarten-section .gallery-row {
    grid-template-columns: 1fr;
  }
  .kindergarten-section .bottom-text p {
    font-size: 14px;
  }
}
.advisory-members-section {
  padding: 60px 40px;
  background: #f7f9fc;
}

.advisory-members-header {
  text-align: center;
  margin-bottom: 50px;
}
.advisory-members-header span {
  display: inline-block;
  padding: 10px 20px;
  background: #e8f2ff;
  color: #0066cc;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.advisory-members-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: "Playwrite GB J", cursive;
}
.advisory-members-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

/* ==========================
   GRID
========================== */
.advisory-members-grid {
  max-width: 1800px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ==========================
   CARD
========================== */
.advisory-members-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}
.advisory-members-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.advisory-members-card:hover .advisory-members-image img {
  transform: scale(1.08);
}

.advisory-members-image {
  width: 110px;
  min-width: 110px;
  overflow: hidden;
  position: relative;
}
.advisory-members-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* ==========================
   CONTENT
========================== */
.advisory-members-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.advisory-members-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================
   DESIGNATION
========================== */
.advisory-members-designation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.advisory-members-president {
  background: #fff2d8;
  color: #c78500;
}

.advisory-members-parent {
  background: #e7f2ff;
  color: #0066cc;
}

.advisory-members-special {
  background: #f3e8ff;
  color: #7c3aed;
}

/* ==========================
   INFO
========================== */
.advisory-members-info {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.advisory-members-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #edf1f7;
  color: #555;
  font-size: 11px;
  line-height: 1.5;
  word-break: break-word;
}
.advisory-members-info li:last-child {
  border-bottom: none;
}
.advisory-members-info li i {
  color: #0066cc;
  min-width: 12px;
  font-size: 11px;
  margin-top: 3px;
}

.advisory-members-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fda31b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 100px 160px 160px 0px;
  transition: all 0.3s ease;
  display: none;
}

.advisory-members-btn:hover {
  transform: translateY(-2px);
}

/* ==========================
   LARGE DESKTOP
========================== */
@media (min-width: 1700px) {
  .advisory-members-grid {
    max-width: 1900px;
  }
  .advisory-members-image {
    width: 160px;
    min-width: 160px;
  }
}
/* ==========================
   DESKTOP
========================== */
@media (max-width: 1500px) {
  .advisory-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .advisory-members-image {
    width: 150px;
    min-width: 150px;
  }
}
/* ==========================
   TABLET
========================== */
@media (max-width: 992px) {
  .advisory-members-section {
    padding: 60px 20px;
  }
  .advisory-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisory-members-header h2 {
    font-size: 34px;
  }
  .advisory-members-image {
    width: 130px;
    min-width: 130px;
  }
  .advisory-members-content h3 {
    font-size: 16px;
  }
  .advisory-members-info li {
    font-size: 12px;
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .advisory-members-grid {
    grid-template-columns: 1fr;
  }
  .advisory-members-header h2 {
    font-size: 28px;
  }
  .advisory-members-card {
    flex-direction: row;
  }
  .advisory-members-image {
    width: 130px;
    min-width: 130px;
  }
  .advisory-members-content {
    padding: 14px;
  }
  .advisory-members-content h3 {
    font-size: 16px;
  }
  .advisory-members-info li {
    font-size: 12px;
  }
}
/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px) {
  .advisory-members-section {
    padding: 50px 15px;
  }
  .advisory-members-header h2 {
    font-size: 24px;
  }
  .advisory-members-card {
    flex-direction: column;
  }
  .advisory-members-image {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }
  .advisory-members-content {
    padding: 15px;
  }
  .advisory-members-btn {
    width: 100%;
  }
}
.president-message-section {
  padding: 60px 30px 5px 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.president-message-wrapper {
  max-width: 1200px;
  margin: auto;
}

.president-profile {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

.president-image-box {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: presidentFloat 6s ease-in-out infinite;
}

.president-image-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(0, 82, 204, 0.05));
  animation: pulseCircle 4s ease-in-out infinite;
}

.president-image-box::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 82, 204, 0.25);
  animation: rotateRing 25s linear infinite;
}

.president-image-box img {
  width: 220px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  position: relative;
  z-index: 5;
  transition: all 0.5s ease;
  box-shadow: 0 30px 60px rgba(0, 82, 204, 0.18), 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.floating-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}

.shape-1 {
  width: 18px;
  height: 18px;
  background: #0052cc;
  top: 35px;
  right: 30px;
  animation: floatShape1 4s ease-in-out infinite;
}

.shape-2 {
  width: 14px;
  height: 14px;
  background: #36b37e;
  left: 20px;
  bottom: 45px;
  animation: floatShape2 5s ease-in-out infinite;
}

.shape-3 {
  width: 12px;
  height: 12px;
  background: #ffab00;
  top: 65%;
  right: 0;
  animation: floatShape3 6s ease-in-out infinite;
}

.president-details {
  flex: 1;
}

.president-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #e8f1ff;
  color: #0052cc;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.president-details h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

.president-info h3 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 6px;
}

.president-info span {
  color: #0052cc;
  font-weight: 600;
}

.president-message-card {
  position: relative;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #0052cc;
}

.president-message-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.04);
}

.quote-mark {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 120px;
  color: #0052cc;
  opacity: 0.08;
  line-height: 1;
}

.president-message-card p {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 2;
  color: #4b5563;
  margin-bottom: 24px;
}

.president-signature {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 20px;
}

.president-signature img {
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.president-signature h4 {
  margin-bottom: 5px;
  color: #111827;
}

.president-signature span {
  color: #0052cc;
  font-weight: 600;
}

.president-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  background: #fff;
  padding: 35px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid #eef2f7;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -60px;
  right: -60px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.04);
}

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

.value-icon {
  width: 80px;
  height: 80px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: #e8f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.4s;
}

.value-card:hover .value-icon {
  transform: rotate(10deg) scale(1.1);
}

.value-card h4 {
  font-size: 1.3rem;
  color: #111827;
  margin-bottom: 12px;
}

.value-card p {
  color: #64748b;
  line-height: 1.8;
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes presidentFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulseCircle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
}
@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatShape1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatShape2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes floatShape3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
/* ==========================
   TABLET
========================== */
@media (max-width: 992px) {
  .president-profile {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  .president-details h2 {
    font-size: 2rem;
  }
  .president-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .president-message-section {
    padding: 60px 35px;
  }
  .president-image-box {
    width: 230px;
    height: 230px;
  }
  .president-image-box img {
    width: 180px;
    height: 180px;
  }
  .president-image-box::after {
    width: 250px;
    height: 250px;
  }
  .president-details h2 {
    font-size: 1.8rem;
  }
  .president-message-card {
    padding: 35px 25px;
  }
  .quote-mark {
    font-size: 80px;
    right: 20px;
  }
  .president-values {
    grid-template-columns: 1fr;
  }
  .president-signature {
    flex-direction: column;
    text-align: center;
  }
}
/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px) {
  .president-details h2 {
    font-size: 1.6rem;
  }
  .president-message-card p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .value-card {
    padding: 28px 22px;
  }
}
.faculty-section {
  padding: 80px 55px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
  overflow: hidden;
}

.faculty-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}
.faculty-header .faculty-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faculty-header h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Playwrite GB J", cursive;
}
@media (max-width: 580px) {
  .faculty-header h2 {
    font-size: clamp(1.2rem, 4vw, 3.5rem);
  }
}
.faculty-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
}

.faculty-stats {
  max-width: 1300px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.faculty-stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}
.faculty-stat-card:hover {
  transform: translateY(-6px);
}
.faculty-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}
.faculty-stat-card span {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

.faculty-toolbar {
  max-width: 1300px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.faculty-search {
  flex: 1;
  min-width: 280px;
}
.faculty-search input {
  width: 100%;
  height: 58px;
  border: 1px solid #dbe4f0;
  border-radius: 50px;
  background: #fff;
  padding: 0 25px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}
.faculty-search input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.faculty-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.faculty-filters button {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 50px;
  background: #fff;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faculty-filters button:hover, .faculty-filters button.active {
  background: #2563eb;
  color: #fff;
}

.faculty-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.faculty-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  transition: 0.4s ease;
}
.faculty-card:hover {
  transform: translateY(-10px);
}
.faculty-card:hover .faculty-image img {
  transform: scale(1.08);
}

.faculty-image {
  height: 280px;
  overflow: hidden;
}
.faculty-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}

.faculty-content {
  padding: 19px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faculty-department {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 50px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.science {
  background: #dcfce7;
  color: #15803d;
}

.english {
  background: #fff7ed;
  color: #ea580c;
}

.computer {
  background: #ede9fe;
  color: #7c3aed;
}

.faculty-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.faculty-role {
  color: #fda31b;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 15px;
}

.faculty-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.faculty-meta span {
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.faculty-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.faculty-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  text-decoration: none;
  border-radius: 100px 160px 160px 0px;
  background: #fda31b;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.faculty-btn:hover {
  background: #ea920e;
}

.faculty-card {
  opacity: 0;
  transform: translateY(30px);
}

.faculty-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

/* TABLET */
@media (max-width: 1200px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .faculty-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* MOBILE TABLET */
@media (max-width: 991px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .faculty-section {
    padding: 60px 15px;
  }
  .faculty-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faculty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faculty-image {
    height: 250px;
  }
  .faculty-content {
    padding: 20px;
  }
  .faculty-content h3 {
    font-size: 20px;
  }
  .faculty-filters {
    justify-content: center;
  }
}
.school-facilities {
  padding: 50px 50px;
  background: #f8fafc;
}

.facilities-header {
  text-align: center;
  max-width: 850px;
  margin: auto auto 70px;
}
.facilities-header .facilities-tag {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}
.facilities-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 800;
  font-family: "Playwrite GB J", cursive;
}
.facilities-header p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
}

.facilities-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

.facility-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.45s ease;
  position: relative;
}
.facility-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}
.facility-card:hover .facility-image img {
  transform: scale(1.08);
}

.facility-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.facility-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.25), transparent);
}
.facility-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.facility-content {
  padding: 28px;
}
.facility-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}
.facility-content p {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.98rem;
}

.featured-facility {
  max-width: 1400px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image {
  position: relative;
  border-radius: 32px;
  padding: 3px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.featured-image::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 0deg, #2563eb, #06b6d4, #8b5cf6, #2563eb);
  animation: rotateBorder 6s linear infinite;
}
.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.35), transparent 60%);
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}
.featured-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 28px;
  background: #fff;
  animation: image3D 8s ease-in-out infinite;
  transition: transform 0.6s ease;
}
.featured-image:hover img {
  transform: scale(1.04) rotateY(-6deg) rotateX(3deg);
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes image3D {
  0% {
    transform: translateY(0) rotateY(0deg);
  }
  25% {
    transform: translateY(-8px) rotateY(3deg);
  }
  50% {
    transform: translateY(-16px) rotateY(0deg);
  }
  75% {
    transform: translateY(-8px) rotateY(-3deg);
  }
  100% {
    transform: translateY(0) rotateY(0deg);
  }
}
.featured-content span {
  color: #ffffff;
  font-weight: 700;
}
.featured-content h3 {
  font-size: 2.3rem;
  margin: 15px 0 25px;
  color: #0f172a;
}
.featured-content p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 30px;
}

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

.feature-item {
  background: white;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.feature-item i {
  color: #22c55e;
  margin-right: 8px;
}

.stat-box {
  text-align: center;
  background: white;
  border-radius: 24px;
  padding: 40px 20px;
}
.stat-box h3 {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 10px;
  font-weight: 800;
}
.stat-box p {
  color: #64748b;
  font-weight: 600;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: flex-end;
  padding: 25px;
}
.gallery-overlay h4 {
  color: white;
  font-size: 1.3rem;
}

.facilities-cta {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 70px 30px;
  border-radius: 35px;
  color: white;
}
.facilities-cta h3 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}
.facilities-cta p {
  max-width: 700px;
  margin: auto auto 30px;
  line-height: 1.8;
}

.facility-btn {
  display: inline-block;
  background: white;
  color: #2563eb;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}
.facility-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 992px) {
  .facilities-grid,
  .facility-gallery,
  .facility-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-facility {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .facilities-grid,
  .facility-gallery,
  .facility-features {
    grid-template-columns: 1fr;
  }
  .school-facilities {
    padding: 70px 15px;
  }
  .featured-content h3 {
    font-size: 1.9rem;
  }
  .facilities-cta h3 {
    font-size: 1.8rem;
  }
}
.school-achievements {
  padding: 75px 50px;
  background: #f8fafc;
}
@media (max-width: 480px) {
  .school-achievements {
    padding: 50px 30px;
  }
}

.achievements-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}
.achievements-header span {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}
.achievements-header h2 {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  font-family: "Playwrite GB J", cursive;
}
.achievements-header p {
  margin-top: 15px;
  color: #64748b;
  line-height: 1.8;
}

.achievement-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
.achievement-filter button {
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.achievement-filter button:hover, .achievement-filter button.active {
  background: linear-gradient(135deg, #fda31b, #c47807);
  color: white;
  transform: translateY(-3px);
}

.achievement-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievement-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 35px;
  overflow: hidden;
  transition: 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.achievement-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
}
.achievement-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.achievement-card .achievement-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fda31b, #c47807);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.achievement-card h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 15px;
}
@media (max-width: 580px) {
  .achievement-card h3 {
    font-size: 1rem;
    font-weight: 600;
  }
}
.achievement-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}
.achievement-card span {
  color: #2563eb;
  font-weight: 700;
}

.achievement-timeline {
  padding: 30px 20px;
  background: white;
}
@media (max-width: 480px) {
  .achievement-timeline {
    padding: 30px 30px;
  }
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}
.timeline-header h2 {
  font-size: 2rem;
  color: #0f172a;
  font-family: "Playwrite GB J", cursive;
}

.timeline {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  background: linear-gradient(135deg, #fda31b, #c47807);
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-item .year {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #fda31b, #c47807);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.timeline-item .content {
  flex: 1;
  margin: 0 40px;
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.timeline-item .content h3 {
  margin-bottom: 10px;
  color: #0f172a;
}
.timeline-item .content p {
  color: #64748b;
  line-height: 1.7;
}

.hidden-achievement {
  display: none;
}

@media (max-width: 1200px) {
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
  .achievement-card {
    padding: 20px;
  }
  .achievements-header h2 {
    font-size: 2.2rem;
  }
  .timeline:before {
    left: 30px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
  }
  .timeline-item .year {
    width: 80px;
    height: 80px;
    font-size: 1rem;
    position: absolute;
    left: -10px;
  }
  .timeline-item .content {
    margin: 0;
    width: 100%;
  }
}
.school-news-page {
  padding: 50px 50px;
  background: #f8fafc;
}
@media (max-width: 580px) {
  .school-news-page {
    padding: 50px 30px;
  }
}

.news-topbar {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.news-heading span {
  display: inline-block;
  padding: 10px 20px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.news-heading h2 {
  font-size: 30px;
  margin-top: 10px;
  color: #111827;
  font-family: "Playwrite GB J", cursive;
}

.news-search input {
  width: 320px;
  height: 55px;
  border: none;
  background: white;
  border-radius: 50px;
  padding: 0 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .news-search {
    width: 100%;
  }
}
.news-filter-tabs {
  max-width: 1400px;
  margin: auto auto 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-filter-tabs button {
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.news-filter-tabs button.active,
.news-filter-tabs button:hover {
  background: #2563eb;
  color: white;
}

.featured-news-card {
  max-width: 1400px;
  margin: auto;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-content {
  padding: 50px;
}

.featured-badge {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.featured-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #111827;
}

.featured-content p {
  color: #6b7280;
  line-height: 1.8;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}
.featured-meta span {
  color: red;
}

.featured-content a {
  display: inline-block;
  padding: 14px 28px;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  text-decoration: none;
}

.news-layout {
  max-width: 1400px;
  margin: auto;
  gap: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-10px);
}

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

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

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

.category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 30px;
  color: white;
  font-size: 13px;
}

.academic1 {
  background: #2563eb;
}

.events1 {
  background: #10b981;
}

.sports1 {
  background: #dc3545;
}

.achievements1 {
  background: #8b5cf6;
}

.news-content {
  padding: 25px;
}

.news-date {
  color: #ffffff;
  font-size: 14px;
}

.news-content h4 {
  margin: 15px 0;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}

.news-content p {
  color: #fff3cd;
  line-height: 1.7;
}

.news-content a {
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 1200px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    order: -1;
  }
}
@media (max-width: 992px) {
  .featured-news-card {
    grid-template-columns: 1fr;
  }
  .featured-content {
    padding: 30px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-search input {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .news-heading h2 {
    font-size: 30px;
  }
  .featured-content h3 {
    font-size: 26px;
  }
  .news-content h4 {
    font-size: 20px;
  }
}
.cv-footer {
  background: #0f4b82;
  color: #fff;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.cv-footer .footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 25px 40px 0;
}
.cv-footer {
  /* TOP CONTACT */
}
.cv-footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.cv-footer .footer-top .contact-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 250px;
}
.cv-footer .footer-top .contact-box .icon {
  font-size: 24px;
  color: #7dd4ff;
  margin-top: 2px;
}
.cv-footer .footer-top .contact-box .icon img {
  width: 24px;
}
.cv-footer .footer-top .contact-box h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cv-footer .footer-top .contact-box p {
  font-size: 14px;
  color: #dce9f8;
  line-height: 1.4;
}
.cv-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 35px;
}
.cv-footer {
  /* MAIN FOOTER */
}
.cv-footer .footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  padding-bottom: 40px;
}
.cv-footer .footer-about .footer-logo {
  width: 230px;
  margin-bottom: 20px;
}
.cv-footer .footer-about p {
  font-size: 13px;
  line-height: 1.8;
  color: #dbe7f6;
  max-width: 380px;
  margin-bottom: 25px;
}
.cv-footer .footer-about .social-icons {
  display: flex;
  gap: 12px;
}
.cv-footer .footer-about .social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}
.cv-footer .footer-about .social-icons a:hover {
  background: #df8703;
  color: #0f4b82;
  transform: translateY(-4px);
}
.cv-footer .footer-links h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #77b6dc;
}
.cv-footer .footer-links .link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cv-footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.cv-footer .footer-links ul li {
  margin-bottom: 16px;
}
.cv-footer .footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.cv-footer .footer-links ul li a:hover {
  color: #7dd4ff;
  padding-left: 5px;
}
.cv-footer {
  /* BOTTOM */
}
.cv-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 40px;
}
.cv-footer .footer-bottom .footer-bottom-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.cv-footer .footer-bottom p {
  font-size: 14px;
  color: #dce9f8;
}
.cv-footer .footer-bottom .bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cv-footer .footer-bottom .bottom-links a {
  color: #dce9f8;
  text-decoration: none;
  font-size: 14px;
}
.cv-footer .footer-bottom .bottom-links a:hover {
  color: #7dd4ff;
}
.cv-footer .footer-bottom .bottom-links span {
  opacity: 0.5;
}

@media (max-width: 991px) {
  .cv-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cv-footer .footer-links .link-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .cv-footer .footer-container {
    padding: 25px 30px 0;
  }
  .cv-footer .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .cv-footer .footer-links h3 {
    font-size: 20px;
  }
  .cv-footer .footer-bottom {
    padding: 18px 20px;
  }
  .cv-footer .footer-bottom .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  .cv-footer .footer-bottom .bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b4d8c, #2f80ed);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 77, 140, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.back-to-top span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.back-to-top:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #163d70, #1b4d8c);
  box-shadow: 0 12px 25px rgba(27, 77, 140, 0.45);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }
  .back-to-top span {
    font-size: 20px;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }
  .back-to-top span {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */