@charset 'UTF-8';
.hero-section-phone {
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(250deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.30) 100%);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  backdrop-filter: blur(7.17072057723999px);
  padding: 10px 30px;
}
.number-position-1 {
  left: -50px;
  top: 25px;
  z-index: 99;
}
.number-position-2 {
  right: 15px;
  top: 40px;
  z-index: 99;
}
.number-position-3 {
  left: -103px;
  bottom: 15px;
  z-index: 99;
}
.number-position-4 {
  right: 50px;
  bottom: 20px;
  z-index: 99;
}
.hero-section-phone a.numbers-display {
  color: var(--dark-75);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .number-position-1 {
    left: 0px;
    top: 25px;
    z-index: 99;
  }
  .number-position-2 {
    right: 0px;
    top: 20px;
    z-index: 99;
  }
  .number-position-3 {
    left: -15px;
    bottom: 15px;
    z-index: 99;
  }
  .number-position-4 {
    right: 0;
    z-index: 99;
  }
}
.heading-star{
  position: absolute;
  top:-30px;
  left: -30px;
}
.static-visual-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: .25rem;
  background: #fff;
}
.static-visual-bar > div {
  flex: 0 0 150px; /* fixed width for each box */
  text-align: center;
  padding: 10px 0px 2.5px 0;
  position: relative;
}
.static-visual-bar > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background-color: #ddd;
}
@media (max-width: 768px) {
  .static-visual-bar {
    justify-content: space-between;
  }
  .static-visual-bar > div {
    flex: 0 0 calc(50% - 10px);
  }
  .static-visual-bar > div::after {
    display: none;
  }
}
.career-transform.hover-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.career-transform.hover-card img {
  display: block;
  width: 100%;
  height: auto;
}
.career-transform .initial-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 25px 0;
  background: linear-gradient(
    to top,
    rgba(26, 43, 77, 0.9) 0%,
    rgba(26, 43, 77, 0.7) 60%,
    transparent 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}
.career-transform .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  background: rgba(26, 43, 77, 0.9);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 3;
}
.career-transform .overlay-content {
  padding: 20px;
}
.career-transform .overlay-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.career-transform .overlay-text {
  transition: opacity 0.3s ease 0.3s;
}
.career-transform.hover-card:hover .initial-title {
  opacity: 0;
}
.career-transform.hover-card:hover .overlay {
  transform: translateY(0);
}
.career-transform.hover-card:hover .overlay-text {
  opacity: 1;
}
@media (max-width: 767px) {
  .career-transform .initial-title {
    display: none !important;
  }
  .career-transform .overlay {
    transform: translateY(0) !important;
  }
  .career-transform .overlay-text {
    opacity: 1 !important;
  }
}
.career-transform .transform-icon{
    width: 80px;
    height: 80px;
}
.hr-white-line {
  background: rgba(255, 255, 255, 0.25);
  height: 1px;
  display: block;
  width: 100%;
  margin: 20px 0 20px 0;
}
.hr-black-line {
  background: rgba(0, 0, 0, 0.15);
  height: 1px;
  display: block;
  width: 100%;
  margin: 20px 0 20px 0;
}
#careerChart {
  display: block;
}
.ecosystem-box{
   display: flex;
   flex-direction: column;
   padding: 2em 2.5em;
   background: #fff;
   border-radius: 15px;
   border:1px solid var(--primarycolor);
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   position: relative;
}
.ecosystem-box .eco-numbers{
  background:var(--primarycolor);
  border-radius: 50px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  position: absolute;
  right:-15px;
  top: 25px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.ecosystem-box:hover .eco-numbers{
    background:var(--tertiarycolor);
}
.custom-tab-section .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
  background:var(--colorwhite);
  border-radius: 5px;
  border: 1px solid var(--primarycolor);
  color:var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.custom-tab-section .nav-pills .nav-link{
  background:var(--colorwhite);
  border-radius: 5px;
  border: 1px solid var(--disabled);
  color:var(--dark-90);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  padding: 1em;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.custom-tab-section .nav-pills .nav-link:hover{
  background:var(--colorwhite);
  color:var(--tertiarycolor);
  border: 1px solid var(--tertiarycolor);
}
.custom-tab-section .nav-pills .nav-link:last-child{
  margin-bottom: 0;
}
.custom-tab-section .nav-link span.show-eco-text {
  display: none;
}
.custom-tab-section .nav-link.active span.show-eco-text {
  display: inline-block;
}
.refuse-box{
  border: 3px solid var(--tertiarycolor);
}
.box-logo-ribbon {
  position: absolute;
  right: 20px;
  top: -58px;
  padding: 0.3em 0.6em;
  background: var(--tertiarycolor);
  border-right: 8px solid rgba(0, 0, 0, 0.8);
  border-bottom: 12px solid transparent;
  clip-path: polygon(calc(100% - 8px) 0, 0 0, 0 calc(100% - 12px), calc(50% - 4px) 100%, calc(100% - 8px) calc(100% - 12px), calc(100% - 8px) 8px, 100% 8px);
}
.choose-path-box{
  background: rgba(255, 255, 255, 0.10);
}
.campus-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.culture-box {
  display: inline-block;
}
.culture-box .culture-overlay {
  position: absolute;
  inset: 0; 
  background: rgba(26, 43, 77, 0.5); 
  border-radius: 10px;
  pointer-events: none;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.culture-box:hover .culture-overlay {
  background: rgba(26, 43, 77, 0.85); 
}
.culture-box .culture-overlay-text {
  position: absolute;
  bottom: 25px;
  left: 25px; 
  padding: 1em 0.5em;
}
.culture-box .culture-icon{
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--primarycolor);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.culture-box:hover .culture-icon{
  color: var(--colorwhite); 
}
.left-right-placement-carousel{
  width: 250px;
  height: auto;
}
.left-right-placement-carousel .carousel-box{
  background: var(--colorwhite); 
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
}
.left-right-placement-carousel .carousel-box .student-picture{
  width: 100px;
  height: 100px;
  background: #fff1c2;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}
.left-right-placement-carousel .carousel-box .company-logo{
  width: 100px;
  height: auto;
  display: inline-block;
  text-align: center;
}