/* ============= Main CSS file ========== */
@charset "UTF-8";
/* Option 2: Bootstrap icons-Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

/*--------------------------------------------------------------
                  # Mail Styling sheet 
--------------------------------------------------------------*/
/* Fonts */


:root {
  --occ-primary: #0b5ed7;
  --occ-dark: #071b36;
  --occ-gold: #ffc107;
  --occ-soft: #f4f8fc;
  --occ-green: #198754;
  --occ-radius: 22px;
  --occ-shadow: 0 18px 45px rgba(7, 27, 54, .12);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--occ-soft);
  color: #233044;
  scroll-behavior: smooth;
}


/* =============================== PREMIUM OCC TOPBAR ================================ */

.occ-topbar {
  background: linear-gradient(135deg, #0b1f3a, #102d56, #0d6efd);
  padding: 5px 0;
  z-index: 1000;
}

/* Animated Shapes */
.occ-topbar-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .15;
  animation: floatShape 8s ease-in-out infinite;
}

.occ-shape-1 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  top: -80px;
  left: -60px;
}

.occ-shape-2 {
  width: 140px;
  height: 140px;
  background: #ffc107;
  bottom: -70px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes floatShape {

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

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

/* Brand */
.occ-topbar-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.occ-topbar-motto {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  font-weight: 500;
}

/* Icon Groups */
.occ-top-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Main Icon Style */
.occ-icon-link {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  backdrop-filter: blur(4px);
}

.occ-icon-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, .28),
      rgba(255, 255, 255, .06));
}

.occ-icon-link i {
  position: relative;
  z-index: 2;
}

.occ-icon-link:hover {
  transform: translateY(-6px) scale(1.08);
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .3);
}

/* LEFT ICON COLORS */
.occ-icon-yellow {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.occ-icon-light {
  background: linear-gradient(135deg, #6c757d, #adb5bd);
}

.occ-icon-blue {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

/* SOCIAL ICON COLORS */
.occ-social-facebook {
  background: linear-gradient(135deg, #1877f2, #3b5998);
}

.occ-social-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.occ-social-linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

/* Mobile */
@media (max-width: 991px) {

  .occ-topbar {
    padding: 20px 0;
  }

  .occ-top-icons {
    justify-content: center !important;
  }

  .occ-topbar-brand {
    padding: 8px 0;
  }
}

.navbar {
  background: rgba(255, 255, 255, .96);
  height: 90px;
  padding: 5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  border: 2px;
}

.mainbar {
  background-color: #e2e7ee;
  padding: 5px 18px;
  border: 1px rgba(2, 2, 44, 0.158) groove;
  border-radius: 5px;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar-brand span {
  color: var(--occ-primary);
}

.nav-link {
  font-weight: 600;
  color: var(--occ-dark);
}

.nav-link:hover {
  color: var(--occ-primary);
}

/* ================================    PREMIUM college NAVBAR ================================ */
:root {
  --occ-primary: #0d6efd;
  --occ-dark: #102033;
  --occ-muted: #6c757d;
  --occ-light: #f6f9ff;
  --occ-radius: 18px;
  --occ-shadow: 0 18px 45px rgba(16, 32, 51, 0.14);
}

.occ-header {
  z-index: 1040;
}

.occ-topbar {
  background: linear-gradient(135deg, #07182e, #0d6efd);
  color: #fff;
  padding: 10px 0;
}

.occ-topbar a,
.occ-topbar span {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.occ-topbar a:hover {
  color: #fff;
}

.navbar-nav .nav-link.active {
  background-color: #0d6efd;
  /* Brand blue */
  padding: 5px;
  border-radius: 2px;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(13, 110, 253, 0.3);
}

.navbar-nav .nav-link.active:hover {
  color: #fff !important;
}

.premium-navbar-wrap {
  position: sticky;
  height: 90px;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 110, 253, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.college-navbar {
  position: relative;
}

.site-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 700;
  color: #0f172a;
  padding: 0.8rem 1rem;
  transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0d6efd;
}

.navbar-nav .nav-link::after {
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after {
  transform: rotate(180deg);
}

/* ================================    NORMAL DROPDOWN ================================ */

.dropdown-menu {
  margin-top: 0;
  padding: 0.6rem 0;
  min-width: 230px;
  border-radius: 0;
  background: #ffffff;
}

.dropdown-item {
  font-weight: 600;
  color: #334155;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
  padding-left: 1.25rem;
}

/* ================================    HOVERABLE DESKTOP DROPDOWN ================================ */

@media (min-width: 992px) {

  .navbar .dropdown:hover>.dropdown-menu,
  .navbar .dropdown:focus-within>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .navbar .dropdown:hover>.nav-link,
  .navbar .dropdown:focus-within>.nav-link {
    color: #0d6efd;
  }
}

/* ================================    MEGA MENU ================================ */

.mega-dropdown {
  position: static;
}

.mega-menu {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98));
  border-top: 1px solid rgba(13, 110, 253, 0.12);
  z-index: 1060;
}

.premium-mega-menu {
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
}

/* Important: keeps mega menu links clickable */
.mega-menu,
.mega-menu * {
  pointer-events: auto;
}

.mega-menu-card {
  position: relative;
  height: 100%;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 110, 253, 0.12);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.mega-menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.35);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.menu-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  color: #ffffff;
  font-size: 1.2rem;
}

.menu-icon-lg {
  width: 58px;
  height: 58px;
  font-size: 1.45rem;
}

.mega-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.55rem;
}

.mega-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1rem;
}

.premium-links li {
  margin-bottom: 0.35rem;
}

.premium-links a {
  display: block;
  text-decoration: none;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  background: rgba(248, 250, 252, 0.85);
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.premium-links a:hover,
.premium-links a:focus {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
  border-left-color: #0d6efd;
  padding-left: 0.9rem;
}

/* ================================   admission MEGA MENU CARDS ================================ */

.premium-featured-card {
  color: #ffffff;
  background: linear-gradient(135deg, #0d6efd, #084298);
  border: none;
}

.premium-featured-card .mega-title,
.premium-featured-card .mega-text {
  color: #ffffff;
}

.featured-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #084298;
  background: #ffffff;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
}

.admission-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.admission-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
  padding: 0.35rem 0.6rem;
}

.premium-info-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: #475569;
}

.premium-info-list i {
  color: #0d6efd;
  margin-top: 0.15rem;
}

.premium-info-list a {
  color: #334155;
  text-decoration: none;
  font-weight: 700;
}

.premium-info-list a:hover {
  color: #0d6efd;
}

.admission-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.admission-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  transition: all 0.25s ease;
}

.admission-link:hover {
  color: #ffffff;
  background: #0d6efd;
}

.emergency-contact-block {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.14);
}

.emergency-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.9;
}

.emergency-number {
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
}

.emergency-number:hover {
  color: #cffafe;
}

/* ================================    BUTTON ================================ */

.premium-btn {
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.25);
  transition: all 0.25s ease;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 110, 253, 0.35);
}

/* ================================    MOBILE BEHAVIOUR ================================ */

@media (max-width: 991.98px) {
  .premium-navbar-wrap {
    position: sticky;
    top: 0;
  }

  .navbar-collapse {
    max-height: 85vh;
    overflow-y: auto;
    padding-top: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.85rem 0;
  }

  .dropdown-menu,
  .mega-menu {
    position: static !important;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none !important;
    padding: 1rem !important;
    background: #f8fafc;
  }

  .dropdown-menu.show {
    display: block;
  }

  .mega-menu-card {
    padding: 1.1rem;
  }

  .navbar-actions {
    width: 100%;
  }

  .navbar-actions .btn {
    width: 100%;
  }
}

/* =============================== OCC NAVBAR + HOVERABLE MEGA MENU ================================ */

.occ-navbar {
  z-index: 1030;
  padding: 8px 0;
}

.occ-brand img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.occ-navbar .nav-link {
  position: relative;
  font-weight: 800;
  color: #082750 !important;
  padding: 30px 14px;
  text-transform: uppercase;
  font-size: .88rem;
  letter-spacing: .03em;
}

.occ-navbar .nav-link:hover,
.occ-navbar .nav-link.active {
  color: #0d6efd !important;
}

.occ-navbar .nav-link::after {
  transition: all .3s ease;
}

.occ-navbar .nav-link.active::before,
.occ-navbar .nav-link:hover::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0d6efd, #ffc107);
}

.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0;
  margin-top: 0;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 246, 255, .98));
  border-top: 1px solid rgba(13, 110, 253, .12) !important;
}

.mega-feature-card {
  padding: 32px;
  border-radius: 0px;
  color: #fff;
  background:
    linear-gradient(135deg, #082750, #0d6efd);
  box-shadow: 0 20px 45px rgba(8, 39, 80, .22);
  overflow: hidden;
}

.admissions-feature {
  background:
    linear-gradient(135deg, #7f1d1d, #dc3545);
}

.mega-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.2rem;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, .18), 0 14px 30px rgba(0, 0, 0, .22);
}

.mega-feature-card h5 {
  font-weight: 900;
  margin-bottom: 12px;
}

.mega-feature-card p {
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

.mega-course-link {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 18px;
  border-radius: 0px;
  background: #fff;
  color: #082750;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
  transition: all .3s ease;
}

.mega-course-link:hover {
  transform: translateY(-6px);
  color: #082750;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .13);
}

.mega-flat-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, .16), 0 10px 24px rgba(0, 0, 0, .15);
}

.mega-course-link h6 {
  margin-bottom: 5px;
  font-weight: 900;
}

.mega-course-link small {
  color: #64748b;
  line-height: 1.5;
}

.occ-small-dropdown {
  border-radius: 18px;
  padding: 12px;
}

.occ-small-dropdown .dropdown-item {
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 14px;
}

.occ-small-dropdown .dropdown-item:hover {
  background: #eef6ff;
  color: #0d6efd;
}

/* Hoverable mega menus on desktop */
@media (min-width: 992px) {
  .mega-dropdown:hover>.dropdown-menu {
    display: block;
  }

  .mega-dropdown:hover>.nav-link {
    color: #0d6efd !important;
  }

  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    animation: occMenuFade .22s ease both;
  }

  @keyframes occMenuFade {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

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

/* Mobile */
@media (max-width: 991.98px) {
  .occ-brand img {
    height: 70px;
  }

  .occ-navbar .nav-link {
    padding: 12px 0;
  }

  .occ-navbar .nav-link:hover::before,
  .occ-navbar .nav-link.active::before {
    display: none;
  }

  .mega-menu {
    border-radius: 18px;
    margin: 8px 0 14px;

  }

  .mega-feature-card {
    padding: 24px;
  }

  .mega-course-link {
    padding: 16px;
  }

  .mega-flat-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.45rem;
  }
}


/* FIX: offcanvas must sit above sticky navbar */
.offcanvas {
  z-index: 1095 !important;
}

.offcanvas-backdrop {
  z-index: 1090 !important;
}

/* Gives the offcanvas content breathing space below the sticky navbar */
.offcanvas-body {
  padding-top: 1rem;
}

/* If your offcanvas starts from the top */
.offcanvas.offcanvas-start,
.offcanvas.offcanvas-end {
  top: 0 !important;
}

/* Prevent navbar from covering opened offcanvas */
.occ-navbar {
  z-index: 1050;
}


/* =================== Hover ============================== */
.occ-icon-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .28),
    0 0 25px rgba(255, 255, 255, .12);
}

/* Color Variants */
.occ-icon-yellow i {
  color: #ffc107;
}

.occ-icon-light i {
  color: #ffffff;
}

.occ-icon-blue i {
  color: #0dcaf0;
}

.occ-icon-green i {
  color: #20c997;
}

.occ-icon-purple i {
  color: #d0a6ff;
}

.occ-icon-red i {
  color: #ff7b7b;
}

/* Decorative Glow */
.occ-icon-yellow:hover {
  background: rgba(255, 193, 7, .15);
}

.occ-icon-blue:hover {
  background: rgba(13, 202, 240, .15);
}

.occ-icon-green:hover {
  background: rgba(32, 201, 151, .15);
}

.occ-icon-purple:hover {
  background: rgba(111, 66, 193, .18);
}

.occ-icon-red:hover {
  background: rgba(220, 53, 69, .15);
}

/* Responsive */
@media (max-width: 991.98px) {

  .occ-topbar {
    padding: 20px 0;
  }

  .occ-topbar-title {
    font-size: 1.6rem;
  }

  .occ-top-icons {
    justify-content: center;
  }

  .occ-icon-link {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {

  .occ-topbar {
    padding: 18px 0;
  }

  .occ-topbar-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .occ-topbar-motto {
    font-size: .85rem;
  }

  .occ-icon-link {
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }

  .occ-icon-link i {
    font-size: 1.35rem;
  }

  .occ-icon-link span {
    font-size: .62rem;
  }
}

.topbar {
  background: var(--occ-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  padding: 8px 0;
}



.portal-menu-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(7, 27, 54, .10);
  overflow: hidden;
  transition: .25s ease;
}

.portal-menu-card:hover {
  transform: translateY(-4px);
}

.portal-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  text-decoration: none;
  color: #233044;
}

.portal-link h6 {
  font-weight: 800;
  margin-bottom: 4px;
}

.portal-link p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: .88rem;
}

.portal-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  flex: 0 0 54px;
}


/* ========================= Bottom bar styling =========================== */
.occ-bottom-bar {
  position: relative;
  padding: 5px 0;
  background:
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border-top: 1px solid rgba(13, 110, 253, 0.12);
}

.occ-bottom-item {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  background: #fff;
  padding: 5px;
  border-radius: 0px;
  box-shadow: 0 14px 35px rgba(7, 27, 51, 0.09);
  border: 1px solid rgba(13, 110, 253, 0.08);
  transition: all 0.35s ease;
}

.occ-bottom-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 27, 51, 0.14);
}

.occ-bottom-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.occ-bottom-item h6 {
  margin-bottom: 5px;
  color: #071b33;
  font-weight: 900;
}

.occ-bottom-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.occ-bottom-item a {
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
}

.occ-bottom-item a:hover {
  color: #0d6efd;
}

.occ-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.occ-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  /* color: #fff; */
  color: #0e0d0d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.occ-social-links a:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

.occ-social-links .facebook {
  background: #1877f2;
}

.occ-social-links .youtube {
  background: #ff0000;
}

.occ-social-links .twitter {
  background: #1da1f2;
}

.occ-social-links .linkedin {
  background: #0a66c2;
}

@media (max-width: 767px) {
  .occ-bottom-item {
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .occ-social-links {
    justify-content: center;
  }
}

/* ===================== Floating banner below Home section ============================== */
.occ-floating-banner-wrap {
  position: relative;
  z-index: 20;
  margin-top: -70px;
  /* overlaps upward over home slides */
  margin-bottom: 45px;
}

.occ-floating-banner {
  position: relative;
  padding: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(13, 110, 253, 0.12);
}

.occ-floating-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, .18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, .22), transparent 35%);
  pointer-events: none;
}

.occ-banner-item {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .35s ease;
}

.occ-banner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(13, 110, 253, .16);
}

.occ-banner-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.occ-banner-item h6 {
  font-weight: 900;
  margin-bottom: 3px;
  color: #08234a;
}

.occ-banner-item p {
  margin: 0;
  font-size: .9rem;
  color: #5f6f89;
}

@media (max-width: 991px) {
  .occ-floating-banner-wrap {
    margin-top: -45px;
  }

  .occ-banner-item {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .occ-floating-banner-wrap {
    margin-top: -30px;
  }

  .occ-floating-banner {
    padding: 16px;
    border-radius: 5px;
  }

  .occ-banner-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ===============================    PREMIUM OCC HERO WITH THUMBNAILS ================================ */

:root {
  --occ-primary: #0d6efd;
  --occ-secondary: #ffc107;
  --occ-dark: #07162e;
  --occ-glass: rgba(255, 255, 255, 0.13);
  --occ-border: rgba(255, 255, 255, 0.22);
  --occ-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.hero-section {
  background: var(--occ-dark);
  min-height: 100vh;
}

.hero-carousel,
.carousel-inner,
.carousel-item {
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroKenburns 12s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-slide-1 {
  /* background-image: url("assets/img/banners/college1.jpg"); */
  background-image: url("../img/banners/center-manager1.jpg");
  margin-bottom: 70px;
}

.hero-slide-2 {
  /* background-image: url("assets/img/banners/ict.jpg"); */
  background-image: url("../img/ict/room-with-computers.jpg");
  margin-bottom: 70px;
}

.hero-slide-3 {
  /* background-image: url("assets/img/banners/counselling.jpg"); */
  background-image: url("../img/banners/counselling.jpg");
  margin-bottom: 70px;
}

.hero-slide-4 {
  /* background-image: url("assets/img/banners/safety.jpg"); */
  background-image: url("../img/banners/safety-men.jpg");
}

.hero-slide-5 {
  /* background-image: url("assets/img/banners/online-learning.jpg"); */
  background-image: url("../img/banners/Online-study.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.25), transparent 35%),
    linear-gradient(90deg, rgba(2, 13, 34, 0.94), rgba(2, 13, 34, 0.65), rgba(2, 13, 34, 0.35));
}

/* Top Thumbnail Navigation */
.hero-thumb-nav {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(2, 13, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--occ-shadow);
}

.hero-thumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 122px;
  padding: 8px 12px 8px 8px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s ease;
}

.hero-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.95), rgba(13, 110, 253, 0.9));
  opacity: 0.9;
  transition: width 7s linear;
  z-index: 0;
}

.hero-thumb.active::before {
  width: 100%;
}

.hero-thumb:hover,
.hero-thumb.active {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255, 255, 255, 0.18);
}

.thumb-img,
.thumb-text {
  position: relative;
  z-index: 2;
}

.thumb-img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.thumb-1 {
  /* background-image: url("assets/img/banners/college1.jpg"); */
  background-image: url("../img/banners/center-manager1.jpg");
}

.thumb-2 {
  /* background-image: url("assets/img/banners/ict.jpg"); */
  background-image: url("../img/ict/room-with-computers.jpg");
}

.thumb-3 {
  /* background-image: url("assets/img/banners/counselling.jpg"); */
  background-image: url("../img/banners/counselling.jpg");
}

.thumb-4 {
  /* background-image: url("assets/img/banners/safety.jpg"); */
  background-image: url("../img/banners/safety-men.jpg");
}

.thumb-5 {
  /* background-image: url("assets/img/banners/online-learning.jpg"); */
  background-image: url("../img/banners/Online-study.png");
}

.thumb-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.thumb-text strong {
  font-size: 0.85rem;
  font-weight: 800;
}

.thumb-text small {
  font-size: 0.7rem;
  opacity: 0.88;
}

/* Hero Content */
.hero-title {
  /* font-size: clamp(2.4rem, 5vw, 4.8rem); */
  font-size: 50px;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  text-shadow: 2px 2px 3px black;
  margin-bottom: 1.4rem;
}

.hero-title span {
  color: var(--occ-secondary);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  text-shadow: 2px 2px 3px black;
  font-weight: 700;
  line-height: 1.8;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-btn-primary,
.hero-btn-outline {
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.35s ease;
}

.hero-btn-primary {
  background: var(--occ-secondary);
  color: #111;
  border: 2px solid var(--occ-secondary);
}

.hero-btn-primary:hover {
  transform: translateY(-5px);
  background: #ffd452;
  border-color: #ffd452;
  color: #111;
}

.hero-btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero-btn-outline:hover {
  background: #fff;
  color: #111;
  transform: translateY(-5px);
}

/* Cards */
.hero-glass-card,
.hero-info-panel {
  background: var(--occ-glass);
  border: 1px solid var(--occ-border);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 35px;
  color: #fff;
  text-shadow: 2px 2px 3px black;
  box-shadow: var(--occ-shadow);
}

.hero-info-panel i {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 193, 7, 0.2);
  color: var(--occ-secondary);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.feature-box {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 20px;
  transition: 0.35s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 2rem;
  color: var(--occ-secondary);
}

.feature-box span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.hero-stats,
.hero-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-box,
.mini-card,
.community-badge {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 22px;
  padding: 18px 24px;
  font-weight: 700;
}

.stat-box h3 {
  color: var(--occ-secondary);
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.mini-card i,
.community-badge i {
  color: var(--occ-secondary);
  margin-right: 8px;
}

/* Animations */
.zoom-layer {
  animation: zoomInLayer 1.1s ease both;
}

.slide-up-layer {
  animation: slideUpLayer 1.1s ease both;
}

.slide-down-layer {
  animation: slideDownLayer 1.1s ease both;
}

.floating-card {
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes zoomInLayer {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpLayer {
  from {
    opacity: 0;
    transform: translateY(90px);
  }

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

@keyframes slideDownLayer {
  from {
    opacity: 0;
    transform: translateY(-90px);
  }

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

@keyframes floatCard {

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

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

@keyframes heroKenburns {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.16);
  }
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.38;
  z-index: 1;
  pointer-events: none;
}

.hero-shape-1 {
  width: 360px;
  height: 360px;
  background: #0d6efd;
  top: -120px;
  left: -100px;
}

.hero-shape-2 {
  width: 320px;
  height: 320px;
  background: #ffc107;
  right: -120px;
  bottom: -120px;
}

.hero-shape-3 {
  width: 220px;
  height: 220px;
  background: #20c997;
  top: 45%;
  left: 48%;
}

/* Hide old Bootstrap controls completely */
.custom-control,
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-thumb-nav {
    max-width: calc(100% - 30px);
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-thumb-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    text-align: center;
    padding: 135px 0 70px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 13, 34, 0.94), rgba(2, 13, 34, 0.72));
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats,
  .hero-mini-cards {
    justify-content: center;
  }

  .hero-glass-card,
  .hero-info-panel {
    margin-top: 20px;
  }

  .hero-thumb {
    min-width: 60px;
    padding: 5px;
  }

  .thumb-text {
    display: none;
  }

  .thumb-img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}

@media (max-width: 575px) {
  .hero-thumb-nav {
    top: 14px;
    gap: 4px;
    padding: 8px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-glass-card,
  .hero-info-panel {
    padding: 24px;
    border-radius: 24px;
  }
}


.hero {
  min-height: 92vh;
  background:
    linear-gradient(120deg, rgba(7, 27, 54, .96), rgba(11, 94, 215, .82)),
    url("assets/img/college-students.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 193, 7, .18);
  right: -120px;
  top: 120px;
}

.hero-card {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--occ-radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--occ-shadow);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 94, 215, .1);
  color: var(--occ-primary);
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.card-premium {
  border: 0;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  height: 100%;
  overflow: hidden;
  transition: .3s ease;
}

.card-premium:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--occ-primary), #083b8a);
}

.course-card .course-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(11, 94, 215, .1);
  color: var(--occ-primary);
  font-size: 1.8rem;
}

.feature-list li {
  margin-bottom: 10px;
}

.feature-list i {
  color: var(--occ-green);
  margin-right: 8px;
}

.fees-card {
  border: 0;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  background: #fff;
  height: 100%;
}

.apply-section {
  background:
    linear-gradient(120deg, rgba(7, 27, 54, .96), rgba(11, 94, 215, .88)),
    url("assets/img/online-learning.jpg") center/cover no-repeat;
  color: #fff;
}

.form-card {
  background: #fff;
  color: #233044;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  padding: 35px;
}

.contact-card {
  border-radius: var(--occ-radius);
  background: #fff;
  box-shadow: var(--occ-shadow);
  padding: 30px;
  height: 100%;
}

.login-cta {
  background: var(--occ-dark);
  color: #fff;
  border-radius: 28px;
  box-shadow: var(--occ-shadow);
}

.footer {
  background: var(--occ-dark);
  color: rgba(255, 255, 255, .78);
  padding: 55px 0 25px;
}

.footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}


/* ==============================   EXPLORE OCC SECTION ============================== */

.occ-explore-bg-shape {
  position: absolute;
  border-radius: 10%;
  filter: blur(4px);
  opacity: 0.22;
  animation: occFloatShape 8s ease-in-out infinite;
}

.occ-explore-bg-shape.shape-1 {
  width: 260px;
  height: 260px;
  background: #ffc107;
  top: -90px;
  left: -80px;
}

.occ-explore-bg-shape.shape-2 {
  width: 320px;
  height: 320px;
  background: #0dcaf0;
  right: -120px;
  bottom: -130px;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffc107;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.occ-explore-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  margin-top: 18px;
  margin-bottom: 14px;
}

.occ-explore-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 760px;
  margin: auto;
}

.occ-explore-carousel {
  position: relative;
  padding-bottom: 55px;
}

.occ-explore-card {
  min-height: 440px;
  padding: 45px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.occ-explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: radial-gradient(circle at top right, #fff, transparent 35%);
  pointer-events: none;
}

.occ-explore-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 3px black;
  margin: 18px 0 14px;
}

.occ-explore-card p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 2px 2px 3px black;
  font-size: 1rem;
  line-height: 1.8;
}

.occ-icon-box {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.bg-blue {
  background: linear-gradient(135deg, #0d6efd, #00b4d8);
}

.bg-purple {
  background: linear-gradient(135deg, #6f42c1, #d63384);
}

.bg-orange {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.bg-red {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.bg-green {
  background: linear-gradient(135deg, #198754, #20c997);
}

.bg-teal {
  background: linear-gradient(135deg, #0dcaf0, #0d6efd);
}

.occ-explore-btn {
  margin-top: 18px;
  padding: 13px 24px;
  border-radius: 10px;
  background: #ffc107;
  color: #111;
  font-weight: 800;
  border: none;
  box-shadow: 0 14px 30px rgba(255, 193, 7, 0.32);
}

.occ-explore-btn:hover {
  background: #fff;
  color: #0d6efd;
  transform: translateY(-3px);
}

.occ-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.occ-mini-grid span,
.occ-feature-item,
.occ-process div,
.occ-contact-list p {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 13px 15px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.occ-mini-grid i,
.occ-contact-list i {
  color: #ffc107;
  margin-right: 8px;
}

.occ-feature-panel {
  display: grid;
  gap: 18px;
}

.occ-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.occ-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.occ-stats-row div {
  min-height: 150px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.occ-stats-row strong {
  font-size: 1.5rem;
  color: #ffc107;
}

.occ-stats-row span {
  display: block;
  font-weight: 700;
}

.occ-process {
  display: grid;
  gap: 16px;
}

.occ-process div {
  font-weight: 800;
}

.occ-process span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-right: 12px;
  background: #ffc107;
  color: #111;
}

.occ-notice-card,
.occ-event-box {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.occ-event-box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.occ-event-box>i {
  font-size: 4rem;
  color: #ffc107;
}

.occ-contact-list {
  display: grid;
  gap: 14px;
}

.occ-contact-list p {
  margin: 0;
  font-weight: 700;
}

/* Controls */
.occ-carousel-control {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.occ-carousel-control span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s ease;
}

.occ-carousel-control span:hover {
  background: #ffc107;
  color: #111;
  transform: scale(1.08);
}

.occ-explore-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.occ-explore-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.45;
}

.occ-explore-indicators button.active {
  width: 36px;
  border-radius: 50rem;
  background-color: #ffc107;
  opacity: 1;
}

/* Carousel animation */
.carousel-item.active .occ-explore-card {
  animation: occSlideZoom 0.75s ease both;
}

@keyframes occSlideZoom {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

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

@keyframes occFloatShape {

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

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

/* Responsive */
@media (max-width: 991px) {
  .occ-explore-card {
    padding: 32px;
    min-height: auto;
  }

  .occ-stats-row {
    grid-template-columns: 1fr;
  }

  .occ-carousel-control {
    display: none;
  }
}

@media (max-width: 575px) {
  .occ-explore-section {
    padding: 65px 0;
  }

  .occ-explore-card {
    padding: 26px;
    border-radius: 24px;
  }

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

  .occ-event-box {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===================================    OCC EXPLORE SECTION =================================== */
.occ-explore-section {
  position: relative;
  margin-top: -125px;
  overflow: hidden;
  padding: 50px 0;
  /* min-height: 100vh; */
  min-height: 150px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(3, 22, 52, 0.39), rgba(5, 44, 95, 0.94)),
    /* linear-gradient(135deg, rgba(3, 22, 52, 0.96), rgba(5, 44, 95, 0.94)), */
    /* url("assets/img/banners/hallbg1.jpg") center/cover no-repeat; */
    url("../img/banners/hallbg1.jpg") center/cover no-repeat;
}

/* ===================================    CAROUSEL =================================== */
.occ-explore-carousel {
  position: relative;
  margin-top: 35px;
}

/* ===================================    TOP CONTROLS =================================== */
.occ-carousel-top-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin-bottom: 25px;
}

.occ-top-control {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 10%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 1.3rem;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);

  transition: all 0.35s ease;
}

.occ-top-control:hover {
  background: #ffc107;
  color: #111;
  transform: translateY(-4px) scale(1.08);
}

/* ===================================    INDICATORS =================================== */
.occ-explore-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.occ-explore-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 40%;
  border: none;

  background: rgba(255, 255, 255, 0.45);

  transition: all 0.35s ease;
}

.occ-explore-indicators button.active {
  width: 38px !important;
  border-radius: 50rem;
  background: #ffc107;
}

/* ===================================    SLIDES =================================== */
.occ-explore-card {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 40px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* Animation */
.carousel-item.active .occ-explore-card {
  animation: occSlideFade 0.8s ease;
}

@keyframes occSlideFade {
  from {
    opacity: 0;
    transform: translateY(25px) scale(.98);
  }

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

/* ===================================    CONTENT SPACING =================================== */
.occ-explore-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  margin: 18px 0;
}

.occ-explore-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

/* ===================================    ICON BOX =================================== */
.occ-icon-box {
  width: 85px;
  height: 85px;

  border-radius: 24px;

  display: grid;
  place-items: center;

  font-size: 2.3rem;
  color: #fff;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ===================================    RESPONSIVE =================================== */
@media (max-width: 991px) {

  .occ-explore-section {
    min-height: auto;
    padding: 50px 0;
  }

  .occ-explore-card {
    min-height: auto;
    padding: 30px;
  }

  .occ-carousel-top-controls {
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {

  .occ-explore-card {
    padding: 24px;
    border-radius: 5px;
  }

  .occ-top-control {
    width: 40px;
    height: 40px;
  }

  .occ-carousel-top-controls {
    gap: 10px;
  }

  .occ-explore-indicators button.active {
    width: 28px !important;
  }
}

/* ===============================    OCC COURSES CONTINUOUS SCROLLER ================================ */
.occ-courses-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, .08), rgba(255, 193, 7, .12)),
    #f8fbff;
  overflow: hidden;
}

.occ-course-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.occ-course-slider::before,
.occ-course-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.occ-course-slider::before {
  left: 0;
  background: linear-gradient(to right, #f8fbff, transparent);
}

.occ-course-slider::after {
  right: 0;
  background: linear-gradient(to left, #f8fbff, transparent);
}

.occ-course-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: occCourseScroll 35s linear infinite;
}

.occ-course-slider:hover .occ-course-track {
  animation-play-state: paused;
}

.occ-course-card {
  width: 300px;
  min-height: 310px;
  background: #fff;
  border-radius: 0px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  border: 1px solid rgba(13, 110, 253, .08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.occ-course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, .10), transparent);
  opacity: 0;
  transition: .35s ease;
}

.occ-course-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 26px 65px rgba(15, 23, 42, .18);
}

.occ-course-card:hover::before {
  opacity: 1;
}

.occ-course-icon {
  width: 72px;
  height: 72px;
  border-radius: 0px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  position: relative;
  z-index: 2;
}

.occ-course-tag {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 0px;
  background: rgba(13, 110, 253, .09);
  color: #0d6efd;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.occ-course-card h5 {
  font-weight: 800;
  color: #17233c;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.occ-course-card p {
  color: #64748b;
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.occ-course-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.occ-course-actions .btn {
  border-radius: 0px;
  font-weight: 700;
  padding: 8px 14px;
}

.bg-purple {
  background: #7c3aed;
}

.btn-purple {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.btn-purple:hover {
  background: #6d28d9;
  color: #fff;
}

.btn-outline-purple {
  color: #7c3aed;
  border-color: #7c3aed;
}

.btn-outline-purple:hover {
  background: #7c3aed;
  color: #fff;
}

@keyframes occCourseScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .occ-course-card {
    width: 270px;
  }

  .occ-course-track {
    animation-duration: 28s;
  }
}

/* ===============================    OCC COURSES SECTION ================================ */
.occ-courses-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, .06), rgba(255, 193, 7, .10)),
    #f8fbff;
  overflow: hidden;
}

/* CONTROLS */
.occ-course-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.occ-scroll-btn {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 20%;
  background: #fff;
  color: #0d6efd;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 35px rgba(15, 23, 42, .15);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.occ-scroll-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  opacity: 0;
  transition: .35s ease;
}

.occ-scroll-btn i {
  position: relative;
  z-index: 2;
}

.occ-scroll-btn:hover {
  transform: translateY(-5px) scale(1.05);
  color: #fff;
}

.occ-scroll-btn:hover::before {
  opacity: 1;
}

/* SLIDER */
.occ-course-slider {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 20px;
}

.occ-course-slider::-webkit-scrollbar {
  display: none;
}

.occ-course-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 15px 5px;
}

/* COURSE CARD */
.occ-course-card {
  width: 310px;
  min-height: 320px;
  background: #fff;
  border-radius: 0px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  border: 1px solid rgba(13, 110, 253, .08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.occ-course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, .10), transparent);
  opacity: 0;
  transition: .35s ease;
}

.occ-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.occ-course-card:hover::before {
  opacity: 1;
}

/* ICON */
.occ-course-icon {
  width: 74px;
  height: 74px;
  border-radius: 0px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}

/* TAG */
.occ-course-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 0px;
  background: rgba(13, 110, 253, .10);
  color: #0d6efd;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* TEXT */
.occ-course-card h5 {
  font-weight: 800;
  color: #17233c;
  margin-bottom: 12px;
}

.occ-course-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ACTIONS */
.occ-course-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.occ-course-actions .btn {
  border-radius: 12px;
  font-weight: 700;
  padding: 8px 15px;
}

/* MOBILE */
@media (max-width: 768px) {

  .occ-course-card {
    width: 270px;
  }

  .occ-scroll-btn {
    width: 48px;
    height: 48px;
  }

}







/* =============================== OCC INFO / CATEGORY SECTION ================================ */

.occ-info-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 110px;
  color: #fff;
  background:
    linear-gradient(rgba(2, 17, 41, .82), rgba(2, 17, 41, .9)),
    /* url("assets/img/banners/school-students-digital-art2.jpg") center / cover fixed no-repeat; */
    url("../img/banners/school-students-digital-art2.jpg") center / cover fixed no-repeat;
}

.occ-info-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, .25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(13, 202, 240, .2), transparent 35%);
  z-index: 0;
}

.occ-info-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: .35;
  z-index: 0;
}

.occ-glow-1 {
  top: 80px;
  left: -80px;
  background: #ffc107;
}

.occ-glow-2 {
  right: -90px;
  bottom: 80px;
  background: #0dcaf0;
}

.occ-category-panel,
.occ-notice-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(8, 39, 80, .92), rgba(3, 18, 44, .88));
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .45);
}

.occ-category-panel {
  padding: 36px;
  border-radius: 0px;
}

.occ-notice-card {
  padding: 38px;
  border-radius: 30px;
}

.occ-mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 5px;
  background: rgba(255, 193, 7, .15);
  border: 1px solid rgba(255, 193, 7, .4);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.occ-section-title,
.occ-notice-title {
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}

.occ-section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.occ-notice-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.occ-section-text,
.occ-notice-lead {
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
}

.occ-category-card {
  position: relative;
  display: block;
  min-height: 205px;
  padding: 26px 22px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  transition: all .35s ease;
}

.occ-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
  z-index: 0;
}

.occ-category-card>* {
  position: relative;
  z-index: 1;
}

.occ-category-card:hover {
  transform: translateY(-10px);
  color: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, .4);
}

.occ-category-card h6 {
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.occ-category-card p {
  margin-bottom: 12px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
}

.occ-card-link {
  font-size: .8rem;
  font-weight: 800;
  color: #ffc107;
}

.occ-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 2rem;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, .18), 0 12px 25px rgba(0, 0, 0, .25);
}

.occ-btn {
  border-radius: 5px;
  padding: 11px 22px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
}

.occ-highlight-box {
  display: flex;
  gap: 16px;
  padding: 18px;
  margin: 24px 0;
  border-radius: 20px;
  background: rgba(255, 193, 7, .14);
  border: 1px solid rgba(255, 193, 7, .35);
}

.occ-highlight-box i {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffc107;
  color: #111827;
  font-size: 1.8rem;
}

.occ-highlight-box h6 {
  margin-bottom: 5px;
  font-weight: 900;
}

.occ-highlight-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
}

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

.occ-check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .9);
}

.occ-check-list i {
  color: #ffc107;
  font-size: 1.15rem;
}

.occ-certificate-wrapper {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.occ-certificate-img {
  border-radius: 30px;
  border: 8px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.occ-logo-float {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 125px;
  height: 125px;
  padding: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: rgba(2, 17, 41, .82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

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

.occ-certificate-float {
  position: absolute;
  right: 30px;
  bottom: -35px;
  max-width: 310px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(3, 18, 44, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  text-align: left;
}

.occ-certificate-float span {
  display: block;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 8px;
}

.occ-certificate-float a {
  display: inline-flex;
  align-items: center;
  color: #ffc107;
  font-weight: 800;
  text-decoration: none;
}

.occ-certificate-float a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .occ-info-section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .occ-category-panel,
  .occ-notice-card {
    padding: 26px;
    border-radius: 0px;
  }

  .occ-category-card {
    max-width: 320px;
    min-height: 210px;
  }

  .occ-certificate-img {
    border-radius: 22px;
  }
}

@media (max-width: 575.98px) {

  .occ-category-panel,
  .occ-notice-card {
    padding: 22px 18px;
  }

  .occ-highlight-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .occ-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================    OCC CATEGORY PANEL ================================ */

.occ-category-panel {
  position: relative;
  margin-top: -55px;
  margin-bottom: 40px;
  z-index: 10;
}

.occ-category-shell {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 5px;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.28), transparent 34%),
    linear-gradient(135deg, #07162e 0%, #0d3b75 55%, #092044 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.occ-category-shell::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.occ-category-shell::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 42%;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.16);
}

.occ-category-shell>.row {
  position: relative;
  z-index: 2;
}

/* Left Intro */
.occ-category-intro {
  padding: 8px 6px;
}

.occ-section-title {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
}

.occ-section-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

.occ-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.occ-btn-warning,
.occ-btn-light {
  border-radius: 5px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.occ-btn-warning {
  background: #ffc107;
  color: #111;
  border: 2px solid #ffc107;
}

.occ-btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.occ-btn-warning:hover,
.occ-btn-light:hover {
  transform: translateY(-4px);
}

.occ-btn-light:hover {
  background: #fff;
  color: #111;
}

/* Cards */
.occ-category-card {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  text-align: left;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: #182235;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
  transition: 0.35s ease;
}

.occ-category-card:hover {
  transform: translateY(-8px);
  color: #182235;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.occ-category-card h6 {
  margin: 12px 0 7px;
  font-size: 1rem;
  font-weight: 900;
}

.occ-category-card p {
  margin: 0;
  color: #5b6475;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Flat Icons */
.occ-flat-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: inset 0 -7px 14px rgba(0, 0, 0, 0.12);
}

.occ-icon-blue {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

.occ-icon-green {
  background: linear-gradient(135deg, #198754, #51cf66);
}

.occ-icon-orange {
  background: linear-gradient(135deg, #f59f00, #ffd43b);
  color: #111;
}

.occ-icon-red {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.occ-icon-cyan {
  background: linear-gradient(135deg, #0dcaf0, #66d9e8);
  color: #06343f;
}

.occ-icon-purple {
  background: linear-gradient(135deg, #6f42c1, #b197fc);
}

.occ-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #0d6efd;
  font-size: 0.84rem;
  font-weight: 900;
}

.occ-card-link i {
  transition: 0.3s ease;
}

.occ-category-card:hover .occ-card-link i {
  transform: translateX(5px);
}

/* Compact Controls */
.occ-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.occ-control-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #07162e;
  font-size: 1rem;
  transition: 0.3s ease;
}

.occ-control-btn.active,
.occ-control-btn:hover {
  background: #ffc107;
  color: #111;
  transform: translateY(-3px);
}

/* Carousel animation */
#categoryCarousel .carousel-item {
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Responsive */
@media (max-width: 991px) {
  .occ-category-panel {
    margin-top: 20px;
  }

  .occ-category-shell {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .occ-category-intro {
    text-align: center;
  }

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

  .occ-category-card {
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  .occ-category-card {
    min-height: auto;
  }
}



/* =============================== COLLEGE INFO / NOTICES SECTION ================================ */

.occ-notices-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    linear-gradient(135deg, #eef6ff 0%, #ffffff 45%, #fff8e1 100%);
}

.occ-notices-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, .14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, .22), transparent 35%);
  pointer-events: none;
}

.occ-notices-header {
  max-width: 850px;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #0d6efd, #082750);
  color: #110247;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(13, 110, 253, .28);
}

.occ-notices-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #082750;
  text-transform: uppercase;
}

.occ-notices-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.occ-featured-notice {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 39, 80, .96), rgba(13, 110, 253, .92));
  color: #fff;
  box-shadow: 0 25px 70px rgba(8, 39, 80, .32);
  overflow: hidden;
}

.occ-featured-notice::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 193, 7, .28);
}

.occ-featured-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #ffc107;
  color: #082750;
  font-size: 2.3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.occ-featured-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffc107;
}

.occ-featured-notice h3 {
  font-weight: 900;
  margin-bottom: 8px;
}

.occ-featured-notice p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
}

.occ-featured-btn {
  position: relative;
  z-index: 2;
  border-radius: 5px;
  padding: 12px 26px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
}

.occ-notice-card {
  position: relative;
  height: 100%;
  padding: 30px;
  /* text-shadow: 2px 2px 3px black; */
  border-radius: 15px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .09);
  overflow: hidden;
  transition: all .35s ease;
}

.occ-notice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: #0d6efd;
}

.occ-notice-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(13, 110, 253, .08);
  transition: all .35s ease;
}

.occ-notice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

.occ-notice-card:hover::after {
  transform: scale(1.4);
}

.occ-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.occ-notice-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  font-size: 2rem;
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, .16), 0 12px 26px rgba(0, 0, 0, .16);
}

.occ-card-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .05);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.occ-notice-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: #082750;
  font-size: 1.25rem;
  font-weight: 900;
}

.occ-notice-card p {
  position: relative;
  z-index: 2;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 24px;
}

.occ-read-more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  font-weight: 900;
  color: #0d6efd;
  text-decoration: none;
}

.occ-read-more:hover {
  color: #082750;
}

.occ-border-blue::before {
  background: linear-gradient(90deg, #0d6efd, #5ea1ff);
}

.occ-border-green::before {
  background: linear-gradient(90deg, #198754, #75d69c);
}

.occ-border-cyan::before {
  background: linear-gradient(90deg, #0dcaf0, #68e1fd);
}

.occ-border-warning::before {
  background: linear-gradient(90deg, #ffc107, #ffda6a);
}

.occ-border-red::before {
  background: linear-gradient(90deg, #dc3545, #ff7b8a);
}

.occ-border-purple::before {
  background: linear-gradient(90deg, #6f42c1, #a98eda);
}

@media (max-width: 767.98px) {
  .occ-notices-section {
    padding: 70px 0;
  }

  .occ-featured-notice {
    padding: 26px;
    text-align: center;
  }

  .occ-featured-notice .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .occ-notice-card {
    padding: 26px 22px;
  }

  .occ-card-top {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}

/* ==================== carousel cards styling ===================== */
.occ-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 245px;
  padding: 28px 24px;
  border-radius: 0px;
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
}

.occ-category-card:hover {
  transform: translateY(-8px);
  color: #fff;
}

.occ-category-card h6 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 18px;
  margin-bottom: 10px;
}

.occ-category-card p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 18px;
}

.occ-card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
}

.occ-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
}

.occ-carousel-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 767px) {
  #categoryCarousel .col-md-4 {
    margin-bottom: 15px;
  }

  .occ-category-card {
    min-height: auto;
  }
}




/* =============================== PREMIUM OCC FOOTER ================================ */

.occ-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 25px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 39, 80, .98), rgba(3, 18, 44, .98)),
    url("assets/img/banners/school-students-digital-art2.jpg") center / cover no-repeat;
}

.occ-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, .22), transparent 33%),
    radial-gradient(circle at bottom right, rgba(13, 202, 240, .16), transparent 35%);
  pointer-events: none;
}

.occ-footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  pointer-events: none;
}

.occ-footer-glow-1 {
  width: 260px;
  height: 260px;
  background: #ffc107;
  top: -90px;
  left: -80px;
}

.occ-footer-glow-2 {
  width: 300px;
  height: 300px;
  background: #0dcaf0;
  right: -100px;
  bottom: 80px;
}

.occ-footer-top {
  position: relative;
  z-index: 2;
}

.occ-footer-brand-card,
.occ-footer-links-card,
.occ-footer-info-card {
  padding: 30px;
  border-radius: 0px;
  background: rgba(255, 255, 255, .08);
  /* border: 1px solid rgba(255, 255, 255, .16); */
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, .25);
}

.occ-footer-logo {
  width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.occ-footer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.occ-footer-brand-card h4 {
  font-weight: 900;
  margin-bottom: 12px;
}

.occ-footer-brand-card p,
.occ-footer-info-card p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.occ-footer-contact {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.occ-footer-contact a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-weight: 600;
}

.occ-footer-contact a:hover {
  color: #ffc107;
}

.occ-footer-contact i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.occ-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.occ-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #082750;
  background: #fff;
  font-size: 1.25rem;
  transition: all .35s ease;
}

.occ-socials a:hover {
  transform: translateY(-6px);
  color: #fff;
  background: #ffc107;
}

.occ-footer-links-card h5 {
  position: relative;
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.occ-footer-links-card h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  border-radius: 10px;
  background: #ffc107;
}

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

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

.occ-footer-links a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 700;
  transition: all .3s ease;
}

.occ-footer-links a i {
  color: #ffc107;
  font-size: 1rem;
}

.occ-footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

.occ-footer-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.occ-footer-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}

.occ-footer-info-card:hover .occ-footer-image img {
  transform: scale(1.08);
}

.occ-footer-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .2));
}

.occ-footer-image-overlay span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 193, 7, .92);
  color: #082750;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.occ-footer-image-overlay h5 {
  font-weight: 900;
  margin-bottom: 0;
}

.occ-login-box {
  padding: 18px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .14);
}

.occ-login-box h6 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.occ-footer-btn {
  border-radius: 5px;
  font-weight: 900;
  padding: 10px 18px;
}

.occ-footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 35px;
  padding: 22px 28px;
  border-radius: 5px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .12);
}

.occ-footer-bottom p {
  color: rgba(255, 255, 255, .78);
}

.occ-footer-bottom a {
  color: #ffc107;
  font-weight: 800;
  text-decoration: none;
}

.occ-footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .occ-footer {
    padding-top: 60px;
  }

  .occ-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .occ-footer-brand-card {
    text-align: center;
  }

  .occ-footer-contact a {
    justify-content: center;
  }

  .occ-socials {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {

  .occ-footer-brand-card,
  .occ-footer-links-card,
  .occ-footer-info-card {
    padding: 24px 20px;
    border-radius: 5px;
  }

  .occ-footer-bottom {
    padding: 20px;
  }
}

/* ============================= End ============================ */


/* =============================== ABOUT OCC PAGE STYLING ================================ */

.occ-about-section,
.occ-why-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fbff, #eef6ff 45%, #fff8e1);
}

.occ-why-section {
  background: #fff;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #0d6efd, #082750);
  /* color: #fff; */
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 12px 30px rgba(13, 110, 253, .28);
}

.occ-about-title,
.occ-values-title {
  color: #082750;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.occ-about-text,
.occ-section-subtitle {
  color: #64748b;
  line-height: 1.85;
  font-size: 1.02rem;
}

.occ-section-subtitle {
  max-width: 820px;
  margin: 12px auto 0;
}

.occ-text-link {
  color: #0d6efd;
  font-weight: 800;
  text-decoration: none;
}

.occ-text-link:hover {
  color: #082750;
  text-decoration: underline;
}

/* Statistics */
.occ-stats-box {
  padding: 28px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, #082750, #0d6efd);
  box-shadow: 0 25px 70px rgba(8, 39, 80, .22);
}

.occ-stats-box h4 {
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.occ-stat-item {
  padding: 18px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
}

.occ-stat-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 16px;
  color: #fff;
  font-size: 1.4rem;
}

.occ-stat-item h3 {
  font-weight: 900;
  margin-bottom: 4px;
}

.occ-stat-item p {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

/* Image */
.occ-about-image-wrapper,
.occ-why-image-wrapper {
  position: relative;
}

.occ-about-image,
.occ-why-image {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.occ-experience-card {
  position: absolute;
  left: 25px;
  top: 25px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 24px;
  color: #fff;
  background: rgba(8, 39, 80, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

.occ-experience-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #ffc107;
  color: #082750;
  font-size: 1.6rem;
}

.occ-experience-card h4 {
  margin: 0;
  font-weight: 900;
}

/* Mission */
.occ-mission-card {
  padding: 28px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.occ-mission-item {
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.occ-mission-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.occ-mission-item h4 {
  color: #082750;
  font-weight: 900;
  text-transform: uppercase;
}

.occ-mission-item p {
  margin-bottom: 0;
  color: #64748b;
  line-height: 1.75;
}

.occ-flat-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: inset 0 -7px 14px rgba(0, 0, 0, .15), 0 12px 28px rgba(0, 0, 0, .15);
}

/* Values */
.occ-value-card {
  height: 100%;
  padding: 30px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .15);
  transition: all .35s ease;
}

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

.occ-value-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .18);
  font-size: 2rem;
}

.occ-value-card h5 {
  font-weight: 900;
  margin-bottom: 12px;
}

.occ-value-card p {
  color: rgba(255, 255, 255, .84);
  line-height: 1.7;
  margin-bottom: 0;
}

.occ-value-blue {
  background: linear-gradient(135deg, #0d6efd, #082750);
}

.occ-value-green {
  background: linear-gradient(135deg, #198754, #075f42);
}

.occ-value-orange {
  background: linear-gradient(135deg, #f59f00, #b45309);
}

.occ-value-purple {
  background: linear-gradient(135deg, #6f42c1, #3b0764);
}

/* Why Choose Us */
.occ-why-feature {
  padding: 26px;
  margin-bottom: 24px;
  border-radius: 5px;
  /* background: #fff; */
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  transition: all .35s ease;
}

.occ-why-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(15, 23, 42, .14);
}

.occ-why-feature h4 {
  color: #082750;
  font-weight: 900;
  margin-top: 18px;
}

.occ-why-feature p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

.occ-why-floating-card {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 82%;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 5px;
  background: rgba(8, 39, 80, .92);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
}

.occ-why-floating-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffc107;
  color: #082750;
  font-size: 1.7rem;
}

.occ-why-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 900;
}

.occ-why-floating-card small {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 991.98px) {

  .occ-about-section,
  .occ-why-section {
    padding: 70px 0;
  }

  .occ-why-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: -45px auto 20px;
  }
}

@media (max-width: 575.98px) {

  .occ-stats-box,
  .occ-mission-card,
  .occ-value-card,
  .occ-why-feature {
    border-radius: 5px;
  }

  .occ-mission-item {
    flex-direction: column;
  }

  .occ-experience-card {
    left: 14px;
    top: 14px;
    padding: 14px;
  }

  .occ-experience-card h4 {
    font-size: 1rem;
  }
}

/* ================================= OCC TEAM SECTION ============================================= */
.occ-team-section {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, .12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 193, 7, .16), transparent 35%),
    #f7f9fc;
  position: relative;
  overflow: hidden;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0d6efd, #084298);
  /* color: #fff; */
  padding: .65rem 1.2rem;
  border-radius: 5px;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(13, 110, 253, .28);
}

.occ-director-card,
.occ-team-card,
.occ-join-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  border: 1px solid rgba(15, 23, 42, .06);
}

.occ-director-img-wrap {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.occ-director-img-wrap img,
.occ-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occ-director-img-wrap img {
  transition: transform .7s ease;
}

.occ-director-card:hover .occ-director-img-wrap img {
  transform: scale(1.06);
}

.occ-director-ribbon {
  position: absolute;
  opacity: .9;
  left: 20px;
  bottom: 20px;
  background: rgba(13, 110, 253, .92);
  color: #fff;
  padding: .65rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.occ-director-body {
  padding: 2rem;
  position: relative;
}

.occ-role-icon,
.occ-flat-icon {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
}

.occ-role-icon {
  margin-top: -58px;
  margin-bottom: 1rem;
  background: #fff;
}

.occ-mini-stat {
  padding: .85rem .5rem;
  border-radius: 18px;
}

.occ-mini-stat i {
  display: block;
  font-size: 1.25rem;
  margin-bottom: .35rem;
}

.occ-mini-stat strong {
  display: block;
  font-size: .95rem;
}

.occ-mini-stat span {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.occ-team-accordion .accordion-item {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}

.occ-accordion-btn {
  background: linear-gradient(135deg, #ffffff, #eef5ff);
  padding: 1.2rem 1.4rem;
  font-size: 1.05rem;
  color: #102a43;
}

.occ-accordion-btn:not(.collapsed) {
  color: #0d6efd;
  box-shadow: none;
}

.occ-team-card {
  transition: transform .35s ease, box-shadow .35s ease;
}

.occ-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
}

.occ-team-img {
  height: 290px;
  position: relative;
  overflow: hidden;
}

.occ-team-img img {
  transition: transform .65s ease;
}

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

.occ-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 66, 152, .88), rgba(13, 110, 253, .78));
  color: #fff;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: all .35s ease;
}

.occ-team-card:hover .occ-team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.occ-team-overlay h6 {
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: .4rem;
}

.occ-team-overlay p {
  font-size: .86rem;
  margin-bottom: 1rem;
}

.occ-team-info {
  padding: 1.25rem;
  text-align: center;
}

.occ-team-info h5 {
  font-weight: 800;
  margin: .75rem 0 .25rem;
  color: #102a43;
}

.occ-team-info p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.occ-role-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 50rem;
  font-size: .74rem;
  font-weight: 800;
}

.occ-join-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(25, 135, 84, .08), rgba(13, 110, 253, .08)),
    #fff;
}

.occ-join-card h5 {
  font-weight: 800;
  margin-top: 1rem;
}

.occ-join-card p {
  color: #6c757d;
}

@media (max-width: 991.98px) {

  .occ-director-img-wrap,
  .occ-team-img {
    height: 340px;
  }
}

@media (max-width: 575.98px) {

  .occ-director-body,
  .accordion-body,
  .occ-join-card {
    padding: 1.25rem !important;
  }

  .occ-director-img-wrap,
  .occ-team-img {
    height: 300px;
  }
}


.occ-about-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.occ-about-bg {
  /* background-image: url("assets/img/banners/center-manager2.jpg"); */
  background-image: url("../img/banners/school-students-digital-art2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

.occ-about-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* .occ-about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(4, 20, 38, 0.78),
    rgba(4, 20, 38, 0.78)
  );
  z-index: 1;
} */

/* ================================    OCC ABOUT / HISTORY SECTION ================================ */

.occ-about-history-section {
  background:
    linear-gradient(135deg, rgba(2, 24, 43, 0.50), rgba(0, 89, 120, 0.50)),
    /* linear-gradient(135deg, rgba(2, 24, 43, 0.247), rgba(0, 89, 120, 0.84)), */
    url("../img/banners/school-students-digital-art2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}

.occ-about-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 193, 7, 0.25), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(13, 202, 240, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(3, 52, 74, 0.72));
  z-index: 0;
}

.occ-about-shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.28;
  filter: blur(4px);
  z-index: 1;
}

.occ-about-shape-1 {
  width: 180px;
  height: 180px;
  background: #ffc107;
  top: 8%;
  right: 6%;
}

.occ-about-shape-2 {
  width: 260px;
  height: 260px;
  background: #0dcaf0;
  left: -80px;
  bottom: -80px;
}

.z-2 {
  z-index: 2;
}

/* ============== Badge ==================== */

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.25);
}

/* Typography */

.occ-about-title,
.occ-panel-title {
  font-weight: 900;
  color: #fff;
  margin: 18px 0;
  line-height: 1.12;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.occ-about-title {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.occ-panel-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.occ-about-text {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* Feature List */

.occ-feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.occ-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.11);
  border-left: 4px solid #ffc107;
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.occ-feature-list i {
  color: #ffc107;
  margin-top: 2px;
}

/* Cards */

.occ-info-card,
.occ-timeline-panel,
.occ-contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.occ-info-card {
  padding: 28px;
  transition: all 0.35s ease;
  min-height: 220px;
}

.occ-info-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.occ-icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.65rem;
  margin-bottom: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.occ-info-card h5 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

.occ-info-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Timeline */

.occ-timeline-panel {
  padding: 32px;
  max-height: 590px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffc107 rgba(255, 255, 255, 0.15);
}

.occ-timeline-panel::-webkit-scrollbar {
  width: 7px;
}

.occ-timeline-panel::-webkit-scrollbar-thumb {
  background: #ffc107;
}

.occ-timeline {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  position: relative;
}

.occ-timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(#ffc107, #0dcaf0);
}

.occ-timeline li {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.occ-timeline-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.occ-timeline-content {
  padding: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  width: 100%;
}

.occ-timeline-content span {
  display: inline-block;
  color: #ffc107;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.occ-timeline-content h6 {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.occ-timeline-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  line-height: 1.65;
}

/* Contact Panel */

.occ-contact-panel {
  padding: 38px;
}

.occ-contact-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.occ-contact-highlights {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.occ-contact-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
}

.occ-contact-highlights i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffc107;
  color: #111;
}

.occ-more-btn {
  border-radius: 0;
  font-weight: 900;
  padding: 12px 22px;
}

/* Form */

.occ-enquiry-form {
  background: rgba(255, 255, 255, 0.94);
  padding: 26px;
  color: #132033;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.occ-enquiry-form .form-label {
  font-weight: 800;
  color: #132033;
}

.occ-input-group {
  position: relative;
}

.occ-input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0d6efd;
  z-index: 2;
}

.occ-input-group .form-control {
  padding-left: 42px;
}

.occ-enquiry-form .form-control {
  border-radius: 0;
  border: 1px solid #dce5f0;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: none;
}

.occ-enquiry-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.18);
}

.occ-enquiry-form textarea {
  resize: none;
}

.occ-enquiry-form .btn {
  border-radius: 0;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  color: #fff;
  border: none;
  font-weight: 900;
  padding: 13px 20px;
}

.occ-enquiry-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.28);
}

/* Responsive */

@media (max-width: 991px) {
  .occ-about-history-section {
    background-attachment: scroll;
  }

  .occ-timeline-panel,
  .occ-contact-panel,
  .occ-info-card {
    padding: 24px;
  }

  .occ-timeline-panel {
    max-height: none;
  }
}

@media (max-width: 575px) {
  .occ-about-title {
    font-size: 2rem;
  }

  .occ-timeline li {
    gap: 13px;
  }

  .occ-timeline-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .occ-timeline::before {
    left: 22px;
  }

  .occ-contact-panel {
    padding: 22px;
  }

  .occ-enquiry-form {
    padding: 20px;
  }
}

/* =============================== PREMIUM TESTIMONIALS ================================ */

.occ-testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  color: #fff;
  background:
    linear-gradient(rgba(6, 27, 54, .86), rgba(6, 27, 54, .92)),
    /* url("assets/img/banners/hallbg1.jpg") center / cover fixed no-repeat; */
    url("../img/banners/hallbg1.jpg") center / cover fixed no-repeat;
}

.occ-testimonials-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, .18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(13, 202, 240, .16), transparent 35%);
  pointer-events: none;
}

.occ-testimonial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .3;
  pointer-events: none;
}

.occ-glow-left {
  width: 280px;
  height: 280px;
  background: #ffc107;
  left: -90px;
  top: 80px;
}

.occ-glow-right {
  width: 300px;
  height: 300px;
  background: #0dcaf0;
  right: -110px;
  bottom: 80px;
}

.occ-testimonial-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 5px;
  background: rgba(255, 193, 7, .15);
  border: 1px solid rgba(255, 193, 7, .4);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.occ-testimonial-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.occ-testimonial-subtitle {
  max-width: 680px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
}

.occ-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.occ-control-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.occ-control-btn:hover {
  background: #ffc107;
  color: #082750;
  transform: translateY(-4px);
}

.occ-testimonial-card {
  position: relative;
  height: 100%;
  padding: 34px 30px;
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
  transition: all .35s ease;
}

.occ-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 85px rgba(0, 0, 0, .36);
}

.occ-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
  pointer-events: none;
}

.occ-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255, 255, 255, .24);
  font-size: 4rem;
}

.occ-student-photo-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.occ-student-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .85);
}

.occ-program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -38px auto 18px;
  position: relative;
  z-index: 3;
  border-radius: 18px;
  color: #fff;
  font-size: 1.55rem;
  border: 4px solid rgba(255, 255, 255, .95);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.occ-testimonial-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, .92);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
}

.occ-rating {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: #ffc107;
  letter-spacing: 2px;
}

.occ-testimonial-card h5 {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 900;
}

.occ-testimonial-card small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.occ-card-green {
  background: linear-gradient(135deg, rgba(25, 135, 84, .92), rgba(6, 95, 70, .92));
}

.occ-card-blue {
  background: linear-gradient(135deg, rgba(13, 110, 253, .92), rgba(8, 39, 80, .92));
}

.occ-card-purple {
  background: linear-gradient(135deg, rgba(111, 66, 193, .92), rgba(59, 7, 100, .92));
}

.occ-card-orange {
  background: linear-gradient(135deg, rgba(245, 159, 0, .92), rgba(180, 83, 9, .92));
}

.occ-card-cyan {
  background: linear-gradient(135deg, rgba(13, 202, 240, .92), rgba(7, 89, 133, .92));
}

.occ-card-red {
  background: linear-gradient(135deg, rgba(220, 53, 69, .92), rgba(127, 29, 29, .92));
}

.occ-testimonial-indicators {
  position: static;
  margin: 35px 0 0;
}

.occ-testimonial-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, .55);
  border: 0;
  opacity: 1;
  transition: all .3s ease;
}

.occ-testimonial-indicators .active {
  width: 38px;
  background-color: #ffc107;
}

@media (max-width: 991.98px) {
  .occ-testimonials-section {
    padding: 75px 0;
    background-attachment: scroll;
  }

  .occ-testimonial-card {
    padding: 30px 22px;
  }
}

@media (max-width: 575.98px) {
  .occ-student-photo-wrap {
    width: 130px;
    height: 130px;
  }

  .occ-quote-icon {
    font-size: 3rem;
  }
}

/* ============================== Courses Page Styling ================================== */

.occ-course-catalogue {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.occ-course-badge {
  display: inline-flex;
  align-items: center;
  background: #0d6efd;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.25);
}

.occ-course-title {
  font-weight: 900;
  color: #071b33;
  font-size: clamp(2rem, 4vw, 3rem);
}

.occ-course-subtitle {
  max-width: 850px;
  color: #64748b;
  font-size: 1.05rem;
}

.occ-category-tabs {
  gap: 12px;
}

.occ-category-tabs .nav-link {
  border: 2px ridge;
  border-radius: 10px;
  padding: 12px 24px;
  background: #fff;
  color: #334155;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.08);
}

.occ-category-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff;
}

.occ-category-header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 22px 55px rgba(7, 27, 51, 0.16);
}

.occ-category-header span {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.occ-category-header h3 {
  margin: 0;
  font-weight: 900;
}

.occ-category-header p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.electrical-theme {
  background: linear-gradient(135deg, #071b33, #f59f00);
}

.business-theme {
  background: linear-gradient(135deg, #064e3b, #198754);
}

.ict-theme {
  background: linear-gradient(135deg, #071b33, #0d6efd);
}

.health-theme {
  background: linear-gradient(135deg, #7f1d1d, #dc3545);
}

.occ-thumbnail-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  margin-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.occ-thumbnail-strip::-webkit-scrollbar {
  height: 8px;
}

.occ-thumbnail-strip::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 50px;
}

.occ-course-thumb {
  /* min-width: 190px; */
  min-width: 143px;
  /* max-width: 190px; */
  max-width: 143px;
  border: 0;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  text-align: left;
  box-shadow: 0 14px 35px rgba(7, 27, 51, 0.12);
  scroll-snap-align: start;
  transition: all 0.35s ease;
}

.occ-course-thumb:hover,
.occ-course-thumb.active {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(7, 27, 51, 0.18);
}

.occ-course-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.occ-course-thumb span {
  display: block;
  padding: 14px;
  font-size: 0.9rem;
  font-weight: 900;
  color: #071b33;
}

.occ-outline-wrapper {
  margin-top: 10px;
}

.occ-course-outline {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(7, 27, 51, 0.12);
}

.occ-outline-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.occ-outline-content {
  padding: 38px;
}

.occ-level-badge {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.occ-outline-content h4 {
  font-weight: 900;
  color: #071b33;
  margin-bottom: 14px;
}

.occ-outline-content p {
  color: #64748b;
  font-size: 1rem;
}

.occ-outline-content h6 {
  font-weight: 900;
  color: #071b33;
  margin-top: 22px;
}

.occ-outline-content ul {
  padding-left: 20px;
  color: #475569;
}

.occ-outline-content li {
  margin-bottom: 7px;
}

.occ-outline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.occ-outline-grid div {
  background: #f8fafc;
  border-radius: 18px;
  padding: 16px;
}

.occ-outline-grid i {
  color: #0d6efd;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}

.occ-outline-grid strong {
  display: block;
  color: #071b33;
  font-size: 0.9rem;
}

.occ-outline-grid span {
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .occ-outline-img {
    min-height: 280px;
  }

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

@media (max-width: 767px) {
  .occ-category-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .occ-course-thumb {
    min-width: 165px;
    max-width: 165px;
  }

  .occ-course-thumb img {
    height: 100px;
  }

  .occ-outline-content {
    padding: 26px;
  }
}


/* =============== Course outline ==================== */
.occ-course-outline {
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 110, 253, .12);
}

.occ-outline-image-wrap {
  height: 100%;
  min-height: 470px;
  position: relative;
  overflow: hidden;
}

.occ-outline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occ-outline-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 32, .85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.occ-outline-img-overlay span {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 700;
}

.occ-outline-content {
  padding: 45px;
}

.occ-level-badge {
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
}

.occ-outline-content h4 {
  font-weight: 800;
  color: #10233f;
  margin-bottom: 15px;
}

.occ-outline-content p {
  color: #5f6f89;
  line-height: 1.8;
}

.occ-outline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.occ-outline-grid div {
  background: #f4f8ff;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(13, 110, 253, .1);
}

.occ-outline-grid i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.occ-outline-grid strong {
  display: block;
  color: #10233f;
}

.occ-outline-grid span {
  font-size: .9rem;
  color: #667085;
}

.occ-course-list {
  padding-left: 0;
  list-style: none;
}

.occ-course-list li {
  padding: 10px 0 10px 34px;
  position: relative;
  color: #4d5f78;
}

.occ-course-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 10px;
  color: #0d6efd;
}

/* Modal */
.occ-course-modal .modal-content {
  border-radius: 28px;
  overflow: hidden;
}

.occ-modal-header {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, .95), rgba(4, 24, 61, .96)),
    url("assets/img/banners/electrical-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 30px;
}

.occ-modal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
}

.occ-modal-card {
  height: 100%;
  background: #f8fbff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(13, 110, 253, .1);
  transition: .3s ease;
}

.occ-modal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(13, 110, 253, .12);
}

.occ-modal-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.occ-modal-card h5 {
  font-weight: 800;
  color: #10233f;
}

.occ-modal-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.occ-modal-card li {
  margin-bottom: 10px;
  color: #5f6f89;
}

/* Responsive */
@media (max-width: 991px) {
  .occ-outline-image-wrap {
    min-height: 320px;
  }

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

  .occ-outline-content {
    padding: 30px;
  }
}

/* =============================== Admissions page styling =============================== */
:root {
  --occ-primary: #0d6efd;
  --occ-dark: #071b33;
  --occ-gold: #ffc107;
  --occ-soft: #f4f8fb;
  --occ-muted: #64748b;
  --occ-shadow: 0 22px 55px rgba(7, 27, 51, 0.13);
  --occ-radius: 26px;
}

/* GENERAL */
.occ-admissions-section,
.occ-apply-section,
.occ-faq-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--occ-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.25);
}

.occ-section-title {
  color: var(--occ-dark);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
}

.occ-section-text {
  max-width: 850px;
  color: var(--occ-muted);
  font-size: 1.05rem;
}

.occ-mini-label {
  display: inline-flex;
  align-items: center;
  background: #fff3cd;
  color: #946200;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 16px;
}

.occ-btn {
  border-radius: 5px;
  padding: 12px 26px;
  font-weight: 800;
}

/* ADMISSIONS INTRO */
.occ-admissions-image-card {
  position: relative;
  height: 100%;
  min-height: 560px;
  border-radius: var(--occ-radius);
  overflow: hidden;
  box-shadow: var(--occ-shadow);
}

.occ-admissions-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occ-admissions-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0.1), rgba(7, 27, 51, 0.65));
}

.occ-experience-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(13, 110, 253, 0.9);
  color: #fff;
  padding: 16px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.occ-experience-badge i {
  font-size: 2rem;
  color: var(--occ-gold);
}

.occ-experience-badge h4 {
  margin: 0;
  font-weight: 900;
}

.occ-experience-badge span {
  font-size: 0.85rem;
}

.occ-floating-stat {
  position: absolute;
  z-index: 3;
  background: #fff;
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(7, 27, 51, 0.18);
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.occ-floating-stat i {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.occ-floating-stat strong {
  color: var(--occ-dark);
  font-weight: 900;
}

.occ-floating-stat small {
  color: var(--occ-muted);
}

.stat-one {
  bottom: 30px;
  left: 30px;
}

.stat-two {
  bottom: 30px;
  right: 30px;
}

.occ-admissions-content {
  background: #fff;
  padding: 42px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
}

.occ-admissions-content h3 {
  color: var(--occ-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.occ-admissions-content p {
  color: var(--occ-muted);
}

.occ-feature-card {
  height: 100%;
  color: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(7, 27, 51, 0.12);
  transition: 0.35s ease;
}

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

.occ-feature-card span {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.occ-feature-card h6 {
  font-weight: 900;
}

.occ-feature-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.bg-blue {
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

.bg-green {
  background: linear-gradient(135deg, #198754, #20c997);
}

.bg-orange {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.bg-purple {
  background: linear-gradient(135deg, #6f42c1, #d63384);
}

/* INFO PANELS */
.occ-info-panel {
  background: #fff;
  padding: 36px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
}

.occ-panel-icon,
.occ-flat-icon {
  width: 66px;
  height: 66px;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.occ-info-panel h3 {
  color: var(--occ-dark);
  font-weight: 900;
}

.occ-info-panel p {
  color: var(--occ-muted);
}

.occ-step-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  margin-top: 14px;
}

.occ-step-item span {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--occ-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.occ-step-item h5 {
  color: var(--occ-dark);
  font-weight: 900;
  margin-bottom: 4px;
}

.occ-step-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.occ-check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #475569;
  font-weight: 600;
}

.occ-check-list i {
  color: #198754;
  margin-top: 3px;
}

.occ-alert {
  display: flex;
  gap: 14px;
  background: #eaf3ff;
  color: #0d6efd;
  padding: 18px;
  border-radius: 18px;
}

.occ-alert i {
  font-size: 1.5rem;
}

.occ-alert p {
  margin: 0;
  color: #334155;
}

/* APPLICATION INFO */
.occ-application-info,
.occ-admissions-cta {
  position: relative;
  padding: 95px 0;
  background: url("assets/img/banners/board.jpg") center/cover no-repeat;
}

.occ-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 51, 0.82);
}

.occ-download-card {
  height: 100%;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.94);
  padding: 30px;
  border-radius: 26px;
  box-shadow: var(--occ-shadow);
  backdrop-filter: blur(8px);
}

.occ-download-card.featured {
  border: 2px solid rgba(25, 135, 84, 0.25);
}

.occ-download-card h5 {
  color: var(--occ-dark);
  font-weight: 900;
}

.occ-download-card p {
  color: var(--occ-muted);
}

.occ-deadlines {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--occ-shadow);
}

.occ-deadlines h4 {
  color: var(--occ-dark);
  font-weight: 900;
  text-align: center;
}

.occ-date-card {
  background: #f8fafc;
  padding: 22px;
  border-radius: 20px;
  height: 100%;
}

.occ-date-card i {
  font-size: 1.8rem;
}

.occ-date-card h5 {
  color: var(--occ-dark);
  font-weight: 900;
  margin-top: 10px;
}

.occ-date-card p {
  color: var(--occ-muted);
  margin-bottom: 0;
}

/* FAQ */
.occ-faq-accordion .accordion-item {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.09);
}

.occ-faq-accordion .accordion-button {
  font-weight: 900;
  color: var(--occ-dark);
  padding: 20px 24px;
  box-shadow: none;
}

.occ-faq-accordion .accordion-button:not(.collapsed) {
  background: #eaf3ff;
  color: var(--occ-primary);
}

.occ-faq-image {
  position: relative;
  border-radius: var(--occ-radius);
  overflow: hidden;
  box-shadow: var(--occ-shadow);
}

.occ-faq-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.occ-faq-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--occ-dark);
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--occ-shadow);
  font-weight: 900;
}

.occ-faq-badge i {
  color: var(--occ-primary);
  margin-right: 8px;
}

/* CTA */
.occ-admissions-cta {
  background: url("assets/img/banners/school-students-digital-art2.jpg") center/cover no-repeat;
  color: #fff;
}

.occ-cta-content {
  background: rgba(7, 27, 51, 0.76);
  padding: 42px;
  border-radius: 28px;
  backdrop-filter: blur(8px);
}

.occ-cta-content h2 {
  font-weight: 900;
  margin-bottom: 18px;
}

.occ-cta-content p,
.occ-cta-content li {
  color: rgba(255, 255, 255, 0.82);
}

.occ-cta-content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.occ-cta-content li {
  margin-bottom: 12px;
}

.occ-cta-content li i {
  color: var(--occ-gold);
  margin-right: 8px;
}

.occ-cta-image-wrap {
  position: relative;
  display: inline-block;
}

.occ-cta-image-wrap img {
  max-width: 100%;
  border-radius: 28px;
  box-shadow: var(--occ-shadow);
}

.cta-stat-one {
  top: 20px;
  left: 20px;
}

.cta-stat-two {
  bottom: 20px;
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .occ-admissions-image-card {
    min-height: 420px;
  }

  .occ-download-card {
    flex-direction: column;
  }

  .occ-faq-image img {
    height: 360px;
  }
}

@media (max-width: 767px) {

  .occ-admissions-section,
  .occ-apply-section,
  .occ-faq-section,
  .occ-application-info,
  .occ-admissions-cta {
    padding: 60px 0;
  }

  .occ-admissions-content,
  .occ-info-panel,
  .occ-cta-content {
    padding: 26px;
  }

  .occ-floating-stat {
    position: static;
    margin-top: 14px;
  }

  .stat-one,
  .stat-two,
  .cta-stat-one,
  .cta-stat-two {
    position: static;
  }

  .occ-admissions-image-card {
    min-height: auto;
  }

  .occ-admissions-image-card img {
    min-height: 360px;
  }

  .occ-experience-badge {
    left: 16px;
    top: 16px;
  }
}

/* ================================ Online application form styling ===================== */
:root {
  --occ-primary: #0d6efd;
  --occ-dark: #071b33;
  --occ-gold: #ffc107;
  --occ-soft: #f4f8fb;
  --occ-muted: #64748b;
  --occ-shadow: 0 22px 55px rgba(7, 27, 51, 0.13);
  --occ-radius: 28px;
}

/* SECTION */
.occ-enroll-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, 0.12), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--occ-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.25);
}

.occ-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--occ-dark);
}

.occ-section-text {
  max-width: 850px;
  color: var(--occ-muted);
  font-size: 1.05rem;
}

/* BENEFITS */
.occ-benefits-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.occ-benefits-card h3 {
  color: var(--occ-dark);
  font-weight: 900;
}

.occ-benefits-card>p {
  color: var(--occ-muted);
  margin-bottom: 24px;
}

.occ-benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  margin-bottom: 16px;
  color: #fff;
  transition: 0.35s ease;
}

.occ-benefit-item:hover {
  transform: translateY(-5px);
}

.occ-benefit-item span {
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.occ-benefit-item h5 {
  font-weight: 900;
  margin-bottom: 5px;
}

.occ-benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.bg-blue {
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

.bg-orange {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.bg-green {
  background: linear-gradient(135deg, #198754, #20c997);
}

.bg-purple {
  background: linear-gradient(135deg, #6f42c1, #d63384);
}

.occ-help-box {
  background: #071b33;
  color: #fff;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  margin-top: 24px;
}

.occ-help-box i {
  font-size: 2rem;
  color: var(--occ-gold);
}

.occ-help-box h6 {
  margin-top: 10px;
  font-weight: 900;
}

.occ-help-box p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* FORM CARD */
.occ-form-card {
  background: #fff;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  padding: 34px;
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.occ-form-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}

.occ-mini-label {
  display: inline-flex;
  align-items: center;
  background: #fff3cd;
  color: #946200;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 14px;
}

.occ-form-header h3 {
  color: var(--occ-dark);
  font-weight: 900;
  margin-bottom: 6px;
}

.occ-form-header p {
  color: var(--occ-muted);
  margin-bottom: 0;
}

.occ-form-icon {
  min-width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--occ-primary), #0dcaf0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
}

/* FORM SECTIONS */
.occ-form-section {
  background: #f8fafc;
  border-radius: 24px;
  padding: 26px;
  margin-bottom: 24px;
}

.occ-form-section h5 {
  color: var(--occ-dark);
  font-weight: 900;
  margin-bottom: 20px;
}

.occ-form-section .form-label {
  font-weight: 800;
  color: #334155;
}

.occ-form-section .form-control,
.occ-form-section .form-select {
  min-height: 50px;
  border-radius: 15px;
  border-color: #dbe3ef;
}

.occ-form-section textarea.form-control {
  min-height: 120px;
}

.occ-form-section .form-control:focus,
.occ-form-section .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.12);
}

.occ-form-section a {
  color: var(--occ-primary);
  font-weight: 800;
  text-decoration: none;
}

.occ-form-section a:hover {
  text-decoration: underline;
}

.occ-submit-btn {
  border-radius: 50px;
  padding: 13px 34px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.28);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .occ-enroll-section {
    padding: 60px 0;
  }

  .occ-benefits-card,
  .occ-form-card {
    padding: 24px;
  }

  .occ-form-header {
    flex-direction: column;
  }

  .occ-form-icon {
    width: 70px;
    height: 70px;
  }

  .occ-form-section {
    padding: 22px;
  }
}

/* =============================== CONTACT PAGE STYLING ================================ */

.contact-hero {
  position: relative;
  overflow: hidden;
  height: 400px;
  padding: 80px 0 100px;
  color: #fff;
  background:
    linear-gradient(rgba(8, 39, 80, .84), rgba(6, 27, 54, .92)),
    url("../img/banners/work-space-good.jpg") center / cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -120px;
  left: -90px;
  border-radius: 50%;
  background: rgba(255, 193, 7, .25);
  filter: blur(12px);
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(13, 202, 240, .22);
  filter: blur(14px);
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 5px;
  background: rgba(255, 193, 7, .15);
  border: 1px solid rgba(255, 193, 7, .4);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(12px);
}

.contact-title {
  /* font-size: clamp(2.4rem, 6vw, 4.8rem); */
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  /* text-shadow: 0 8px 26px rgba(0, 0, 0, .38); */
  text-shadow: 2px 2px 3px black;
}

.breadcrumb-box {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.breadcrumb-box a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb-box span {
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.contact-hero-text {
  max-width: 820px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
  text-shadow: 2px 2px 3px black;
  font-weight: 700;
}

.contact-details-section {
  padding: 70px 0 40px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.contact-card {
  height: 100%;
  padding: 30px;
  border-radius: 5px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  transition: all .35s ease;
}

.contact-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .15);
}

.contact-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 18px;
  box-shadow:
    inset 0 -8px 14px rgba(0, 0, 0, .14),
    0 14px 30px rgba(0, 0, 0, .16);
}

.contact-card h5 {
  color: #082750;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
  color: #64748b;
  text-decoration: none;
  line-height: 1.7;
}

.contact-card a:hover {
  color: #0d6efd;
}

.contact-main-section {
  padding: 40px 0 90px;
  background: linear-gradient(135deg, #f8fbff, #fff);
}

.contact-form-card,
.map-card {
  border-radius: 0px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 25px 70px rgba(15, 23, 42, .1);
  overflow: hidden;
}

.form-header {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, #082750, #0d6efd);
}

.form-header h3 {
  font-weight: 900;
  margin-bottom: 8px;
}

.form-header p {
  color: rgba(255, 255, 255, .82);
}

.form-control,
.form-select {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #0d6efd;
}

textarea.form-control {
  min-height: 145px;
}

.btn-occ {
  border-radius: 10px;
  padding: 13px 30px;
  font-weight: 900;
}

.map-card {
  min-height: 650px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
  filter: grayscale(10%) contrast(1.05) saturate(1.05);
}

.occ-map-floating-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 330px;
  max-width: calc(100% - 60px);
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(8, 39, 80, .96), rgba(13, 110, 253, .92));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
}

.occ-map-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 5px;
  margin-bottom: 14px;
  background: rgba(255, 193, 7, .16);
  border: 1px solid rgba(255, 193, 7, .4);
  color: #ffc107;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.occ-map-floating-card h5 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}

.occ-map-floating-card p {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.7;
}

.office-box {
  padding: 28px;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(135deg, #082750, #0d6efd);
  box-shadow: 0 25px 70px rgba(8, 39, 80, .2);
}

.office-box i {
  color: #ffc107;
}

.office-box p {
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 991.98px) {
  .contact-hero {
    height: 450px;
    padding: 90px 0 75px;
  }

  .map-card,
  .map-card iframe {
    min-height: 540px;
  }
}

@media (max-width: 767.98px) {
  .breadcrumb-box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .occ-map-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: none;
    margin: -90px auto 20px;
  }

  .office-box {
    text-align: center;
  }
}

/* ================================    OCC CTA / ADMISSIONS SECTION ================================ */

.occ-cta-section {
  background:
    linear-gradient(135deg, rgba(3, 28, 54, 0.92), rgba(0, 121, 145, 0.82)),
    url("../img/banners/school-students-digital-art2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  isolation: isolate;
}

.occ-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.28), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 74, 105, 0.75));
  z-index: 0;
}

.occ-cta-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.35;
  z-index: 1;
}

.occ-cta-shape-1 {
  width: 170px;
  height: 170px;
  background: #ffc107;
  top: 8%;
  right: 8%;
}

.occ-cta-shape-2 {
  width: 230px;
  height: 230px;
  background: #0dcaf0;
  bottom: -70px;
  left: -70px;
}

.z-2 {
  z-index: 2;
}

/* Intro Card */

.occ-cta-intro,
.occ-learning-card,
.occ-requirements-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 24, 43, 0.72);
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 32px;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0dcaf0, #0d6efd);
  color: #3b0764;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.occ-cta-intro h2,
.occ-learning-card h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 20px 0;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
}

.occ-cta-intro p,
.occ-learning-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* Mini Grid */

.occ-cta-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.occ-cta-mini-grid div {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.occ-cta-mini-grid i {
  display: block;
  font-size: 1.9rem;
  color: #ffc107;
  margin-bottom: 8px;
}

.occ-cta-mini-grid span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Requirements Card */

.occ-requirements-card {
  background: rgba(145, 100, 105, 0.54);
  color: #14213d;
}

.occ-requirements-card h5 {
  font-weight: 900;
  color: #06283d;
}

.occ-requirements-card p {
  color: #65758b;
}

.occ-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.35);
}

/* Lists */

.occ-feature-list,
.occ-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.occ-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f8fb;
  padding: 13px 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #243447;
  border-left: 4px solid #0d6efd;
}

.occ-feature-list i {
  color: #198754;
}

/* Process Steps */

.occ-process-box {
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  padding: 24px;
  border: 1px solid #dceaf7;
}

.occ-process-step {
  height: 100%;
  padding: 18px 12px;
  background: #fff;
  text-align: center;
  border: 1px solid #e1eaf4;
  transition: all 0.3s ease;
}

.occ-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.occ-process-step strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #0d6efd;
}

.occ-process-step span {
  font-size: 0.88rem;
  font-weight: 800;
}

/* Benefits */

.occ-benefit-list {
  margin-top: 24px;
}

.occ-benefit-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.occ-benefit-list i {
  color: #ffc107;
  font-size: 1.25rem;
  margin-top: 2px;
}

/* Buttons */

.occ-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.occ-cta-actions .btn {
  border-radius: 0;
  padding: 12px 22px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.occ-cta-actions .btn:hover {
  transform: translateY(-3px);
}

/* Image */

.occ-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 560px;
}

.occ-main-img {
  border: 8px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.occ-floating-card {
  position: absolute;
  width: 155px;
  background: rgba(255, 255, 255, 0.50);
  /* color: #14213d; */
  padding: 18px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  animation: occFloat 4s ease-in-out infinite;
}

.occ-floating-card i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
}

.occ-floating-card strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}

.occ-floating-card span {
  color: #6c757d;
  font-size: 0.82rem;
  font-weight: 700;
}

.occ-float-top {
  top: 18px;
  left: 18px;
}

.occ-float-bottom {
  right: 18px;
  bottom: 18px;
  animation-delay: 1s;
}

@keyframes occFloat {

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

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

/* Responsive */

@media (max-width: 991px) {
  .occ-cta-section {
    background-attachment: scroll;
  }

  .occ-cta-intro,
  .occ-learning-card,
  .occ-requirements-card {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .occ-cta-mini-grid {
    grid-template-columns: 1fr;
  }

  .occ-floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    animation: none;
    text-align: center;
  }

  .occ-image-wrap {
    display: block;
  }

  .occ-main-img {
    border-width: 5px;
  }

  .occ-cta-actions .btn {
    width: 100%;
  }
}

/* ===============================    OCC CTA / ADMISSION SECTION ================================ */
.occ-cta-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(3, 22, 52, .70), rgba(13, 110, 253, .70)),
    url("../img/banners/school-students-digital-art2.jpg") center/cover no-repeat;
  background-attachment: fixed;
}

.occ-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, .25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(13, 202, 240, .22), transparent 35%);
  z-index: 1;
}

.occ-cta-shape {
  position: absolute;
  border-radius: 20%;
  filter: blur(2px);
  opacity: .35;
  z-index: 1;
}

.occ-cta-shape-1 {
  width: 220px;
  height: 220px;
  background: #ffc107;
  top: -80px;
  right: 8%;
}

.occ-cta-shape-2 {
  width: 260px;
  height: 260px;
  background: #0dcaf0;
  bottom: -100px;
  left: 5%;
}

.occ-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .22);
}

.occ-warning-badge {
  background: #ffc107;
  color: #111827;
  border: none;
}

.occ-cta-intro,
.occ-requirements-card,
.occ-learning-card {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 2px;
  padding: 35px;
  backdrop-filter: blur(4px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.occ-cta-intro h2,
.occ-learning-card h2 {
  font-weight: 800;
  margin: 22px 0 16px;
  line-height: 1.2;
}

.occ-cta-intro p,
.occ-learning-card p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
}

.occ-cta-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.occ-cta-mini-grid div {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 18px;
  transition: .35s ease;
}

.occ-cta-mini-grid div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .22);
}

.occ-cta-mini-grid i {
  font-size: 1.7rem;
  color: #ffc107;
  display: block;
  margin-bottom: 10px;
}

.occ-cta-mini-grid span {
  font-weight: 700;
}

.occ-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
}

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

.occ-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 13px 15px;
  border-radius: 2px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: .35s ease;
}

.occ-feature-list li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, .20);
}

.occ-feature-list i {
  color: #ffc107;
}

.occ-process-box {
  background: rgba(0, 0, 0, .20);
  border-radius: 24px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.occ-process-box h5 {
  color: #fff;
  font-weight: 800;
}

.occ-process-step {
  background: rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 18px 12px;
  text-align: center;
  min-height: 120px;
  transition: .35s ease;
}

.occ-process-step:hover {
  transform: translateY(-7px);
  background: #ffc107;
  color: #111827;
}

.occ-process-step strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
}

.occ-process-step span {
  font-size: .9rem;
  font-weight: 700;
}

.occ-benefit-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.occ-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
}

.occ-benefit-list i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 193, 7, .18);
  color: #ffc107;
  flex-shrink: 0;
}

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

.occ-cta-actions .btn {
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 800;
}

.occ-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 560px;
}

.occ-main-img {
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
  border: 8px solid rgba(255, 255, 255, .22);
}

.occ-floating-card {
  position: absolute;
  background: #fff;
  color: #17233c;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: occFloat 4s ease-in-out infinite;
}

.occ-floating-card i {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.occ-floating-card strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.occ-floating-card span {
  font-size: .85rem;
  font-weight: 700;
  color: #64748b;
}

.occ-float-top {
  top: 35px;
  left: -35px;
}

.occ-float-bottom {
  bottom: 35px;
  right: -35px;
  animation-delay: 1s;
}

@keyframes occFloat {

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

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

@media (max-width: 991px) {
  .occ-cta-section {
    padding: 60px 0;
  }

  .occ-floating-card {
    position: static;
    margin: 15px auto 0;
  }

  .occ-image-wrap {
    display: block;
  }
}

@media (max-width: 576px) {

  .occ-cta-intro,
  .occ-requirements-card,
  .occ-learning-card {
    padding: 25px;
    border-radius: 22px;
  }

  .occ-cta-mini-grid {
    grid-template-columns: 1fr;
  }

  .occ-process-step {
    min-height: 105px;
  }
}

/* ================================    OCC ADVERTS, EVENTS & ACTIVITIES ================================ */

.occ-events-page {
  --occ-primary: #0d6efd;
  --occ-dark: #071b35;
  --occ-gold: #ffc107;
  --occ-soft: #f4f7fb;
  --occ-radius: 15px;
  --occ-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  font-family: "Segoe UI", sans-serif;
}

/* HERO */
.occ-events-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(7, 27, 53, 0.75), rgba(7, 27, 53, 0.8)),
    url("../img/banners/school-students-digital-art2.jpg") center/cover no-repeat;
  overflow: hidden;
}

.occ-events-hero::before,
.occ-events-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.18);
  filter: blur(2px);
}

.occ-events-hero::before {
  width: 220px;
  height: 220px;
  top: 70px;
  left: 6%;
}

.occ-events-hero::after {
  width: 300px;
  height: 300px;
  right: -90px;
  bottom: -90px;
}

.occ-events-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  max-width: 950px;
  margin: 20px auto;
}

.occ-events-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 1.15rem;
  color: #e9f2ff;
}

.occ-section-badge {
  display: inline-flex;
  gap: 10px;
  color: #ffffff;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
}

/* INFO STRIP */
.occ-info-strip {
  margin-top: -70px;
  position: relative;
  z-index: 5;
}

.occ-info-card {
  height: 100%;
  /* background: inherit; */
  padding: 28px;
  border-radius: 5px;
  box-shadow: var(--occ-shadow);
  text-align: center;
  transition: 0.35s ease;
}

.occ-info-card:hover {
  /* background: white; */
  transform: translateY(-8px);
  color: white;
}

.occ-info-card i {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.occ-info-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

.occ-info-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* SECTION HEADINGS */
.occ-section-heading {
  margin-bottom: 28px;
}

.occ-section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--occ-primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.occ-section-heading h2 {
  font-weight: 900;
  color: var(--occ-dark);
  margin-top: 10px;
}

.occ-section-heading p {
  color: #64748b;
  max-width: 720px;
}

/* ===============================    OCC INFORMATION BOX ================================ */
.occ-info-box {
  background:
    linear-gradient(135deg, rgba(13, 110, 253, .95), rgba(3, 22, 52, .95));
  border-radius: 0px;
  padding: 35px;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  position: relative;
  z-index: 1;
}

/* SHAPES */
.occ-info-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  z-index: 0;
}

.occ-info-shape-1 {
  width: 180px;
  height: 180px;
  background: #ffc107;
  top: -60px;
  right: -60px;
}

.occ-info-shape-2 {
  width: 220px;
  height: 220px;
  background: #0dcaf0;
  bottom: -100px;
  left: -90px;
}

/* IMAGE */
.occ-info-image-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.occ-info-image {
  width: 100%;
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .30);
  transition: .4s ease;
}

.occ-info-box:hover .occ-info-image {
  transform: scale(1.03);
}

/* CONTENT */
.occ-info-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.occ-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.occ-info-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.occ-info-content p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* FEATURES */
.occ-info-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.occ-info-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  padding: 14px 18px;
  transition: .35s ease;
}

.occ-info-feature:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, .18);
}

.occ-info-feature i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 193, 7, .20);
  color: #ffc107;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.occ-info-feature span {
  font-weight: 700;
}

/* ACTIONS */
.occ-info-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.occ-info-actions .btn {
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 700;
  transition: .35s ease;
}

.occ-info-actions .btn:hover {
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {

  .occ-info-box {
    padding: 25px;
  }

  .occ-info-content h3 {
    font-size: 1.6rem;
  }

  .occ-info-actions {
    flex-direction: column;
  }

  .occ-info-actions .btn {
    width: 100%;
  }

}

/* ADVERT CARDS */
.occ-advert-card {
  height: 100%;
  background: #fff;
  border-left: 6px solid;
  border-radius: var(--occ-radius);
  padding: 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.occ-advert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--occ-shadow);
}

.occ-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.occ-card-top small {
  color: #64748b;
  font-weight: 600;
}

.occ-advert-card h4 {
  font-weight: 850;
  color: var(--occ-dark);
}

.occ-advert-card p {
  color: #64748b;
}

.occ-advert-card a {
  font-weight: 800;
  color: var(--occ-primary);
  text-decoration: none;
}

/* EVENT LIST */
.occ-event-list {
  display: grid;
  gap: 22px;
}

.occ-event-item {
  display: flex;
  gap: 22px;
  background: #fff;
  border-radius: var(--occ-radius);
  padding: 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.occ-event-item:hover {
  transform: translateX(6px);
  box-shadow: var(--occ-shadow);
}

.occ-event-date {
  min-width: 85px;
  height: 90px;
  border-radius: 18px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
}

.occ-event-date strong {
  font-size: 2rem;
  line-height: 1;
}

.occ-event-date span {
  font-weight: 700;
  text-transform: uppercase;
}

.occ-event-content h4 {
  font-weight: 850;
  color: var(--occ-dark);
}

.occ-event-content p {
  color: #64748b;
}

.occ-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ACTIVITIES */
.occ-activity-card {
  height: 100%;
  background: #fff;
  padding: 28px;
  border-radius: var(--occ-radius);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
}

.occ-activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--occ-shadow);
}

.occ-activity-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.occ-activity-card h5 {
  font-weight: 850;
  color: var(--occ-dark);
}

.occ-activity-card p {
  color: #64748b;
  margin-bottom: 0;
}

/* SIDEBAR */
.occ-sidebar-card {
  background: #fff;
  border-radius: var(--occ-radius);
  padding: 28px;
  margin-bottom: 26px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.occ-sidebar-card h4 {
  font-weight: 850;
  color: var(--occ-dark);
  margin-bottom: 18px;
}

.occ-sidebar-card ul {
  padding-left: 20px;
  color: #64748b;
}

.occ-sidebar-card li {
  margin-bottom: 12px;
}

.occ-gradient-card {
  background: linear-gradient(135deg, #0d6efd, #071b35);
}

.occ-gradient-card h4 {
  color: #fff;
}

.occ-mini-event {
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
}

.occ-mini-event span {
  background: #eaf2ff;
  color: var(--occ-primary);
  font-weight: 850;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 75px;
  text-align: center;
}

.occ-mini-event p {
  margin: 0;
  color: #475569;
  font-weight: 650;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .occ-info-strip {
    margin-top: -40px;
  }

  .occ-event-item {
    flex-direction: column;
  }

  .occ-event-date {
    width: 90px;
  }
}

/* ===============================    OCC COURSES SLIDE ================================ */
.courses-card {
  background:
    linear-gradient(135deg, rgba(13, 109, 253, 0.247), rgba(3, 22, 52, 0.24));
  border-radius: 5px;
  padding: 50px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .12);
}

/* SHAPES */
.occ-slide-shape {
  position: absolute;
  border-radius: 10%;
  opacity: .18;
  z-index: 0;
}

.occ-slide-shape-1 {
  width: 220px;
  height: 220px;
  background: #ffc107;
  top: -80px;
  right: -70px;
}

.occ-slide-shape-2 {
  width: 260px;
  height: 260px;
  background: #0dcaf0;
  bottom: -120px;
  left: -100px;
}

/* BADGE */
.occ-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

/* ICON BOX */
.occ-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
}

.bg-blue {
  background: linear-gradient(135deg, #0d6dfd25, #3b83f621);
}

/* TEXT */
.courses-card h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.courses-card p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1rem;
}

/* MINI GRID */
.occ-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.occ-mini-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  transition: .35s ease;
}

.occ-mini-grid span:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .18);
}

.occ-mini-grid i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 193, 7, .18);
  color: #ffc107;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* BUTTONS */
.occ-explore-btn,
.occ-outline-btn {
  border-radius: 14px;
  padding: 12px 24px;
  font-weight: 700;
  transition: .35s ease;
}

.occ-explore-btn {
  background: #ffc107;
  border: none;
  color: #111827;
}

.occ-explore-btn:hover {
  transform: translateY(-4px);
  background: #ffca2c;
}

.occ-outline-btn:hover {
  transform: translateY(-4px);
}

/* FEATURE PANEL */
.occ-feature-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.occ-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 22px;
  transition: .35s ease;
}

.occ-feature-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, .18);
}

.occ-feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.occ-feature-item h6 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1rem;
}

.occ-feature-item span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  font-size: .95rem;
}

/* MOBILE */
@media (max-width: 991px) {

  .courses-card {
    padding: 30px;
  }

  .courses-card h3 {
    font-size: 2rem;
  }

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

}

@media (max-width: 576px) {

  .courses-card {
    padding: 25px;
    border-radius: 24px;
  }

  .courses-card h3 {
    font-size: 1.7rem;
  }

  .occ-icon-box {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

}



/* STUDENTS PAGE STYLING */

:root {
  --occ-primary: #0d6efd;
  --occ-dark: #071b35;
  --occ-gold: #ffc107;
  --occ-soft: #f5f8fc;
  --occ-radius: 22px;
  --occ-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* HERO */
.occ-students-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: url("assets/img/banners/students-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.occ-students-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 27, 53, 0.92), rgba(13, 110, 253, 0.65)),
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.35), transparent 35%);
}

.occ-students-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  margin-top: 20px;
}

.occ-students-hero p {
  max-width: 820px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  color: #eaf1ff;
}

/* BADGES */
.occ-section-badge,
.occ-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.occ-section-badge {
  background: rgba(255, 193, 7, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 193, 7, 0.35);
}

.occ-mini-badge {
  background: rgba(13, 110, 253, 0.1);
  color: var(--occ-primary);
}

.occ-section-title {
  font-weight: 900;
  color: var(--occ-dark);
  line-height: 1.2;
}

/* QUICK LINKS */
.occ-student-links {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 50px;
}

.occ-student-link-card {
  display: block;
  height: 100%;
  background: #fff;
  padding: 30px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}

.occ-student-link-card:hover {
  transform: translateY(-10px);
  color: inherit;
  text-decoration: none;
}

.occ-student-link-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 18px;
  margin-bottom: 18px;
}

.occ-student-link-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

.occ-student-link-card p {
  color: #667085;
  margin-bottom: 0;
}

/* WELCOME */
.occ-info-box {
  background: inherit;
  text-shadow: 2px 2px 3px black;
  padding: 14px 16px;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  font-weight: 600;
}

.occ-student-image-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--occ-shadow);
}

.occ-student-image-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.occ-floating-card {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  padding: 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(2px);
  text-shadow: 2px 2px 3px white;
  box-shadow: var(--occ-shadow);
}

.occ-floating-card i {
  font-size: 2rem;
  color: var(--occ-primary);
}

.occ-floating-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

/* SUPPORT SECTION */
.occ-support-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 53, 0.97), rgba(13, 110, 253, 0.88)),
    url("assets/img/banners/support-bg.jpg") center/cover no-repeat;
}

.occ-support-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  padding: 30px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
  transition: all 0.35s ease;
}

.occ-support-card:hover {
  transform: translateY(-8px);
}

.occ-support-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.occ-support-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

.occ-support-card p {
  color: #667085;
}

.occ-support-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.occ-support-card li {
  margin-bottom: 8px;
  color: #344054;
}

/* RESOURCES */
.occ-resource-card {
  height: 100%;
  background: #fff;
  padding: 30px;
  border-radius: var(--occ-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.35s ease;
}

.occ-resource-card:hover {
  transform: translateY(-8px);
}

.occ-resource-card i {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.occ-resource-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

/* ACTIVITIES */
.occ-activity-card {
  height: 100%;
  background: #fff;
  padding: 26px;
  border-radius: var(--occ-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.occ-activity-card:hover {
  transform: translateY(-8px);
}

.occ-activity-card i {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.occ-activity-card h5 {
  font-weight: 800;
  color: var(--occ-dark);
}

/* CONTACT SUPPORT */
.occ-contact-support {
  background:
    linear-gradient(120deg, rgba(7, 27, 53, 0.96), rgba(13, 110, 253, 0.86)),
    url("assets/img/banners/campus-help.jpg") center/cover no-repeat;
}

.occ-support-contact-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 32px;
  border-radius: var(--occ-radius);
  box-shadow: var(--occ-shadow);
}

.occ-support-contact-card h5 {
  font-weight: 900;
  color: var(--occ-dark);
}

.occ-support-contact-card p {
  margin-bottom: 12px;
  color: #475467;
}

.occ-support-contact-card i {
  color: var(--occ-primary);
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .occ-students-hero {
    min-height: 55vh;
  }

  .occ-student-links {
    margin-top: -35px;
  }

  .occ-floating-card {
    position: static;
    border-radius: 0;
  }

  .occ-student-image-card img {
    min-height: 300px;
  }
}

/* SRC SECTION */

.occ-src-section {
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.25), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 45%, #fff8e1 100%);
  overflow: hidden;
}

.occ-section-lead {
  max-width: 820px;
  margin: 0 auto;
  color: #667085;
  font-size: 1.05rem;
}

.occ-org-level {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}

.occ-src-card {
  position: relative;
  width: 100%;
  max-width: 310px;
  min-height: 235px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(7, 27, 53, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.occ-src-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, #0d6efd, #20c997, #ffc107, #dc3545);
}

.occ-src-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(7, 27, 53, 0.18);
}

.occ-src-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.occ-src-card h4,
.occ-src-card h5 {
  font-weight: 900;
  color: #071b35;
  margin-bottom: 10px;
}

.occ-src-card p {
  color: #667085;
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.occ-src-name {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: 50px;
  background: #eef5ff;
  color: #0d6efd;
  font-weight: 800;
  font-size: 0.85rem;
}

/* PRESIDENT */
.occ-src-president {
  max-width: 390px;
  min-height: 255px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 225, 0.96));
  border: 2px solid rgba(255, 193, 7, 0.55);
}

.occ-src-president::before {
  height: 8px;
  background: linear-gradient(90deg, #ffc107, #fd7e14, #dc3545);
}

/* CONNECTORS */
.occ-org-connector {
  width: 3px;
  height: 45px;
  background: linear-gradient(180deg, #0d6efd, #ffc107);
  margin: 0 auto;
  position: relative;
}

.occ-org-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 80vw);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #0d6efd, #20c997, #ffc107, transparent);
  border-radius: 50px;
}

/* TOP COUNCIL */
.occ-top-council {
  margin-top: 18px;
  margin-bottom: 10px;
}

.occ-src-blue::before {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.occ-src-green::before {
  background: linear-gradient(90deg, #198754, #20c997);
}

.occ-src-orange::before {
  background: linear-gradient(90deg, #ffc107, #fd7e14);
}

/* PORTFOLIOS */
.occ-portfolio-grid {
  margin-top: 18px;
}

.occ-portfolio-grid .occ-src-card {
  max-width: 300px;
}

/* MOBILE */
@media (max-width: 768px) {
  .occ-src-card {
    max-width: 100%;
  }

  .occ-org-connector::after {
    width: 70vw;
  }

  .occ-src-president {
    max-width: 100%;
  }
}

/* HERO */
.occ-students-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 27, 53, 0.78), rgba(13, 110, 253, 0.65)),
    url('assets/img/banners/students-bg.jpg') center/cover no-repeat;
}

.occ-students-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(255, 193, 7, 0.22),
      transparent 28%);
}

/* BREADCRUMB */
.occ-breadcrumb-wrap {
  position: relative;
  z-index: 2;
}

.occ-breadcrumb {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 12px 22px;
  border-radius: 50px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.occ-breadcrumb .breadcrumb-item {
  font-weight: 600;
  font-size: 0.95rem;
}

.occ-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.occ-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.occ-breadcrumb a:hover {
  color: #ffc107;
}

.occ-breadcrumb .active {
  font-weight: 700;
}

/* BADGE */
.occ-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 193, 7, 0.16);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* HERO TEXT */
.occ-students-hero h1 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 2px 2px 3px black;
}

.occ-students-hero p {
  max-width: 820px;
  margin: auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {

  .occ-students-hero {
    min-height: 55vh;
    padding: 90px 0;
  }

  .occ-breadcrumb {
    padding: 10px 18px;
    border-radius: 18px;
  }

  .occ-students-hero p {
    font-size: 1rem;
  }
}


/* ==========================================    OCC HERO VIDEO SECTION ========================================== */

.occ-events-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #071b35;
}

/* VIDEO */
.occ-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: occVideoZoom 20s ease-in-out infinite alternate;
}

/* OVERLAY */
.occ-hero-overlay {
  position: absolute;
  inset: 0;
  /* background:
                linear-gradient(to right,
                    rgba(7, 27, 53, 0.92),
                    rgba(7, 27, 53, 0.72)),
                linear-gradient(to top,
                    rgba(0, 0, 0, 0.55),
                    rgba(0, 0, 0, 0.2)); */
  background:
    linear-gradient(to right,
      rgba(7, 27, 53, 0.24),
      rgba(7, 27, 53, 0.5)),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* CONTENT */
.occ-events-hero .container {
  position: relative;
  z-index: 3;
}

/* HERO TITLE */
.occ-hero-title {
  /* font-size: clamp(2.8rem, 6vw, 5.5rem); */
  font-size: 45px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 3px black;
}

/* HERO TEXT */
.occ-hero-text {
  max-width: 850px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

/* BADGE */
.occ-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* BUTTONS */
.occ-hero-btn,
.occ-hero-btn-outline {
  padding: 14px 28px;
  border-radius: 15px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.occ-hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.35);
}

.occ-hero-btn-outline:hover {
  background: #fff;
  color: #071b35 !important;
  transform: translateY(-4px);
}

/* GLASS MINI CARDS */
.occ-glass-mini-card {
  padding: 25px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: all 0.35s ease;
}

.occ-glass-mini-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
}

.occ-glass-mini-card i {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.occ-glass-mini-card h3 {
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
}

.occ-glass-mini-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* FLOATING SHAPES */
.occ-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 2;
}

.occ-shape-1 {
  width: 220px;
  height: 220px;
  background: rgba(13, 110, 253, 0.25);
  top: 10%;
  left: 5%;
  animation: floatShape 8s ease-in-out infinite;
}

.occ-shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 193, 7, 0.15);
  bottom: -120px;
  right: -80px;
  animation: floatShape 10s ease-in-out infinite;
}

.occ-shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.12);
  top: 20%;
  right: 15%;
  animation: floatShape 7s ease-in-out infinite;
}

/* SCROLL DOWN */
.occ-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-decoration: none;
}

.occ-scroll-down span {
  display: block;
  width: 32px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  position: relative;
}

.occ-scroll-down span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  transform: translateX(-50%);
  animation: scrollMove 2s infinite;
}

/* ANIMATIONS */
@keyframes scrollMove {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes floatShape {

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

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

@keyframes occVideoZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .occ-events-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .occ-hero-title {
    font-size: 2.5rem;
  }

  .occ-hero-text {
    font-size: 1rem;
  }

  .occ-glass-mini-card {
    padding: 20px;
  }

}

/* ==============================    OCC Transparent Back To Top ============================== */
.occ-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 10%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;

  /* Transparent Glassmorphism */
  /* background: rgba(255, 255, 255, 0.08); */
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px) scale(0.88);
  transition: all 0.4s ease;
}

/* Show Button */
.occ-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: occFloating 2.5s ease-in-out infinite;
}

/* Icon */
.occ-back-to-top i {
  font-size: 2rem;
  transition: 0.3s ease;
}

/* Hover */
.occ-back-to-top:hover {
  background: rgba(13, 110, 253, 0.22);
  border-color: rgba(255, 255, 255, 0.3);

  transform: translateY(-6px) scale(1.08);

  box-shadow:
    0 18px 45px rgba(13, 110, 253, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.occ-back-to-top:hover i {
  transform: translateY(-2px);
  color: #fff;
}

/* Animated Glow Ring */
.occ-back-to-top::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: occPulse 2s infinite;
}

/* Floating Animation */
@keyframes occFloating {

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

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

/* Pulse Ring */
@keyframes occPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .occ-back-to-top {
    width: 30px;
    height: 30px;
    right: 16px;
    bottom: 18px;
  }

  .occ-back-to-top i {
    font-size: 1.7rem;
  }
}