@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

:root {
  --srbs-blue: #1a6eb5;
  --srbs-blue-light: #0074BB;
  --srbs-navy: #0b2d5e;
  --srbs-gray: #555555;
  --srbs-gray-light: #888888;
  --srbs-border: #e0e0e0;
  --srbs-light: #f5f7fa;
  --font-main: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi-Regular", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  --screen-width: calc(100vw - (100vw - 100%));
}

.small,
small {
  font-size: 0.75em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@font-face {
    font-family: "Satoshi-Medium";
    src: url("Satoshi-Medium.ttf") format('truetype');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: "Satoshi-Black";
    src: url("Satoshi-Black.ttf") format('truetype');
    font-style: normal;
    font-weight: 900;
}
@font-face {
    font-family: "Satoshi-Bold";
    src: url("Satoshi-Bold.ttf") format('truetype');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Satoshi-Regular";
    src: url("Satoshi-Regular.ttf") format('truetype');
    font-style: normal;
    font-weight: 400;
}
.comon-padd {
  padding: 60px 0;
}

.section-title {
	margin-bottom: 40px;
	color: #000000;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.35;
    letter-spacing: 0.02em;
    font-family: "Bebas Neue", sans-serif;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--srbs-blue-light);
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background 0.3s ease;
}

.btn-primary-custom:hover {
  background: #007bbd;
  color: #ffffff;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .animate-this {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-this.animated {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  overflow: hidden;
  overflow-anchor: none;
  min-height: var(--header-height-expanded, auto);
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-header-measuring,
.site-header.is-header-measuring * {
  transition: none !important;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  min-height: var(--header-height-compact, auto);
}

.site-header.scrolled .header-nav {
  flex: 0 0 auto;
  opacity: 0;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled .main-header-inner {
  align-items: center;
  padding: 0 8px;
  min-height: 75px;
}

.site-header.scrolled .header-logo {
  padding-right: 0;
  max-width: 320px;
}

.site-header.scrolled .header-vdivider {
  opacity: 0;
  width: 0;
  margin-left: 0;
  margin-right: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled .top-bar {
  grid-template-rows: 0fr;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header.scrolled .mobile-menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header .mobile-nav {
  display: none !important;
}

.site-header.scrolled .mobile-nav {
  top: 75px;
  height: calc(100vh - 75px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), top 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
}

.site-header.scrolled .mobile-nav.open {
  display: block !important;
  top: 75px;
  height: calc(100vh - 75px);
  padding: 16px 30px 20px;
}

.site-header.scrolled .mobile-dropdown-toggle {
  padding: 6px 0;
}

.top-bar {
  background: #0073B8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  padding: 11px 0;
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
}

.top-bar > .container {
  overflow: hidden;
  min-height: 0;
}
.top-bar span,
.top-bar a {
	font-family: "Satoshi-Medium", sans-serif;
  color: inherit;
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: none;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  margin: 0 auto;
}

.top-bar-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.top-bar-marquee.is-static {
  display: flex;
  justify-content: center;
}

.top-bar-marquee.is-static .top-bar-marquee-set {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-bar-marquee-track {
  display: flex;
  width: max-content;
  animation: top-bar-marquee-scroll var(--marquee-duration, 45s) linear infinite;
  will-change: transform;
}

.top-bar-marquee:hover .top-bar-marquee-track {
  animation-play-state: paused;
}

.top-bar-marquee-set {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
}

.top-bar-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-marquee-item a,
.top-bar-marquee-item span {
  color: inherit;
}

@keyframes top-bar-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.top-bar-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  z-index: 10;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.main-header-inner {
  display: flex;
  align-items: stretch;
  padding: 10px 8px 8px;
  margin: 0 auto;
  position: relative;
  min-height: 114px;
  transition: min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
     padding-right:25px;
    max-width: 390px;
  transition: padding-right 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -2px;
  flex-shrink: 0;
}

.logo-title .sr,
.logo-title .s {
  color: #3d3d3d;
}

.logo-title .b {
  color: #1a6eb5;
}

.logo-sub {
  font-size: 9.5px;
  color: #8f8f8f;
  line-height: 1.35;
  font-weight: 400;
  padding-top: 2px;
}

.logo-tagline {
  font-size: 8.5px;
  color: #a3a3a3;
  text-align: center;
  margin: 4px 0 0;
  border-top: 1px solid #C5C5C5;
  padding-top: 4px;
  line-height: 1.3;
  letter-spacing: 0.15px;
}

.header-vdivider {
  width: 1px;
  background: #C5C5C5;
  margin: 4px 0 4px 0;
  flex-shrink: 0;
  align-self: stretch;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-height: 220px;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  position: relative;
  z-index: 20;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), flex 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0;
}

.nav-row-top {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0 12px;
}

.nav-row-bottom {
  padding: 10px 0 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-row-top .nav-links {
  gap: 30px;
}

.nav-row-bottom .nav-links {
  gap: 44px;
}

.nav-row-top .nav-links a {
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  font-family: "Satoshi-Bold", sans-serif;
}

.nav-row-bottom .nav-links a {
  color: #111111;
  font-size: 14px;
 font-family: "Satoshi-Bold", sans-serif;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.nav-links > li:hover > a,
.nav-links > li.open > a {
  color: #0077b6;
}

.nav-links > li {
  position: relative;
  list-style: none;
}

.nav-links .dropdown > a {
  cursor: pointer;
}

.nav-links .submenu,
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 220px;
  margin: 0;
  padding: 10px 0 8px;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1300;
}

.nav-links .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 1299;
}

.nav-links .dropdown:hover > .submenu,
.nav-links .dropdown.open > .submenu,
.nav-links .has-dropdown:hover > .dropdown-menu,
.nav-links .has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links .submenu li,
.nav-links .dropdown-menu li {
  list-style: none;
}

.nav-links .submenu a,
.nav-links .dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 400;
  color: #444444;
  white-space: nowrap;
  line-height: 1.4;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links .submenu a:hover,
.nav-links .dropdown-menu a:hover {
  background: #f5f7fa;
  color: #0077b6;
}

.chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 2px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 5px;
  margin-left: 16px;
  flex-shrink: 0;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0073B8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-icons a:hover {
  background: #006699;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.btn-alumni-portal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0094e0;
    background-image: linear-gradient(to right, #009EE0 , #0074BB);
  color: #ffffff;
  font-size: 14px;
  font-family: "Satoshi-Medium", sans-serif;
  padding: 15px 20px;
  border-radius: 50px;
  white-space: nowrap;
  margin-left: 18px;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.2s ease;
  transition: transform 0.35s ease-in-out;
}

.btn-alumni-portal i {
  font-size: 13px;
  line-height: 1;
}

.btn-alumni-portal:hover {
  background: #0082c8;
  color: #ffffff;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 6px;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  transition: 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 16px 20px 20px;
  position: fixed;
  top: 130px;
  right: 0;
  left: auto;
  width: min(320px, 88vw);
  height: calc(100vh - 130px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), top 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
}

.mobile-nav.open {
  display: block;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.mobile-nav-links li {
  border-bottom: 1px solid #eeeeee;
}

.mobile-nav-links > li > a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 0;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mobile-dropdown-toggle .chevron {
  transition: transform 0.2s ease;
}

.mobile-has-dropdown.open > .mobile-dropdown-toggle .chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px 12px;
}

.mobile-has-dropdown.open > .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
}

.mobile-dropdown-menu a:hover {
  color: #0077b6;
}

.mobile-alumni-btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .top-bar,
  .main-header,
  .main-header-inner,
  .header-logo,
  .logo-img,
  .header-vdivider,
  .header-nav,
  .mobile-nav,
  .mobile-menu-toggle {
    transition: none !important;
  }
}

/* ========== HERO ========== */
.hero-sec {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #0b2d5e;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 620px;
}

.hero-slider .owl-stage-outer {
  overflow: hidden;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
  min-height: 620px;
  height: 100%;
}

.hero-slide {
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.hero-wave-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background: radial-gradient(circle at 20% 80%, rgba(0, 148, 224, 0.35) 0%, transparent 45%);
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 42px 0 64px;

}

.hero-form-static {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 42px 0;
  pointer-events: none;
}

.hero-form-static .container,
.hero-form-static .register-card,
.hero-form-static form,
.hero-form-static input,
.hero-form-static select,
.hero-form-static button {
  pointer-events: auto;
}

.hero-row {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.hero-row .col-lg-6{
	padding: 0;
}

.hero-form-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 0;
  gap: 150px;
}

.hero-slider .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  z-index: 4;
  width: 100%;
  max-width: 1320px;
  margin: 0;
  padding: 0 12px;
  text-align: center;
}

.hero-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px 6px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
  background: #ffffff;
  transform: scale(1.1);
}

a.hero-program-badge:hover {
  color: #ffffff;
  opacity: 0.92;
}

.hero-content {
      position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hero-sec h1 {
  color: #ffffff;
  font-weight: 400;
  font-size: 62px;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  max-width: 620px;
   font-family: "Bebas Neue", sans-serif;
}

.hero-program-prefix {
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Bebas Neue", sans-serif;
  display: block;
  text-transform: uppercase;
}

.hero-program-badge {
  display: inline-block;
  background: #0094e0;
  color: #ffffff;
      padding: 2px 8px 6px;
    font-size: 29px;
 font-family: "Satoshi-Medium", sans-serif;
  line-height: 1.2;
  text-transform: none;
}

.register-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 315px;
  margin-left: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.register-card-header {
  background: #ffffff;
  padding: 30px 30px 15px;
  text-align: center;
}

.register-card-header h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  font-family: "Satoshi-Black", sans-serif;
}

.register-form {
  padding: 8px 24px 24px;
}

.register-form .form-group {
  margin-bottom: 14px;
}

.register-form .form-row {
	    border: 1px solid #d8d8d8;
		    border-radius: 8px;
}
.register-form .form-row-split:nth-child(2) {
	border: 0;
}
.register-form .form-row .form-group-phone input{
	    border: 0;
		    padding-left: 2px;
}
.register-form .form-group-code .form-control{
    border: 0;
}
.register-form .form-row-split .form-group-code {
    flex: 0 0 75px;
}
.register-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.register-form .form-row .form-group {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.register-form .form-row-split .form-group-code {
  flex: 0 0 78px;
}

.register-form .form-row-split .form-group-phone {
  flex: 1;
}

.register-form .form-control {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 10px 14px 9px;
  font-size: 13px;
  font-family: var(--font-main);
  color: #9CA3AF;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.register-form select.form-control {
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
      background-size: 9px;
}

.register-form .form-control::placeholder {
  color: #9CA3AF;
}

.register-form .form-control:focus {
  border-color: #0094e0;
  box-shadow: 0 0 0 3px rgba(0, 148, 224, 0.12);
}

.register-form .form-control.is-invalid {
  border-color: #dc3545;
}

.register-form .form-control:disabled {
  background: #f5f5f5;
  color: #999999;
  cursor: not-allowed;
}

.btn-submit {
      background-image: linear-gradient(to right, #009EE0, #0074BB);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 4px;
  transition: transform 0.35s ease-in-out;
}

.btn-submit:hover {
  background: #0082c8;
    color: #ffffff;
}

/* ========== ABOUT ========== */
.about-sec {
  background: #F0F9FF;
}

.about-section-title {
  color: #000000;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 auto 40px;
  max-width: 920px;
   font-family: "Bebas Neue", sans-serif;
}

.about-image img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-content p {
  color: #2D2D2D;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  font-family: "Satoshi-Medium", sans-serif;
}

.about-content p:last-of-type {
  margin-bottom: 24px;
}

.btn-about-know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #00a8e8 0%, #007bbd 100%);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  font-family: "Satoshi-Medium", sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-about-know-more:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ========== PROGRAMS ========== */
.programs-sec {
  background: #ffffff;
      padding: 50px 0px;
}
.programs-sec .section-title {
    margin-bottom: 30px;
}
.program-card {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-card:hover .program-body,
.program-card.active .program-body {
  background: #0073B8;
  color: #ffffff;
}
.program-card:hover .program-body p, .program-card.active .program-body p{
  color: #ffffff;
}

.program-img {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

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

.program-body {
	background: #F4F4F4;
	padding: 40px 30px;
	border: 1px solid #A9A9A9;
	border-radius: 14px;
	min-height: 200px;
}
.program-body h4 {
  font-size: 20px;
  font-weight: 600;
   font-family: "Satoshi-Bold", sans-serif;
  margin-bottom: 10px;
}

.program-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #111111;
    font-family: "Satoshi-Medium", sans-serif;
	margin: 0;
}

.program-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.program-card.active .program-link,
.program-card:hover .program-link {
  color:#fff;
}
.program-card:hover .program-link{}
/* ========== RECRUITERS ========== */
.recruiters-sec {
  background: #ffffff;
  padding: 50px 0px;
  border-top: 1px solid #B3A5A5;
  border-bottom: 1px solid #B3A5A5;
}
.recruiters-sec p{
	    font-size: 14px;
    line-height: 1.5;
    color: #111111;
    font-family: "Satoshi-Medium", sans-serif;
	text-align: center;
	margin-bottom: 20px;
}
.recruiters-sec .section-title {
	margin-bottom: 0px;
}
.recruiter-slider {
  margin-top: 50px;
  border-top: 1px solid #BBBBBB;
  border-bottom: 1px solid #BBBBBB;
  overflow: hidden;
  position: relative;
}

.recruiter-marquee-track {
  display: flex;
  width: max-content;
  animation: recruiter-marquee-scroll var(--recruiter-marquee-duration, 40s) linear infinite;
  will-change: transform;
}

.recruiter-marquee-set {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
}

.recruiter-slider .item {
  flex-shrink: 0;
}

.recruiter-slider .logo-box {
     padding: 12px;
    border-right: 1px solid #BBBBBB;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width:200px;
    min-width:200px;
    min-height: 113px;
    box-sizing: border-box;
}

.recruiter-slider .logo-box img {
  width: 190px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@keyframes recruiter-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ========== CERTIFICATES ========== */
.certificates-sec {
  background: #ffffff;
  padding: 50px 0 40px;
}

.certificates-subtitle {
  max-width: 760px;
  margin: -8px auto 28px;
  color: #475569;
  font-size: 1rem;
}

.certificates-slider {
  margin-top: 10px;
  padding: 0 12px;
}

.certificates-slider .certificate-card {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
}


.certificates-slider .certificate-card img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.certificates-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--srbs-blue-light) !important;
  color: #ffffff !important;
  font-size: 20px !important;
}

.certificates-slider .owl-nav .owl-prev {
  left: -8px;
}

.certificates-slider .owl-nav .owl-next {
  right: -8px;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 45, 94, 0.88);
}

.certificate-lightbox[hidden] {
  display: none !important;
}

.certificate-lightbox-dialog {
  position: relative;
  max-width: min(960px, 100%);
  width: 100%;
  margin: 0;
}

.certificate-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
}

.certificate-lightbox-caption {
  margin: 12px 0 0;
  text-align: center;
  color: #ffffff;
  font-size: 0.95rem;
}

.certificate-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

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

body.certificate-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .certificates-slider .certificate-card img {
    height: 180px;
  }

  .certificates-slider .owl-nav .owl-prev {
    left: 0;
  }

  .certificates-slider .owl-nav .owl-next {
    right: 0;
  }
}

/* ========== EVENTS ========== */
.events-sec {
	padding: 50px 0px;
  background: var(--srbs-light);
}
.events-sec .section-title {
    margin-bottom: 20px;
}
.events-row {
	background: #F0F9FF;
	padding: 0px 10px 25px;
	    margin: 0px 20px;
	}

.event-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-img {
  position: relative;
}

.event-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
}

.event-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #FFFFFF14;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
}

.event-body {
  padding: 15px 25px 0;
}

.event-body h5 {
      font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
	 font-family: "Satoshi-Bold", sans-serif;
    color: #111;
}

.event-body p {
  font-size: 15px;
  color: var(--srbs-gray);
  margin-bottom: 12px;
 color:  #111111
}

.event-body a {
	    margin-top: 10px;
  color: #111111;
   font-family: "Satoshi-Bold", sans-serif;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.event-body a i.bi-arrow-right {
	margin-top: 3px;
	margin-left: 3px;
}
.btn-primary-custom i.bi-arrow-right {
	margin-top: 2px;
	margin-left: 3px;
}

/* ========== PLACEMENTS ========== */
.placement-sec {
  background: #ffffff;
}

.placement-image img {
  border-radius: 12px;
}

.placement-content h2 {
  color: var(--srbs-navy);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.placement-content p {
  color: var(--srbs-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ========== WHY CHOOSE ========== */
.why-sec {
  background: var(--srbs-light);
}

.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

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

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(0, 148, 224, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 32px;
  height: 32px;
}

.why-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--srbs-navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--srbs-gray);
  line-height: 1.6;
}

/* ========== VIDEO ========== */
.video-sec {
  background: #ffffff;
  padding: 50px 0px;
}
.video-sec .section-title {
    margin-bottom: 30px;
}

.video-section-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
}

.video-embed-wrap {
  border: 1px solid #c8dff0;
  border-radius: 15px;
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.video-embed-wrap .ratio {
  border-radius: 10px;
  overflow: hidden;
}

.video-embed-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.video-content h3 {
  color: #000000;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 20px;
  font-family: "Satoshi-Bold", sans-serif;
}

.video-content p {
  color: #333333;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.video-know-more {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.video-know-more:hover {
  color: #0077b6;
}

.read-more-link {
  color: var(--srbs-blue-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ========== BLOGS ========== */
.blogs-sec {
  background: #F0F9FF;
  padding: 50px 0px;
}
.blogs-sec .section-title {
    margin-bottom: 30px;
}

.blog-card {
     background: #ffffff;
    border-radius: 20px;
    padding: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}
.blog-card:hover {
    transform: translateY(-4px);
}
.blog-card:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/shadowbg1.webp) no-repeat;
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: -1;
}

.blog-card.featured img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}
.blog-card.featured  {
	height: 100%;
}
.blog-card.small {
  display: flex;
  margin-bottom: 16px;
  gap: 20px;
}

.blog-card.small:last-child {
  margin-bottom: 0;
}

.blog-card.small img {
  width: 240px;
  min-height: 120px;
  object-fit: cover;
  flex-shrink: 0;
   border-radius: 20px;
}
}

.blog-body {
  padding: 20px 15px;
}

.blog-body h5 {
      font-size: 19px;
    margin-bottom: 8px;
    font-family: "Satoshi-Bold", sans-serif;
    color: #111;
}

.blog-body p {
  font-size: 14px;
  color: #111;
  margin-bottom: 12px;
}
.blog-body a i {
	 font-size: 18px;
}
.blog-body a {
  color: var(--srbs-blue-light);
   font-family: "Satoshi-Medium", sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-body a span {
	text-decoration: underline;
}

/* ========== DOWNLOAD BROCHURE ========== */
.brochure-sec {
  background: #ffffff;
  padding: 50px 0;
}

.brochure-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.brochure-card .section-title {
  margin-bottom: 24px;
}

.brochure-action {
  margin-top: 4px;
}

.btn-brochure-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--srbs-blue-light);
  color: #ffffff;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 148, 224, 0.22);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-brochure-download i {
  font-size: 1.15em;
  line-height: 1;
  flex-shrink: 0;
}

.btn-brochure-download span {
  line-height: 1.2;
}

.btn-brochure-download:hover {
  background: #007bbd;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 148, 224, 0.28);
}

.btn-brochure-download:active {
  transform: translateY(0);
}

/* ========== TESTIMONIALS ========== */
.testimonials-sec {
  background: #ffffff;
      overflow: hidden;
  padding: 50px 0px;
}
.testimonials-sec .section-title {
    margin-bottom: 30px;
}
.testimonial-header {
  align-items: flex-start;
  margin-bottom: 40px;
}
.testimonial-slider {
	padding-left: calc((var(--screen-width) - 1300px) / 2);
}

.testimonial-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.testimonial-intro {
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
    margin-left: auto;
  padding-top: 4px;
}

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider-wrap:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/shadowbg.webp) no-repeat;
    background-size: 100% 100%;
    opacity: 0.3;
}

.testimonial-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-slider .owl-item {
  display: flex;
  height: auto;
}

.testimonial-item {
  display: flex;
  width: 100%;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.student-photo {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 14px;
  height: 195px;
  max-height: 195px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  font-style: normal;
  color: #333333;
  line-height: 1.75;
  margin: 0 0 24px;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.14) transparent;
}

.testimonial-quote::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.testimonial-quote::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.testimonial-quote::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  box-shadow:
    0 0 4px rgba(15, 23, 42, 0.08),
    0 0 1px rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.testimonial-quote::-webkit-scrollbar-thumb:hover {
  background: rgba(15, 23, 42, 0.22);
  box-shadow:
    0 0 6px rgba(15, 23, 42, 0.12),
    0 0 1px rgba(255, 255, 255, 0.35);
}

.testimonial-quote::-webkit-scrollbar-thumb:active {
  background: rgba(15, 23, 42, 0.28);
}

.testimonial-name {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin: auto 0 4px;
  flex-shrink: 0;
}

.testimonial-role {
  color: #888888;
  display: block;
  line-height: 1.4;
  flex-shrink: 0;
}

.testimonial-slider .owl-stage-outer {
  padding: 8px 0 16px;
}

.testimonial-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0094e0 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.testimonial-slider-wrap:hover .testimonial-slider .owl-nav button {
  opacity: 1;
}

.testimonial-slider .owl-nav button:hover {
  background: #007bbd !important;
}

.testimonial-slider .owl-nav .owl-prev {
  left: -12px;
}

.testimonial-slider .owl-nav .owl-next {
  right: -12px;
}

.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 8px;
}

.testimonial-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 5px;
  background: #d0d0d0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-slider .owl-dots .owl-dot.active span,
.testimonial-slider .owl-dots .owl-dot:hover span {
  background: #0094e0;
  transform: scale(1.15);
}

/* ========== FAQ ========== */
.faq-sec {
  background: #F0F9FF;
  padding: 50px 0px;
}
.faq-sec .section-title {
    margin-bottom: 30px;
}

.faq-section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 32px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--srbs-border);
  border-radius: 8px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 17px;
  color: #737373;
  padding: 18px 24px;
  background: #ffffff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background:  #ffffff;
  color: #000000;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--srbs-gray);
  line-height: 1.7;
  padding: 0px 24px 20px;
      max-width: 100%;
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(135deg, #081a33 0%, #0b2d5e 45%, #0d4a82 100%);
  color: #ffffff;
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 148, 224, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 148, 224, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.06) 0%, transparent 35%);
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-logo-icon {
  width: 220px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-logo-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -1.5px;
  flex-shrink: 0;
}

.footer-logo-title .sr,
.footer-logo-title .b,
.footer-logo-title .s {
  color: #ffffff;
}

.footer-logo-sub {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  padding-top: 1px;
}

.footer-tagline {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  margin: 0 0 14px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.3;
  max-width: 280px;
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0 0 18px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-icon-box {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #ffffff;
}

.footer-col h5,
.site-footer h5 {
  font-weight: 600;
   font-family: "Satoshi-Bold", sans-serif;
  font-size: 14px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-subheading {
  margin-top: 28px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.55;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
   font-family: "Satoshi-Bold", sans-serif;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
   font-family: "Satoshi-Bold", sans-serif;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ========== LEGAL PAGES ========== */
.legal-page-sec {
  background: #F0F9FF;
  padding: 70px 0 90px;
}

.legal-page-title {
  color: #000000;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 auto 36px;
  max-width: 920px;
  font-family: "Bebas Neue", sans-serif;
}

.legal-page-content {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.legal-page-content h2 {
  color: #0b2d5e;
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  font-family: "Satoshi-Bold", sans-serif;
}

.legal-page-content h2:first-of-type {
  margin-top: 0;
}

.legal-page-content p,
.legal-page-content li {
  color: #2D2D2D;
  font-size: 15px;
  line-height: 1.7;
  font-family: "Satoshi-Medium", sans-serif;
}

.legal-page-content p {
  margin-bottom: 14px;
}

.legal-page-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal-page-content li {
  margin-bottom: 8px;
}

.legal-page-content a {
  color: #0074BB;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page-content a:hover {
  color: #005a94;
}

.legal-updated {
  font-size: 13px !important;
  color: #6c757d !important;
  margin-bottom: 20px !important;
}
#goTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: all .3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
	    align-items: center;
    justify-content: center;
}

#goTopBtn:hover {
    background: #084298;
    transform: translateY(-5px);
}

/*--------------------sticky header new----------------------*/
.site-header{
   
    top:0;
    left:0;
    width:100%;
    
    transition:all .35s ease;
}

.site-header.scrolled{
    
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.site-header .logo{
    transition:.35s;
}

.site-header.scrolled .logo{
    transform:scale(.9);
}

.site-header .menu{
    padding:30px 0;
    transition:.35s;
}

.site-header.scrolled .menu{
    padding:18px 0;
}
/* ========== RESPONSIVE ========== */
@media (min-width: 1400px) {
    .site-header .container {
        max-width: 1320px !important;
    }
}

@media (max-width: 1439px) {	
	.testimonial-slider {
		padding-left: calc((var(--screen-width) - 1315px) / 2);
	}
}
@media (max-width: 1399.9px) {
	.testimonial-slider {
        padding-left: calc((var(--screen-width) - 1135px) / 2);
    }
}
@media (max-width: 1279px) {
	.testimonial-slider {
        padding-left: calc((var(--screen-width) - 1118px) / 2);
    }
	.hero-sec h1 {
    font-size: 50px;
	}
	.event-body h5 {
    font-size: 22px;
	}
}
@media (max-width: 1199.9px) {
  .main-header-inner {
    min-height: 100px;
  }
  .nav-row-top .nav-links {
    gap: 14px;
  }

  .nav-row-bottom .nav-links {
    gap: 18px;
  }

  .logo-title {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .logo-sub {
    font-size: 8.5px;
  }

  .nav-row-bottom .nav-links a {
    font-size: 14px;
  }

  .btn-alumni-portal {
    font-size: 11px;
    padding: 8px 14px;
    margin-left: 12px;
  }
  .blog-card.small img {
    width: 200px;
  }
  .testimonial-slider {
        padding-left: calc((var(--screen-width) - 940px) / 2);
    }
	.header-logo {
       max-width: 360px;
    padding-right: 35px;
	}
}

@media (max-width: 1079px) {
	.main-header-inner {
        padding: 10px 10px 8px;
	}
	.top-bar-inner {
        padding: 0 10px;
    }
}
@media (min-width: 992px) {
  .site-header:not(.scrolled) {
    overflow: visible;
  }

  .main-header,
  .main-header-inner,
  .header-nav,
  .nav-row {
    overflow: visible;
  }

  .nav-links .dropdown:hover > .submenu,
  .nav-links .dropdown.open > .submenu,
  .nav-links .has-dropdown:hover > .dropdown-menu,
  .nav-links .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .mobile-menu-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-header.scrolled .mobile-menu-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 991px) {
  .header-vdivider,
  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .mobile-nav {
    display: block !important;
  }

  .site-header.scrolled .mobile-nav,
  .site-header.scrolled .mobile-nav.open {
    top: 75px;
    height: calc(100vh - 75px);
  }

  .site-header.scrolled .mobile-nav.open {
    padding: 16px 30px 20px;
  }

  .main-header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    padding-right: 56px;
    min-height: auto;
  }

  .header-logo {
    padding-right: 0;
  }

  .hero-sec h1 {
    font-size: 28px;
  }

  .hero-program-prefix {
    font-size: 18px;
  }

  .hero-program-badge {
    font-size: 15px;
    padding: 6px 12px;
  }

  .hero-sec {
    min-height: auto;
  }

  .hero-form-static {
    position: relative;
    inset: auto;
    padding: 0 0 40px;
  }

  .hero-form-static .col-lg-7 {
    display: none;
  }

  .hero-form-col {
    justify-content: center;
  }

  .hero-slide-container {
    min-height: 360px;
    padding: 80px 0 56px;
  }

  .hero-slider,
  .hero-slider .owl-stage-outer,
  .hero-slider .owl-stage,
  .hero-slider .owl-item,
  .hero-slide {
    min-height: 360px;
  }

  .hero-form-static {
    padding: 80px 0 60px;
  }

  .hero-slider .owl-dots {
    max-width: 100%;
    padding: 0 16px;
    bottom: 16px;
  }

  .hero-form-col {
    justify-content: center;
  }

	.hero-none {
		display: none;
	}
  .register-card {
	margin: auto;
	margin-top: 10px;
	max-width: 100%;
  }

  .register-form .form-row-split {
    gap: 14px;
  }


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

  .faq-section-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .testimonial-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .testimonial-header {
    margin-bottom: 28px;
  }

  .testimonial-slider .owl-nav button {
    opacity: 1;
  }

  .video-section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .video-content h3 {
    font-size: 20px;
  }

  .program-card {
    flex-direction: column;
    text-align: center;
	gap: 15px;
  }
  .comon-padd {
    padding: 50px 0;
}

  .program-img {
    width: 100%;
    height: auto;
  }

  .blog-card.small {
    flex-direction: column;
  }

  .blog-card.small img {
    width: 100%;
    height: auto;
  }

  .recruiter-slider .logo-box {
    width: 160px;
    min-width: 160px;
    min-height: 100px;
    padding: 15px;
  }

  .recruiter-slider .logo-box img {
    width: 130px;
    height: 65px;
  }

  .mobile-nav {
        top: 98px;
        height: calc(100vh - 98px);
    }
  .top-bar {
    font-size: 13px;
  }
  .section-title {
    margin-bottom: 15px;
  }
  .event-body h5, .blog-body h5 {
    font-size: 18px;
  }
	.event-body {
    padding: 20px 2px 0px;
}
    .testimonial-slider {
        padding-left: calc((var(--screen-width) - 705px) / 2);
    }
	.testimonial-name {
    font-size: 20px;
	}
	.events-row {
		padding: 0px;
		margin: 0px;
	}
.events-row .col-md-6{
	padding: 0;
}
}

@media (max-width: 767px) {
  .comon-padd {
    padding: 40px 0;
  }

  .top-bar-inner {
    padding: 0 16px;
  }

  .top-bar-marquee-item {
    white-space: nowrap;
  }

  .top-bar-marquee-set {
    gap: 2rem;
    padding-right: 2rem;
  }

  .top-bar {
    font-size: 12px;
  }

  .main-header-inner {
    padding: 12px 12px;
    padding-right: 56px;
  }

  .logo-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .logo-sub {
    font-size: 8px;
  }

  .hero-sec h1 {
    font-size: 22px;
  }

  .about-section-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .about-image img {
    border-radius: 18px;
  }

  .about-content p {
    font-size: 14px;
  }

  .testimonial-title {
    font-size: 22px;
  }

  .testimonial-intro {
    font-size: 14px;
  }

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

  .testimonial-quote {
    height: 160px;
    max-height: 160px;
  }

  .brochure-sec {
    padding: 40px 0;
  }

  .btn-brochure-download {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .testimonial-slider .owl-nav .owl-prev {
    left: 0;
  }

  .testimonial-slider .owl-nav .owl-next {
    right: 0;
  }

  .video-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .video-content h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .video-content p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn-newsletter {
    width: 100%;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 0 20px;
  }

  .footer-legal {
    gap: 20px;
  }

  .legal-page-sec {
    padding: 40px 0 60px;
  }

  .legal-page-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .legal-page-content {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .recruiter-slider {
    margin-top: 30px;
  }

.testimonial-slider {
        padding-left: 10px;
    }
	.testimonial-name {
        font-size: 18px;
    }
	.faq-accordion .accordion-button {
    font-size: 15px;
	}
	.hero-sec {
        min-height: auto;
    }

  .hero-form-static {
    padding: 0 0 32px;
  }

  .hero-slide-container {
    min-height: 300px;
    padding: 50px 0 48px;
  }
  .hero-slide .hero-content {
    padding: 20px 0 0;
    gap: 50px;
}
.register-card {
        width: 100%;
    }
	.mobile-nav {
        top: 140px;
        height: calc(100vh - 140px);
    }
	.btn-alumni-portal {
        margin-left: 0;
    }
	.header-logo ,.site-header.scrolled .header-logo {
        max-width: 270px;

	}
	.mobile-nav {
        top: 92px;
        height: calc(100vh - 92px);
    }
}

@media (max-width: 575px) {
  .logo-link {
    align-items: flex-start;
  }

  .logo-wordmark {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .logo-tagline {
    font-size: 8px;
  }
}
