@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --inter: "Inter", sans-serif;
    --primaryColor: #408DE3;
    --lightWhitebg: #f6f4ee;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
    color: #4A4C52;
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: #000;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.bg-primary {
    background-color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section-spacer {
    padding-block: 60px;
}

.bg-padding {
    padding: 60px;
}

.content-pb-60 {
    padding-bottom: 60px;
} 

.content-pb-40 {
    padding-bottom: 40px;
}

.content-pb-80 {
    padding-bottom: 80px;
}

.content-pt-80 {
    padding-top: 80px;
}

.content-pt-40 {
    padding-top: 40px;
}

.object-cover {
    object-fit: cover;
}

.gap-x-20 {
    row-gap: 20px;
}

.content-pt-120 {
    padding-top: 120px;
}

.content-pb-120 {
    padding-bottom: 120px;
}

.bg-lightwhite {
    background-color: var(--lightWhitebg) !important;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    z-index: 1;    
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: var(--primaryColor); 
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: transparent;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

/*menu-area css design here*/
.menu-area {
    background-color: var(--primaryColor);
    transition: 0.4s;
}

.menu-area.menu-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    animation: slideDown 0.60s ease-out;
    z-index: 99;
    background-color: var(--primaryColor);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: var(--primaryColor);
}

/* mega menu design */

.menu-area .menu-wrapper {
    position: relative;
}

.menu-area .main-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.menu-area .main-menu > ul > li:hover .mega-menu-area {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.menu-area .main-menu > ul li .mega-menu-area {
    position: absolute;
    background-color: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-top: 2px solid var(--primaryColor);
    width: calc(100% - 35%);
    left: 17.5%;
    right: 17.5%;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
    z-index: 3;
}

.menu-area .main-menu > ul li .second-mega-menu {
    width: calc(100% - 48%);
    left: 24%;
    right: 24%;
}

.menu-area .main-menu > ul li .second-mega-menu .mega-menu-box .single-mega {
    width: 50%;
}

.menu-area .main-menu > ul li .mega-menu-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 5px;
}

.menu-area .main-menu > ul li .mega-menu-box .single-mega {
    width: 25%;
}

.menu-area .main-menu > ul li .mega-menu-area ul li a,
.menu-area .main-menu > ul .control-dropdown ul li a {
    width: 100%;
    display: block;
    padding: 10px 20px;
    padding-right: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.menu-area .main-menu > ul li .mega-menu-area ul li a:after,
.menu-area .main-menu > ul .control-dropdown ul li a:after {
    content: "";
    display: block;
    height: 0%;
    width: 100%;
    position: absolute;
    background-color: #f4f4f4;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.4s all ease;
}

.menu-area .main-menu > ul li .mega-menu-area ul li a:hover,
.menu-area .main-menu > ul .control-dropdown ul li a:hover {
    color: #2b2b2b;
}

.menu-area .main-menu > ul li .mega-menu-area ul li a:hover:after,
.menu-area .main-menu > ul .control-dropdown ul li a:hover:after {
    height: 100%;
}
/* mega menu design */
.menu-area .main-menu > ul > li > a {
    padding: 30px 16px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.menu-area .main-menu > ul > li:first-child a {
    padding-left: 0;
}

.menu-area .main-menu > ul > li:last-child a {
    padding-right: 0;
}

.menu-area .main-menu > ul .control-dropdown {
    position: relative;
}

.menu-area .main-menu > ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.menu-area .main-menu > ul .control-dropdown ul {
    position: absolute;
    padding-top: 10px;
    padding-bottom: 5px;
    width: 270px;
    background-color: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-top: 2px solid var(--primaryColor);
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease;
    z-index: 3;
}

.menu-area .main-menu > ul li a i {
    font-size: 12px;
    padding-left: 2px;
}

.menu-area .single-mega ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-area .single-mega ul li a .badge {
    padding: 4px 6px;
    font-size: 11px;
    color: #fff;
    background-color: var(--primaryColor);
    border-radius: 4px;
}

.btn-primary {
    padding: 16px 24px;
    background-color: var(--primaryColor);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-3px);
}

.btn-primary.btn-white {
    background-color: #fff;
    color: #000;
}

.menu-right-btn .btn-primary {
    padding: 12px 16px;
    font-size: 14px;
}

.menu-area .mobile-menubar {
    display: flex;
    justify-content: flex-end;
}

.menu-area .mobile-menubar a {
    font-size: 26px;
    height: 35px;
    width: 42px;
    text-align: center;
    line-height: 42px;
    color: var(--whiteColor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 3px;
    cursor: pointer;
    padding: 8px 5px;
    transition: 0.2s;
}

.menu-area .mobile-menubar a span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    opacity: 0.9;
}

.offcanvas-start {
    width: 344px;
}

.offcanvas-start .offcanvas-header {
    padding-top: 10px;
    padding-bottom: 19px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.offcanvas-start .offcanvas-body {
    padding: 0;
    padding-top: 22px;
    padding-bottom: 20px;
}

.offcanvas-start ul li a {
    display: block;
    width: 100%;
    padding: 11px 20px;
    position: relative;
    font-weight: 400;
    color: #232323;
}

.offcanvas-start ul li a:hover {
    background-color: #f1f1f1;
}

.offcanvas-start ul li a i {
    font-size: 12px;
    position: absolute;
    right: 30px;
    top: 52%;
    transform: translateY(-50%);
}

.offcanvas-header .btn-close {
    margin-top: -6px;
    margin-right: 0px;
}

.accordion-container .accordion-title {
    position: relative;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    transform: rotate(90deg);
    background-color: #232323;
    transition: all 0.3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    background: #232323;
    transition: all 0.2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-title.open {
    background-color: #f1f1f1;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
}

.offcanvas-start .accordion-content li a {
    padding-left: 45px;
    font-size: 14.5px;
    padding-top: 11px;
    padding-bottom: 11px;
}

/* Home hero section */
.home-hero-area {
    background-color: var(--primaryColor);
}

.hero-content-pt {
    padding-top:  calc(110px + 84px);
}

.home-hero-inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.80)
}

.home-hero-inner .welcome-button {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 267px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.20);
    margin-bottom: 16px;
    color: #FFF;
    font-size: 14px;
    margin-inline: auto;
    font-weight: 500;
}

.home-hero-inner h2 {
    color: #FFF;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -0.8px;
    padding-bottom: 12px;
}

.home-sld-single {
    background-image: url(images/home-slider-01.png);
    min-height: 450px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.home-sld-single::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, #0000002f);
    z-index: -1;
    border-radius: 20px;
}

.home-sld-single h4 {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    letter-spacing: -0.88px;
    padding-bottom: 8px;
}

.home-sld-single p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.home-sld-single.bg-02 {
    background-image: url(images/home-slider-02.png);
}

.home-sld-single.bg-03 {
    background-image: url(images/home-slider-03.png);
}

.home-sld-single.bg-04 {
    background-image: url(images/home-slider-04.png);
}

/* academic-program-area  */
.academic-program-area {
    background-color: var(--lightWhitebg);
}

.home-top-tab ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px;
    gap: 10px;
    border-radius: 20px;
    background: #FFF;
    max-width: 1204px;
    margin-inline: auto;
}

.home-top-tab ul li button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #808080;
    font-size: 20px;
    font-weight: 500;
    padding: 24px 10px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
}

.section-title-wrap {
    text-align: center;
}

.section-view-title {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #408DE3;
    max-width: 200px;
    margin-inline: auto;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.section-title {
    padding-top: 22px;
    padding-bottom: 10px;
    color: #000;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1.28px;
}

.section-title-wrap p {
    color: #626262;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.academic-programs-inner .single-row {
    padding: 20px 20px 20px 52px;
    border-radius: 40px;
    background: #FFF;
    margin-bottom: 20px;
}

.academic-programs-inner .fluid-column .left-contents {
    max-width: 380px;
}

.academic-programs-inner .single-row h3 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.64px;
    padding-bottom: 8px;
}

.academic-programs-inner .single-row img {
    border-radius: 40px;
    width: 100%;
}

.academic-programs-inner .duel-column .left-contents{
    padding: 32px 28px;
}

.academic-programs-inner .duel-column .single-row{
    padding: 20px;
}

/* enterprise-success-wrap */
.enterprise-success-wrap {
    background-color: var(--lightWhitebg);
}

.evterprice-inner {
    background-color: var(--primaryColor);
}

.evterprice-inner .ev-left img {
    width: 100%;
}

.evterprice-inner .ev-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 40px;
}

.evterprice-inner .row {
    --bs-gutter-x: 60px;

}

.section-view-title.title-white {
    border-radius: 50px;
    border: 1px solid #ECECEC;
    background: #FFF;
    max-width: 240px;
    margin-right: auto;
    margin-left: 0;
    color: #000;
}

.section-title-second {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 57.6px */
    letter-spacing: -0.96px;
    padding-top: 29px;
}

.radius-40 {
    border-radius: 40px !important;
}

.es-right-bottom h3 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 41.6px */
    letter-spacing: -0.32px;
    padding-bottom: 25px;
}

.es-right-bottom .es-profiles {
    display: flex;
    gap: 16px;
    align-items: center;
}

.es-right-bottom .es-profiles h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    text-transform: uppercase;
    padding-bottom: 8px;
}

.es-right-bottom .es-profiles p {
    color: rgba(255, 255, 255, 0.70);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}

.academic-programs-inner{
    background-color: var(--lightWhitebg);
}

/* academic-programs 03 */
.ap-buttons-wrap ul {
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
}

.ap-buttons-wrap ul li {
    border-radius: 12px;
    background: #F8F8F8;
    padding: 20px 10px;
    text-align: center;
}

.ap-buttons-wrap ul li.active {
    background: #000;
    color: #fff;
}

.academic-programs-03 .evterprice-inner {
    background-color: #f8f8f8;
}

.academic-programs-03 .ev-right h2 {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%; /* 38.4px */
    letter-spacing: -0.64px;
}

.academic-programs-03 .es-right-bottom h4 {
    color: #000;
}

.academic-programs-03 .es-right-bottom p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}

.moderation-cards-wrap .row {
    --bs-gutter-x: 20px !important;
    --bs-gutter-y: 20px;
}

.moderation-cards-wrap .single-card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 230px;
    border-radius: 16px;
    background: #FFF;
}


.moderation-cards-wrap .single-card .title {
   display: flex;
    align-items: center;
    align-self: stretch;
    gap: 12px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    padding-bottom: 15px;
}

.moderation-cards-wrap .single-card .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    background: #408DE3;
    flex: 0 0 32px;
}

.moderation-cards-wrap .single-card .icon.icon02 {
    background-color: #f46d38;
}

.moderation-cards-wrap .single-card .icon.icon03 {
    background-color: #c05ef0;
}

.moderation-cards-wrap .single-card .icon.icon04 {
    background-color: #31ce73;
}

.moderation-cards-wrap .single-card p {
   color: #626262;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    gap: 8px;
    border-radius: 70px;
    border: 1px solid #D6D6D6;
    background: #FFF;
    min-width: 130px;
}

.btn-arrow:hover {
    background-color: #e6eaf4;
}

.btn-arrow svg {
    transition: 0.3s;
}

.btn-arrow:hover svg {
    transform: translateX(3px);
}

/* brand-logo-area  */
.brand-logo-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1256px;
}

.brand-logo-inner {
    overflow: auto;
}

.brand-logo-area ul li {
    text-align: center;
    flex: 1;
}

/* ready courses area */
.ready-courses-wrap {
    background-color: var(--primaryColor);
    padding-top: 147px;
}

.ready-course-left {
    padding-left: calc((100vw - 1280px) / 2);
    padding-bottom: 157px;
}

.ready-course-left p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.ready-course-right{
    text-align: right;
}

.ready-course-right img {
    width: 100%;
}

/* footer area design */
.foooter-column-1st {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}

.footer-links-wraps {
    padding-left: 40px;
}

.footer-single-links h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    padding-bottom: 24px;
}

.footer-single-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-single-links ul li a {
    color: #5C5C5C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.footer-single-links ul li a:hover {
    color: var(--primaryColor);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EEE;
    padding-top: 20px;
    padding-bottom: 40px;
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.copyright-inner ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.copyright-inner ul li a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: translateY(-2px);
}


/* ========== workforce page design ==========*/
.workforce-wrapper{
    background-image: url(images/workplace-bg.png);background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}


.workforce-top-tabs ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.workforce-top-tabs ul li {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px;
    cursor: pointer;
    color: #808080;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    justify-content: center;
}

.workforce-top-tabs ul li.active {
    color: #408DE3;
    border-color: #408DE3;
}

.hg-different-area {
    background-color: var(--lightWhitebg);
    padding-top: 120px;
}

.single-regi-card {
    border-radius: 20px;
    background: #FFF;
    padding: 32px;
    transition: 0.3s;
}

.single-regi-card:hover {
    transform: translateY(-5px);
}

.single-regi-card h3 { 
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%; /* 31.2px */
    padding-top: 24px;
    padding-bottom: 8px;
}

.single-regi-card .regi-img {
    padding-top: 24px;
}

.single-regi-card .regi-img img {
    width: 100%;
}

/* skills-updrade-area  */
.skills-updrade-area {
    background-color: var(--lightWhitebg);
}

.skills-updrade-inner {
    padding: 80px 40px;
    border-radius: 40px 40px 0 0;
    background: #408DE3;
}

.skills-updt-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 80px;
}

.skills-updt-left h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.96px;
    padding-bottom: 5px;
}

.skills-updt-left p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.sign-up-box-wrap {
    background-color: #5498e6;
    border-radius: 0 0 40px 40px;
}

.sign-up-box-wrap .inner {
    max-width: 1000px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 30px;
    gap: 20px;
}

.sign-up-box-wrap .inner h4 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    padding-bottom: 8px;
    line-height: 150%; /* 42px */
}

.sign-up-box-wrap .inner p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.sign-up-box-wrap .inner a {
    text-wrap: nowrap;
}

.team-column-wrapper .single-team-member {
    overflow: hidden;
    position: relative;
}

.team-column-wrapper .single-team-member img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
}

.team-column-wrapper .single-team-member:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.team-column-wrapper .single-team-member:hover img {
    transform: scale(1.02);
}

.team-column-wrapper .single-team-member:hover:after {
    visibility: visible;
    opacity: 1;
}

.play-video-slider .single-play-video {
    position: relative;
}

.play-video-slider .owl-item {
  transition: transform 0.4s ease;
}

.play-video-slider .owl-item.center .slider-img img {
  transform: scale(1.1); 
  z-index: 2;            
}

.play-video-slider .owl-stage {
    padding-block: 60px;
}

.play-video-slider .video-play-button a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 30px;
    text-wrap: nowrap;
}

.discover-inner {
    border: 1px solid #CECECE;
    background: #FFF;
}

.discover-inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.discover-inner h3 {
    color: #000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 44px */
    letter-spacing: -0.8px;
}

/*  ==========all courses page ========== */

.courses-hero-wrapper {
    background-image: url(images/all-courses-hero-bg.png);
    padding-bottom: 169px;
}

.courses-hero-wrapper .ch-inner {
   max-width: 1020px;
   margin-inline: auto;
}

.courses-hero-wrapper .welcome-button {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.30);
    max-width: 140px;
    margin-inline: auto;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.courses-hero-wrapper h4 {
    color: #FFF;
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    line-height: 120%; /* 72px */
    letter-spacing: -0.6px;
    padding-top: 16px;
    z-index: 1;
    position: relative;
}

.courses-hero-wrapper h4 span {
    position: relative;
}

.courses-hero-wrapper h4 span:after {
    content: url(images/heading-after.png);
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: -1;
}

.transparent-nav {
    background-color: transparent;
}

.menu-area.menu-sticky .transparent-nav  {
    background-color: var(--primaryColor);
}

/* All products design */
.cetagory-culumns-wrapper {
    background-color: var(--lightWhitebg);
}

.cetagory-products-header {
    position: relative;
}

.cetagory-products-header .recommended-products {
    padding: 0 5px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

.cetagory-products-header .recommended-products i {
    font-size: 13px;
    padding-left: 4px;
}

.cetagory-products-header {
    font-size: 14px;
    color: #000;
}

.cetagory-products-header .sort-button {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 17px 20px;
    gap: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.recommended-products-dropdown {
    position: absolute;
    right: 0;
    width: 208px;
    background-color: var(--whiteColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-top: 2px solid var(--primaryColor);
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
    z-index: 3;
    flex-direction: column;
    padding: 8px 0px;
}

.recommended-products-dropdown ul li {
    padding: 6px 15px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
    text-align: left;
}

.recommended-products-dropdown ul li:hover {
    background-color: var(--primaryColor);
    padding-left: 17px;
    color: #fff;
}

.recommended-products-dropdown.active {
    transform: translateY(5px);
    opacity: 1;
    visibility: visible;
}

.products-filter-culumn {
    padding-top: 16px;
}

.products-filter-culumn {
    padding-right: 70px;
}

.fw-checkbox input {
    height: 18px;
    width: 18px;
    cursor: pointer;
}

.single-checkbox {
    margin: 9px 0;
    cursor: pointer;
}

.single-checkbox label {
    padding-left: 10px;
    color: var(--textPrimaryColor);
    cursor: pointer;
    font-weight: 400;
}

.filter-type-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor);
    position: relative;
    margin-bottom: 26px;
    margin-top: 40px;
}

.filter-type-box h4:after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--textPrimaryColor);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%);
}

.single-checkbox label i {
    font-size: 15px;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  z-index: 998; 
  display: none;
}

.filter-overlay.active {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

.products-filter-culumn h3 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
}

.all-product-left-side ul li {
    border-bottom: 1px solid #E6E6E6;
    padding: 28px 0;
    gap: 10px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
    position: relative;
    cursor: pointer;
    z-index: 9;
}

.all-product-left-side ul li.active {
    border: 0;
}

.all-product-left-side ul li.active .accordion-content02 {
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 30px;
}

/* Arrow icon */
.all-product-left-side ul li::after {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 32px;
  font-size: 15px;
  color: #868686;
  transition: transform 0.3s ease;
}

.all-product-left-side ul li.active::after {
  transform: rotate(180deg);
}
.all-product-left-side .accordion-content02 {
  display: none; 
  color: #555;
  margin-top: 14px;
  font-weight: 400;
  font-size: 16px;
}

/* product design */
.products-wrapper .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 40px;
}

.single-product-card {
    position: relative;
}

.single-product-card .product-img img {
    width: 100%;
    border-radius: 20px;
}

.single-product-card .absolute-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.single-product-card .absolute-contents ul {
    display: flex;
    justify-content: space-between;
}

.single-product-card .absolute-contents li {
    display: flex;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    background: #FFF;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.12px;
}

.single-product-card .product-main-conts h3 a {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px; /* 110% */
    letter-spacing: -0.2px;
    margin-block: 16px;
}

.product-main-conts ul {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.product-main-conts ul li {
    display: flex;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    border: 1px solid #EEEFF2;
    background: #FFF;
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.12px;
}

.filter-sidebar-head-wrap .sm-sort-box {
    padding-top: 22px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-sidebar-head-wrap .sm-sort-box label {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.14px;
}

.filter-sidebar-head-wrap .sm-sort-box select {
    width: 100%;
    display: flex;
    padding: 17px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: transparent;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.14px;
}

.accordion-content02 .wrapper  {
    padding-top: 24px;
}

.price-input {
  width: 100%;
  display: flex;
  margin-bottom: 24px;
  margin-top: 35px;
}
.price-input .field {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 50px;
  text-align: center;
  -moz-appearance: textfield;
   background-color: #fff;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.slider {
  height: 5px;
  position: relative;
  background: #000000;
  border-radius: 5px;
}
.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #000000;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #000000;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border: none;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #000;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.catagroy-product-count {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.catagroy-product-count li,
.catagroy-product-count li label {
    display: flex;
    gap: 10px;
    align-items: center;
}

.catagroy-product-count li input {
    height: 20px;
    width: 20px;
    background-color: transparent;
    accent-color: var(--primaryColor);
}

.catagroy-product-count li .catagory-name {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.16px;
}

.catagroy-product-count li .total-product {
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.16px;
}

.catagroy-product-count li:after {
    display: none;
}

.catagroy-product-count li {
    padding: 0 !important;
    border: 0 !important;
}

.accordion-content02 .toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 14px;
  width: 46px;   /* smaller width */
  height: 24px;  /* smaller height */
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}

.toggle-switch:before {
  content: "";
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 18px;   /* knob smaller */
  height: 18px;
  position: absolute;
  top: 3px;      /* adjust alignment */
  left: 3px;
  transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-checkbox:checked + .toggle-switch {
  background: #408de3; /* blue */
}

.toggle-checkbox:checked + .toggle-switch:before {
  left: 25px; /* adjust for smaller track */
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
  font-size: 14px; /* optional: smaller text */
}

.single-proposition h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
    padding-bottom: 8px;
}

.single-proposition p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.16px;
}

.course-details-banner {
    background-color: var(--lightWhitebg);
}

.darktext-nav .main-menu ul li a {
    color: #000;
}

.menu-sticky .darktext-nav .main-menu ul li a {
    color: #fff;
}

.course-details-banner .section-view-title {
	background: #f9f7f3;
}

.course-deails-title {
    color: #000;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 84px */
    letter-spacing: -0.7px;
    padding-block: 16px;
}

.course-details-bottom-cont h4 {
	color: #000;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.24px;
    padding-bottom: 8px;
}

.course-details-bottom-cont p {
	color: #4A4C52;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.18px;
}


.darktext-nav .menu-area .mobile-menubar a {
	font-size: 26px;
	height: 35px;
	width: 42px;
	text-align: center;
	line-height: 42px;
	color: var(--whiteColor);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 3px;
	cursor: pointer;
	padding: 8px 5px;
	transition: 0.2s;
}

.darktext-nav .mobile-menubar a span {
    background-color: #000;
}

.menu-sticky .darktext-nav .mobile-menubar a span {
    background-color: #fff;
}

.faq-area .faq-title-wrap p {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.32px;  
    padding-top: 16px;
}

.faq-inner {
    max-width: 870px;
    margin-inline: auto;
}

/* nursing page design */

.unlock-ul-contents {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-block: 32px;
}

.unlock-ul-contents li {
   display: flex;
    gap: 12px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    text-align: left;
}

.unlock-ul-contents li svg {
    height: 24px;
    width: 24px;
    flex: 0 0 24px;
    transform: translateY(5px);
}

.nursing-slider-wrap .home-sld-single {
    background-image: url(images/nursing-slider-01.png);
    position: relative;
}

.nursing-slider-wrap .home-sld-single.bg-02 {
    background-image: url(images/nursing-slider-02.png);
}

.nursing-slider-wrap .home-sld-single.bg-03 {
    background-image: url(images/nursing-slider-03.png);
}

.nursing-slider-wrap .home-sld-single.bg-04 {
    background-image: url(images/nursing-slider-01.png);
}

.nursing-slider-wrap .product-main-conts {
    position: absolute;
    top: 32px;
    left: 32px;
}

.nursing-slider-wrap .product-main-conts li {
    font-size: 14px;
}

.nursing-slider-wrap  .home-sld-single h4 {
	font-weight: 500;
	letter-spacing: 0px;
}

.nursign-content-modara .moderation-cards-wrap .single-card {
	min-height: auto;
}

.nursing-faq-area .nursing-faq-right ul li {
    border-radius: 20px;
    background: #F6F4EE;
    padding: 40px;
    border: 0;
    margin-bottom: 16px;
}

.nursing-faq-area .all-product-left-side ul li::after {
	right: 40px;
	top: 45px;
    color: #000;
}

.nursing-faq-area .all-product-left-side ul li .accordion-content02 {
    border: 0;
    padding-bottom: 0;
    color: #000;
}

.nursing-faq-area .all-product-left-side ul li:last-child {
    margin-bottom: 0;
}

/* update code */
.home-top-tab ul li button.skltbs-active {
    background: rgba(64, 141, 227, 0.10);
    color: #408DE3;
    font-weight: 500;
}

.home-top-tab ul li button.skltbs-active svg path {
    fill: #408DE3 !important;
}