#loginForm .loginFormController {
  position: relative;
  /* border-radius: 30px 0px 0px 20px; */
  padding: 4rem;
  padding-bottom: 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin: 1rem 0rem;
}
#loginForm .loginFormBGCTRL {
  /* background: url(../images/login-bg.jpg); */
  background-repeat: no-repeat;
  background-size: contain;
}

#loginForm .loginFormController .singleInput .inputIcon {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
}
#loginForm .loginFormController .singleInput {
  position: relative;
  margin-bottom: 1rem;
}
#loginForm .loginFormController .singleInput input {
  background: #f7f7ef;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  color: #848484;
  padding: 10px;
  padding-left: 4.5rem;
}
.righticon {
  position: absolute !important;
  top: 1.6rem;
  right: 1.6rem;
  cursor: pointer;
}

#loginForm .signUpBgController {
  /* background: url(../images/7197479.jpg); */
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#loginForm .signUpFormControllerDiv {
  min-height: 40vh;
}

.signupSteps {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.signupSteps ul {
  position: relative;
  z-index: 0;
}
.signupSteps .ulLIne {
  height: 0.15rem;
  top: 38%;
  width: 45%;
  position: absolute;
  background: #0b44a3;
}
.signupSteps ul li.default {
  z-index: 9999999;
  padding-right: 2.8rem;
  padding-left: 2.8rem;
}
.signupSteps ul li.default span {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.1rem solid #0b44a3;
  background: #f7f7ef;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  text-align: center;
  line-height: 4.5rem;
  font-weight: 800;
  font-size: 18px;
  color: #848484;
}
.signupSteps ul li.default small {
  font-weight: 700;
  font-size: 15px;
  line-height: 11px;
  text-align: center;
  color: #848484;
  display: block;
  padding-top: 0.5rem;
}
.signupSteps ul li.active span {
  border-color: #fff;
  background: #0b44a3;
  color: #fff;
}
.signupSteps ul li.active small {
  color: #000;
}
#loginForm .loginFormController .singleInput label {
  font-weight: 400;
  font-size: 12px;
  line-height: 8px;
  color: #848484;
  padding-left: 5rem;
  padding-top: 24px;
}
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent !important;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.95rem) translateX(-0.85rem);
}

img.fixed-height {
  height: 200px; /* Your fixed height */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent cropping or stretching */
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #0b44a3;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #0b44a3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0b44a3;
  --contrast-color: #ffffff;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0 !important;
  scroll-margin-top: 90px;
  overflow: clip;
}

.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action h2,
.call-to-action p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 70%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

/*--------*/

.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/* 17/06/2025 */

.courses__nav .courses-button-prev {
  left: 0 !important;
}
.courses__nav .courses-button-next {
  right: 0 !important;
}
section {
  padding: 80px 0px 80px 0px !important;
}
.section__title p {
  margin-top: 8px !important;
}

/* login form  */

#loginForm {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
}
#loginForm .container {
  max-width: 1200px;
  padding: 20px;
}
#loginForm .formbg {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}
#loginForm .formbgimg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../files/services/mainimg_1744624133.jpg);
  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;
}
#loginForm .alertmsg {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 5px;
}




 .courses__item {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 25px;
    }

    #courseslisting .col {
        margin-bottom: 25px;
    }
    .footer__link .list-wrap li{
      margin-bottom:0px !important
    }
    .copy-right-text p, .footertext p{
      font-size: 15px !important;
    }
    .footer__bottom-menu .list-wrap{
       font-size: 15px !important;
    }
    .footer__bottom{
      padding:0px 0px 0px !important;
    }
    .footer__top{
      padding: 60px 0 0px !important;
    }
    .mb-16{
      margin-bottom:16px !important;
    }
    .footer__widget-title
    {
      margin-bottom:14px !important;
    }
    .footer__bottom-menu .list-wrap{
      justify-content: center;
    }
    .footer__bottom{
      border-top: 1px solid #eee;
    }
    .brand-area{
      background-color: #ed6e8a08 !important;
    }