@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&display=swap");
body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #303c6c;
  --secondary-color: #e96524;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 15px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 80px 0 80px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  font-weight: 700;
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  font-weight: 600;
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 500;
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
}
.title {
  font-size: 18px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "Poppins", sans-serif;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}
.bgSecondary {
  background: var(--secondary-color);
}
.bgGrey {
  background-color: #f1f1f1;
}
.containerFull {
  max-width: 1680px;
  margin: 0 auto;
}
.header.stricky-fixed .leftLogo {
  width: 160px;
}
.header {
  padding: 10px 0;
}
.heroSection {
  background: url(../images/banner/banner.png) no-repeat center center/cover;
  position: relative;
  height: calc(100vh - 90px);
  z-index: 1;
  display: flex;
  align-items: center;
  padding-bottom: 140px;
}
.heroSection:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
  width: 100%;
  height: 100%;
}
.leftHeroBanner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 950px;
}

.heroBoxBottom {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  width: 90%;
  max-width: 1400px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  padding: 25px 30px;
  z-index: 3;
  border-top: 6px solid var(--secondary-color);
  font-size: 15px;
  line-height: 1.7;
}
.pad-extra {
  padding-top: 150px;
}
.leftLogo {
  width: 220px;
}
.leftLogo img {
  width: 100%;
}
.centerMenu ul {
  display: flex;
}
.centerMenu ul li a {
  color: #333;
  font-size: 17px;
  font-weight: 500;
  padding: 5px 18px;
  &:hover {
    color: var(--secondary-color);
  }
}
.textBannerLight {
  color: #ccc;
}
.btnGroup {
  display: flex;
  justify-content: start;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.btnBanner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  padding: 12px 35px;
  z-index: 1;
  color: #000;
  background: #fff;
}
.btnBanner i {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.btnBanner:after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.btnBanner:hover:after {
  width: 100%;
}
.btnBanner:hover {
  color: #fff;
}
.btnSecondary {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  padding: 15px 40px;
  z-index: 1;
  color: #000;
  background: #ccc;
  border: none;
}
.btnTheme {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  padding: 12px 35px;
  z-index: 1;
  color: #fff;
  background: var(--secondary-color);
  border: none;
}
.btnTheme i {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.btnTheme:after,
.btnSecondary:after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: #000;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.btnTheme:hover:after,
.btnSecondary:hover:after {
  width: 100%;
}
.btnTheme:hover,
.btnSecondary:hover {
  color: #fff;
}
.subHeader {
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.subHeaderContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.subLeft a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.subLeft a:hover {
  color: #ffcc00;
}

.subLeft i {
  margin-right: 5px;
}

.subRight .subBtn {
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.subRight .subBtn:hover {
  background: #fff;
  color: var(--primary-color);
}

.infoBox {
  border: 1px solid #ccc;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.infoHeader {
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  display: inline-block;
}
.line {
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

.line.orange {
  background: var(--secondary-color);
}

.infoBody {
  padding: 20px;
}

.infoBody p {
  margin-bottom: 20px;
}

.infoBox.active {
  background: var(--primary-color);
  color: #fff;
  border: none;
}

.infoBox.active p {
  color: #f1f1f1;
}

.infoBox.active .whiteHeader {
  background: var(--secondary-color);
  color: #fff;
}
.about-section {
  overflow: hidden;
}

.about-section .about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  background: var(--primary-color);
  min-height: 100%;
}
.program-card {
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.program-card.active {
  background: #263b7e;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.program-title {
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  color: #fff;
}

.program-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: #f26522;
  margin-top: 6px;
  border-radius: 2px;
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.program-list i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.program-card .btn {
  border-radius: 30px;
  font-weight: 600;
  margin-top: auto;
  padding: 10px 25px;
}
.director-img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border: 5px solid var(--secondary-color);
  background: #2c2b30;
}

.director-info {
  border-left: 5px solid #263b7e;
}

.staff-card {
  transition: all 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.staff-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.content-section {
  position: relative;
  /* min-height: 100vh; */
  background: url("../images/banner/banner.png") center center/cover no-repeat
    fixed;

  text-align: center;
  overflow: hidden;
}

.content-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 60, 108, 0.85);
  z-index: 1;
}
.content-section::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  pointer-events: none;
}
.content-section .containerFull {
  position: relative;
  z-index: 2;
}
.step-box {
  background: #fff;
  border: 1px solid #e5e8f0;
  transition: all 0.3s ease;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0px 2px 5px #ccc;
}
.step-box:hover {
  transform: translateY(-5px);
  border-color: #f26522;
  box-shadow: 0 8px 20px rgba(242, 101, 34, 0.2);
}

.step-icon {
  width: 75px;
  height: 75px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.step-box:hover .step-icon {
  background: var(--secondary-color);
  transform: rotate(10deg);
}

.footer {
  background: var(--primary-color);
  padding: 4rem 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  pointer-events: none;
}
.footerLogo {
  width: 220px;
}
.footerLogo img {
  max-width: 100%;
}
/* .quickLinks{
  background: #fff;
  padding:50px 40px 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: -90px;
  border:1px solid #e0e0e0
} */
.quickLinks ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.quickLinks ul li a {
  display: inline-block;
  padding: 5px 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quickLinks ul li a:hover {
  color: var(--secondary-color);
}

.footerColumn p span {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.copyright {
  background: #fff;
  padding: 15px 0;
  text-align: center;
}
.copyright p {
  color: #000;
}
.whatsApp {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 190px;
  z-index: 99;
}
.whatsApp img {
  max-width: 100%;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 15px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.nav-pills .nav-link {
  border-radius: 30px;
  color: #0b3d91;
  border: 1px solid #0b3d91;
  margin: 0 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding:10px 25px;
}

.nav-pills .nav-link.active {
  background: #0b3d91;
  color: #fff;
  box-shadow: 0 3px 8px rgba(11, 61, 145, 0.25);
}
.accordion-button {
  background: #e6e6e6;
  color: var(--primary-color, #0b3d91);
  font-weight: 500;
  font-size: 1.2rem;
  padding: 20px 25px;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
  cursor:pointer;
}
.ppr-link {
 
  background-color: #e6e6e6 ; 
  color: #1a2a5e;
  font-weight: 600;
  font-size: 1.2rem;
  
}
.accordion-button:focus,
.accordion-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.accordion-item {
  background: transparent !important;
  border: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button > i {
  background: var(--secondary-color, #0b3d91);
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.accordion-button span i {
  background: none !important;
  color: var(--secondary-color, #0b3d91);
  font-size: 1.3rem;
  margin-right: 8px;
  transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: #0b3d91;
  color: #fff !important;
}

.accordion-button:not(.collapsed) > i {
  transform: rotate(180deg);
  background: #fff;
  color: #0b3d91;
}

.accordion-button:not(.collapsed) span i {
  color: #fff !important;
}


#mainAccordion > .accordion-item > .accordion-header > .accordion-button:hover {
  background: var(--primary-color, #0b3d91);
  color: #fff;
}

#mainAccordion .accordion .accordion-button:hover {
  background: #e6e6e6;
  color: #0b3d91 !important;
  cursor: default !important;
}

#mainAccordion .accordion .accordion-button:not(.collapsed):hover {
  background: #0b3d91;
  color: #fff !important;
}


#mainAccordion > .accordion-item > .accordion-collapse > .accordion-body {
  background: #f5f5f5;
  border-radius: 0 0 25px 25px;
  padding: 35px 45px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#mainAccordion .accordion .accordion-body {
  background: #fff !important;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

#mainAccordion .accordion .accordion-button:not(.collapsed) {
  background: #0b3d91 ;
  color: #fff !important;
}

#mainAccordion .accordion .accordion-button.collapsed {
  background: #e6e6e6 !important;
  color: #0b3d91 !important;
}

#mainAccordion .accordion .accordion-button:not(.collapsed) span,
#mainAccordion .accordion .accordion-button:not(.collapsed) span i {
  color: #fff !important;
}


.accordion-collapse {
  transition: all 0.4s ease-in-out;
}

.innerTab:not(.collapsed){
    background:#6CB2E2 !important;
}
.card {
  transition: transform 0.25s ease-in-out;
  background-color: #f1f1f1;
  padding: 20px!important;
  border: 1px solid #ccc;
}
.card:hover {
  transform: translateY(-5px);
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.list-group-item:last-child {
  border-bottom: none;
}

.btnTheme2 {
  position: relative;
  display: inline-block; 
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  padding: 8px 15px;
  z-index: 1;
  width: auto;
  max-width: fit-content; 
  color: #fff;
  background: var(--secondary-color);
  border: none;

}

.btnTheme2 i {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.btnTheme2:after,
.btnSecondary:after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background: #000;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.btnTheme2:hover:after,
.btnSecondary:hover:after {
  width: 100%;
}
.btnTheme2:hover,
.btnSecondary:hover {
  color: #fff;
}
.hamburger {
  display: none;
}
.mobileMenu {
  display: none;
}