:root {
  --primary: #06BBCC;
  --secondary: #fc8a07;
  --light: #F5F8F2;
  --dark: #252C30;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}


h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Montserrat";
}


p,li{
  color: #000000;

}
.fs-4 {
  color: var(--primary);
  font-weight: 700;
}

.display-1 {
  font-size: 2.87rem;
}


.display-3 {
  font-size: 1.87rem;
}


.btn {
  transition: .5s;
  font-weight: 500;
  color: var(--primary);
  font-size: 16px;
}

.btn-primary,
.btn-outline-primary:hover {
  color:var(--primary);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-square {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50px;
}

.sticky-top {
  top: -150px;
  transition: .5s;
}

.navbar .navbar-brand {
  padding: 0;
  top: 0;
  left: 0;
}

.navbar .navbar-brand img {
  width: 230px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 600;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    width: 126px;

  }

  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 75px;
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(2, 94, 148, 0.528);
  z-index: 1;
}

.carousel-caption .text {
  font-size: 1.1rem;
  font-weight: 500;

}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--dark);
  border: 15px solid var(--dark);
}

/* .carousel-item {
  height: 800px;
} */

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#hero .carousel-caption {
    min-height: 100vh;
    padding: 1rem;
}

#hero .row {
    align-items: center;
}

.page-header {
  background: linear-gradient(url(../assets/img/bg_img-1.jpg) center center no-repeat);
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--primary);
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(25% - 13px);
  background: var(--dark);
  border: 10px solid #FFFFFF;
  border-radius: 28px;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

.product {
  background: #D9EEF0;
  background-size: auto;
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 65px;
  height: 75px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 28px 30px 30px 38px;
  background: #FFFFFF;
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 13px;
  border-left: 40px solid var(--primary);
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

/* #dates {
  background-color: #deedfc;
  padding: 50px 0;
} */
.contact .btn-square {
  width: 100px;
  height: 100px;
  border: 20px solid var(--light);
  background: #06BBCC;
  border-radius: 50px;
}


.testimonial-carousel1 .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel1 .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel1 .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border-radius: 30px;
  background: var(--bs-light);
  transition: 0.5s;
}

.testimonial-carousel1 .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel1 .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel1 .owl-dots .owl-dot span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

.testimonial-carousel1 img {
  border-radius:10px;
}

.testimonial-carousel1  p{
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding-top:15px;
}
/*** Team Start ***/
.team .team-item {
    position: relative;
    background: aliceblue;
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-primary);
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

.footer {
  color: #B0B9AE;
  background-color: #D9EEF0;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #B0B9AE;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #BFF0F4;
}

.copyright {
  background: #76A0A4;
}

.copyright a:hover {
  color: #FFFFFF !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
}

.wrapper {
  overflow: hidden;
  max-width: auto;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.wrapper .title-text {
  display: flex;
  width: 200%;
}

.wrapper .title {
  width: 50%;
  font-size: 35px;
  font-weight: 600;
  color: black;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .slide-controls {
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 5px;
}

.slide-controls .slide {
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}

.slide-controls label.signup {
  color: #000;
}

.slide-controls .slider-tab {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 5px;
  background: #06BBCC;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*input[type="radio"] {
  display: none;
}*/

#signup:checked~.slider-tab {
  left: 50%;
}

#signup:checked~label.signup {
  color: #fff;
  cursor: default;
  user-select: none;
}

#signup:checked~label.login {
  color: #000;
}

#login:checked~label.signup {
  color: #000;
}

#login:checked~label.login {
  cursor: default;
  user-select: none;
}

.wrapper .form-container {
  width: 100%;
  overflow: hidden;
}

.form-container .form-inner {
  display: flex;
  width: 200%;
}

.form-container .form-inner form {
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
  height: 50px;
  width: 100%;
  margin-top: 20px;
}

.form-inner form .field input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}

.form-inner form .field input:focus {
  border-color: #4ec5f8;

}

.form-inner form .field input::placeholder {
  color: #999;
  transition: all 0.3s ease;
}

form .field input:focus::placeholder {
  color: #b3b3b3;
}

.form-inner form .pass-link {
  margin-top: 5px;
}

.form-inner form .signup-link {
  text-align: center;
  margin-top: 30px;
}

.form-inner form .pass-link a,
.form-inner form .signup-link a {
  color: #06BBCC;
  text-decoration: none;
}

.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
  text-decoration: underline;
}

.signup-link {
  color: #000000;
}

p {
  margin-bottom: 0px !important;
  text-align: justify;
  font-weight: 450;
}

i {
  color: #fc8a07;
  padding-right: 5px;
}

@media (max-width: 768px) {
  .carousel-item {
    height: 1500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .carousel-item {
    height: 1200px;
  }

  .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.table {
  border-color:#06BBCC;
  font-weight: 500;
}

.counsel {
  text-align: right;
}

@media (max-width: 768px) {
  .counsel {
    text-align: center;
  }

  .counsel img {
    margin-top: 0px !important;
  }

  .march {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counsel {
    text-align: center;
  }

  .counsel img {
    margin-top: 0px !important;
  }

  .march {
    padding-top: 30px;
  }
}

.box {
  border: 1px solid #069cf9;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 15px;
}

.dropdown-item {
  font-weight: 530;
  font-size: 17px;
  margin-top: 5px;
}


/*process-box*/

.process-box{
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 7px 0 #00000057;
}
.process-left:after{
      content: "";
  border-top: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
  display: inline-grid;
  position: absolute;
  right: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: 3px -2px 3px 0px #00000036;
  z-index: 1;
}
.process-right:after{
      content: "";
  border-top: 15px solid #ffffff00;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff00;
  display: inline-grid;
  position: absolute;
  left: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: -1px 1px 3px 0px #0000001a;
  z-index: 1;
}
.process-step{
  background: #66c1fa;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  height: 100%;
  padding-top: 8px;
  position: relative;
  top: -26px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: -6px 8px 0px 0px #00000014;
}
.process-point-right{
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  box-shadow: 0 0 0px 4px #5c5c5c;
  margin: auto 0;
  position: absolute;
  bottom: 40px;
  left: -63px;
}
.process-point-right:before{
  content: "";
  height: 144px;
  width: 11px;
  background: #5c5c5c;
  display: inline-grid;
  transform: rotate(36deg);
  position: relative;
  left: -50px;
  top: -0px;
}
.process-point-left{
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  box-shadow: 0 0 0px 4px #5c5c5c;
  margin: auto 0;
  position: absolute;
  bottom: 40px;
  right: -63px;
}
.process-point-left:before {
  content: "";
  height: 144px;
  width: 11px;
  background: #5c5c5c;
  display: inline-grid;
  transform: rotate(-38deg);
  position: relative;
  left: 50px;
  top: 0px;

}

.process-last:before{
  display: none;
}
.process-box p{
  z-index: 9;
}
.process-step p{
  font-size: 20px;
}
.process-step h2{
  font-size: 39px;
}
.process-step:after{
  content: "";
  border-top: 8px solid #04889800;
  border-bottom: 8px solid var(--primary);
  border-left: 8px solid #04889800;
  border-right: 8px solid var(--primary);
  display: inline-grid;
  position: absolute;
  left: -16px;
  top: 0;
}
.process-step:before{
  content: "";
  border-top: 8px solid #ff000000;
  border-bottom: 8px solid var(--primary);
  border-left: 8px solid var(--primary);
  border-right: 8px solid #ff000000;
  display: inline-grid;
  position: absolute;
  right: -16px;
  top: 0;
}
.process-line-l{
  background: white;
  height: 4px;
  position: absolute;
  width: 136px;
  right: -153px;
  top: 64px;
  z-index: 9;
}
.process-line-r{
  background: white;
  height: 4px;
  position: absolute;
  width: 136px;
  left: -153px;
  top: 63px;
  z-index: 9;
}

.campus-icon {
  width: 36px;
  height: 36px;
  background-color: #3c6bb5; /* different color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}




@media (max-width: 768px) {
  #process-box {
    padding-top: 10px;
    margin: 50px;
    
  }
}



/* Dates*/

.stats i {
  color: white;
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  color: var(--heading-color);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}
/************************** Programme offered********************/

.programmes-tabs {
  border: none;
}

.programmes-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 15px;
  color: #000;
  transition: 0.3s;
}

.programmes-tabs .nav-link:hover,
.programmes-tabs .nav-link.active {
  background: #06BBCC;
  color: #fff;
  border-color: #06BBCC;
}

.tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Optional: add some spacing in content */
.programmes-content {
  padding-left: 20px;
}

/********************* Application Process ************************/
.applicationprocess {
  padding:50px 15px;
  font-family:Arial, sans-serif;
  background:#fff;
  text-align:center;
}

.applicationprocess input[type=radio] {
  display: none;
}

/* Steps container */
.process-steps {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
}

/* STEP */
label.step {
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
}

/* OUTER */
.outer {
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
  overflow:hidden;
}

/* Set outer background color for hover & active */
.step1 label:hover .outer,
.step1 input:checked + label .outer {
  background:#ff7a00;
}
.step2 label:hover .outer,
.step2 input:checked + label .outer {
  background:#ff2d55;
}
.step3 label:hover .outer,
.step3 input:checked + label .outer {
  background:#7c3aed;
}
.step4 label:hover .outer,
.step4 input:checked + label .outer {
  background:#2563eb;
}
.step5 label:hover .outer,
.step5 input:checked + label .outer {
  background:#06b6d4;
}
.step6 label:hover .outer,
.step6 input:checked + label .outer {
  background:#10b981;
}
.step7 label:hover .outer,
.step7 input:checked + label .outer {
  background:#facc15;
}

/* Outer color on active */
#s1:checked ~ .process-steps .step1 .outer { background: #ff7a00; }
#s2:checked ~ .process-steps .step2 .outer { background: #ff2d55; }
#s3:checked ~ .process-steps .step3 .outer { background: #7c3aed; }
#s4:checked ~ .process-steps .step4 .outer { background: #2563eb; }
#s5:checked ~ .process-steps .step5 .outer { background: #06b6d4; }
#s6:checked ~ .process-steps .step6 .outer { background: #10b981; }
#s7:checked ~ .process-steps .step7 .outer { background: #facc15; }

/* Outer color on hover */
.process-steps .step1:hover .outer { background: #ff7a00; }
.process-steps .step2:hover .outer { background: #ff2d55; }
.process-steps .step3:hover .outer { background: #7c3aed; }
.process-steps .step4:hover .outer { background: #2563eb; }
.process-steps .step5:hover .outer { background: #06b6d4; }
.process-steps .step6:hover .outer { background: #10b981; }
.process-steps .step7:hover .outer { background: #facc15; }

/* INNER */
.inner {
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  color:#fff;
  position:relative;
  transition:.3s;
}

/* STEP COLORS */
.step1 .inner { background:#ff7a00; }
.step2 .inner { background:#ff2d55; }
.step3 .inner { background:#7c3aed; }
.step4 .inner { background:#2563eb; }
.step5 .inner { background:#06b6d4; }
.step6 .inner { background:#10b981; }
.step7 .inner { background:#facc15; color:#000; }

/* WAVE BASE */
.inner::after {
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(
    from 0deg,
    rgba(255,255,255,.2) 0deg 45deg,
    rgba(255,255,255,.6) 45deg 135deg,
    rgba(255,255,255,.2) 135deg 225deg,
    rgba(255,255,255,.6) 225deg 315deg,
    rgba(255,255,255,.2) 315deg 360deg
  );
  opacity:0;
}

/* INNER DESIGN – HOVER & ACTIVE SAME */
label.step:hover .inner,
input:checked + label.step .inner,
input:checked + label.step:hover .inner {
  transform: scale(1.2);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

label.step:hover .inner::after,
input:checked + label.step .inner::after,
input:checked + label.step:hover .inner::after {
  opacity:1;
  animation: waveBorder 2s linear infinite;
}

/* CONTENT LOADED = ACTIVE STEP (FORCE INNER DESIGN) */
#s1:checked ~ .process-steps .step1 .inner,
#s2:checked ~ .process-steps .step2 .inner,
#s3:checked ~ .process-steps .step3 .inner,
#s4:checked ~ .process-steps .step4 .inner,
#s5:checked ~ .process-steps .step5 .inner,
#s6:checked ~ .process-steps .step6 .inner,
#s7:checked ~ .process-steps .step7 .inner {
  transform: scale(1.2);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

#s1:checked ~ .process-steps .step1 .inner::after,
#s2:checked ~ .process-steps .step2 .inner::after,
#s3:checked ~ .process-steps .step3 .inner::after,
#s4:checked ~ .process-steps .step4 .inner::after,
#s5:checked ~ .process-steps .step5 .inner::after,
#s6:checked ~ .process-steps .step6 .inner::after,
#s7:checked ~ .process-steps .step7 .inner::after {
  opacity:1;
  animation: waveBorder 2s linear infinite;
}

/* WAVE ANIMATION */
@keyframes waveBorder {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

/* CONTENT */
.process-content {
   display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  background: #f7f5f1;
  padding: 25px;
  border-radius: 8px;
  margin: 50px auto 0 auto;
  max-width: 700px; 
  text-align: center; 
}

.content-box { display:none; }

#s1:checked ~ .process-content #c1,
#s2:checked ~ .process-content #c2,
#s3:checked ~ .process-content #c3,
#s4:checked ~ .process-content #c4,
#s5:checked ~ .process-content #c5,
#s6:checked ~ .process-content #c6,
#s7:checked ~ .process-content #c7 {
  display:block;
}

@media (max-width:768px){

  /* Remove scroll */
  .process-steps{
    overflow-x: hidden;
    justify-content: space-between;
    width: 100%;
  }

  /* Reduce step size */
  label.step{
    width: 46px;
    height: 46px;
  }

  .outer{
    width: 46px;
    height: 46px;
  }

  .inner{
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/***************** Guideliness **********************/
.features {
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.features .nav-tabs {
    border: none;
}

.features .nav-link {
    border: 1px solid #06BBCC;
    padding: 12px 15px;
    transition: all 0.3s ease;
    color: #06BBCC;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
}

.features .nav-link:hover {
    color: #fff;
    background-color: #06BBCC;
}

.features .nav-link.active {
    color: #fff;
    background-color: #06BBCC;
    border-color: #06BBCC;
    font-size: 17px;
}

.features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.features .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features .details p {
    color: #000;
    line-height: 31px;
}

.features .details p:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .features .nav-link {
        padding: 15px;
        border: 2px solid #06BBCC;
    }
    .features .nav-link.active {
        background-color: #06BBCC;
        color: white;
    }
}

/* Dropdown hover fix */
#dropdown-item-1:hover {
    background-color: #06BBCC;
    color: white;
}
/***************Dates*********************/
.neo-card {
  position: relative;
  padding: 60px 20px 40px;
  border-radius: 12px; /* inner card corners */
  background: #E6F7F9; /* light-colored inner square */
  border: 2px solid rgba(200, 200, 200, 0.5);
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  color: #333;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* Outer rotating square with rainbow border only */
.neo-card::before {
  content: "";
  position: absolute;
  top: -15px; left: -15px;
  right: -15px; bottom: -15px;
  border-radius: 12px; /* match inner card */
  border: 4px solid;
  /* border-image: linear-gradient(45deg, #00f, #0ff, #0f0, #ff0, #f0f, #f00) 1; rainbow border */
  background: transparent; /* no background */
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
/*   animation: rotate-ring 20s linear infinite; */
  pointer-events: none;
  z-index: 0;
}

/* Rotating animation */
@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Inner static date circle */
.neo-date-circle {
  position: relative;
  margin: 20px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%; /* round date */
  background: #06BBCC; /* golden circle */
  border: 3px solid rgba(6, 187, 204, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
 box-shadow:
    0 0 20px rgba(6, 187, 204, 0.7),
    inset 0 0 10px rgba(6, 187, 204, 0.4);
  z-index: 1;
}

/* Date text styling */
.neo-date-circle .neo-date {
  font-size: 20px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

/* Title styling */
.neo-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #06BBCC;
}

/* editable clean look */
[contenteditable]:focus {
  outline: none;
  background: rgba(255, 200, 0, 0.08);
  border-radius: 6px;
  padding: 2px 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .neo-card {
    padding: 40px 15px 30px;
  }
  .neo-date-circle {
    width: 100px;
    height: 100px;
  }
  .neo-title {
    font-size: 18px;
  }
  .neo-date-circle .neo-date {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .neo-card {
    padding: 30px 10px 20px;
  }
  .neo-date-circle {
    width: 80px;
    height: 80px;
  }
  .neo-title {
    font-size: 16px;
  }
  .neo-date-circle .neo-date {
    font-size: 12px;
  }
}
/********** faq **************/

/* Title divider */
.title-divider .line {
  flex: 1;
  height: 3px;
  background-color: #6c757d;
  border-radius: 2px;
}
.title-divider i {
  flex-shrink: 0;
}

/* Add padding and border styling for accordion items */
.accordion-item {
  border: 1px solid #ddd !important;
  border-radius: 5px;
}
.accordion-button {
  font-weight: 500;
}
.accordion-body i.fa-dot-circle-o {
  color: #06BBCC;
  margin-right: 5px;
}
/* Hover state */
.accordion-button:hover {
  background-color: #D9EEF0 !important;
}

/* Active (opened) state */
.accordion-button:not(.collapsed) {
  background-color: #D9EEF0 !important;
  color: #000; /* optional: keeps text readable */
  box-shadow: none;
}

/* Remove default Bootstrap focus glow */
.accordion-button:focus {
  box-shadow: none;
}

/******************* Fees table ***********/
@media (max-width:768px){

  /* remove scroll */
  .table-responsive{
    overflow-x: hidden;
  }

  /* reduce overall font */
  table{
    font-size: 12px;
  }

  /* reduce cell padding */
  table th,
  table td{
    padding: 6px 4px;
    white-space: normal;   /* text wrap aagum */
  }

  /* reduce header font */
  table th{
    font-size: 12px;
  }

  /* numbers align center for neat look */
  table td{
    text-align: center;
  }
}

