@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}

:root {

    --primary-font: "Work Sans", sans-serif;
    --secondary-font: "Roboto", sans-serif;
    --display-font: "Space Grotesk", sans-serif;

    --heading-color: #06140C;
    --description-color: #212529;

    --t1-light-bg: #F1EEFF;
    --t1-primary: #0164be;
    --t1-secondary: #08192B;

    /* Textile Background  */
    --gradient: linear-gradient(135deg, #026bd0, #0258a5); 
}

html {
    scroll-behavior: smooth;
}

/************ TABLE OF CONTENTS ***************

    01. UTILITY CSS
    02. TYPOGRAPHY CSS
    03. CARD CSS
    04. BANNERS CSS
    05. SECTION CONTAINER CSS
    06. CUSTOM MODAL
    07. HERO SLIDES
    08. SECTION STYLE
    09. GRADIENT CSS
    10. ICONS CSS
    11. BADGE CSS
    12. FOOTER CSS
    13. TABS CSS
    14. COURSE LIST CSS

**********************************************/


/*----------------------------------------*/
/*  01. UTILITY CSS
/*----------------------------------------*/

.t-btn {
    display: flex;
    padding: 17px 95px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
}

.t-1 {
    border-radius: 12px;
    background: var(--t1-primary);
    color: #fff;
    transition: all ease-in-out 0.50s;
}

.t-1:hover {
    background-color: var(--t1-secondary);
    color: #fff;
}

.note {}

.note h4 {
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
}

.note p {
    font-family: var(--secondary-font);
    font-size: 12px;
    color: var(--description-color);
    line-height: 20px;
    font-weight: normal;
}

.red-note {
    background-color: #FFEDDC;
    border: 0.3px solid #FFAE63;
    padding: 15px;
    border-radius: 12px;
}

.circular-border-animation{
    position: relative;
}

.circular-border-animation::after,
.circular-border-animation::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* inset: -0.5rem; */
  /* inset: 6px; */
  background: conic-gradient(
    from var(--gradient-angle),
    #ff7b00,
    #ff7b00,
    #ffc300,
    #ff7b00,
    #ffc300,
    #ff7b00,
    #ff7b00
  );
  border-radius: inherit;
  animation: rotate 2.5s linear infinite;
}

.circular-border-animation::after {
  filter: blur(3rem);
}

@keyframes rotate {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

/* --------- 
List CSS 
--------- */

.list-1 {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.list-1 li {
    font-size: 12px;
    font-family: var(--secondary-font);
    color: var(--description-color);
    border: 1px solid #dfdfdf;
    background-color: #f7f7f7;
    list-style: none;
    border-radius: 12px;
    padding: 0px 0px;
    margin: 0px;
    padding: 7px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.list-1 li span {
    background-color: var(--description-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 35%;
}



.list-2 {}

.list-2 li {
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: normal;
    color: var(--description-color);
    margin-bottom: 15px;
    line-height: 29px;
    list-style: none;
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.list-2 li i {
    color: var(--t1-primary);
}


.course-tab {
    background-color: #3d348b;
    width: 39%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
    position: fixed;
    bottom: 8px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    padding: 8px;
    border-radius: 8px;
}

.course-tab li {}

.course-tab li a {
    font-family: var(--primary-font);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #f1f1f1;
    padding: 12px 14px;
    border-radius: 6px;
}

.course-tab li a i {
    font-size: 14px;
}

.course-tab .active {
    background-color: rgba(255, 255, 255, 0.178);
    color: #ffffff;
    font-weight: 500;
}

.dashboard-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.dashboard-breadcrumb li {
    list-style: none;
}

.dashboard-breadcrumb li a {
    color: #646464;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
}

.dashboard-breadcrumb li a i {
    margin-left: 6px;
}

.pro-report {}

.pro-report .items {
    padding: 12px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pro-report .items h4 {
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 400;
    /* letter-spacing: -1px; */
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 0px;
}

.pro-report .items a {
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 500;
    line-height: 0px;
}

.pro-report .items i {
    font-size: 22px;
    opacity: 75%;
}

.user-list {}

.user-list .items {
    padding: 12px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.user-list .profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #fff; */
    display: inline-block;
}

.user-list .items h4 {
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 7px;
}


.user-list .items i {
    font-size: 22px;
    opacity: 75%;
    color: #d8572a;

}

.user-list .meta-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
}

.user-list .meta-info li {
    font-size: 11px;
}

.user-list .meta-info li i {
    font-size: 12px;
    margin-right: 6px;
    color: #d8572a;
}


@media screen and (max-width:440px) {
    .slide {
        width: 150px;
        height: 40px;
        font-size: 13px;
        border: 0.6px solid #c6c5c552;
    }
 
}
.slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.slide {
    flex-shrink: 0;
    margin: 0 10px;
    padding: 5px 12px;
    background: #fff;
    border-radius: 5px;
    white-space: nowrap;
}

/* IMPORTANT CHANGE */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.machine-card{
overflow: hidden;
}
.machine-card img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* --------- 
Buttons CSS 
--------- */

.theme-sm-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 11px;
    padding: 11px 12px;
    border: none;
    width: fit-content;
    transition: all ease-in-out 0.5s;
}

.dark-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #212529;
    border-radius: 6px;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.125em;
    color: #ffffff;
    padding: 14px 12px;
}

.dark-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.light-btn {
    color: #212529;
    background-color: #f7f7f7;
    border: 1px solid #d5def1;
}

.p-btn {
    color: #ffffff;
    background-color: #3d348b;
    border: none;
}

.p-btn:hover {
    color: #ffffff;
    background-color: #1a1454;
}


.label-progress {}

.label-progress div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.label-progress p {
    font-family: var(--secondary-font);
    font-size: 12px;
    color: var(--description-color);
    line-height: 23px;
    font-weight: normal;
    line-height: 17px;

}

.label-progress span {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
}

.label-progress progress {
    width: 100%;
}

@keyframes growProgressBar {

    0%,
    33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: var(--value);
    }
}

@property --pgPercentage {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

div[role="progressbar"] {
    --size: 12rem;
    --fg: #0d0101;
    --bg: #d2e1e6;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(closest-side, #dcebee 80%, transparent 0 99.9%, white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    /* background-color: red; */
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--fg);
}

/* div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) '%';
} */

.fixed-scroll {
    position: sticky;
    top: 10px;
    height: fit-content;
}

.success-tag {
    color: #fff;
    background-color: #28a745;
    padding: 0px 0px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 6px;
    padding-left: 6px;
    border-radius: 125px;
    font-weight: 500;
    letter-spacing: 0px;
}

.success-tag i {}


/* --------- 
Frontend Breadcrumb CSS 
--------- */

.f-breadcrumb {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 20px;
}

.f-breadcrumb:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient);
    z-index: 0;
}

.f-breadcrumb p {
    font-family: "Anek Devanagari", sans-serif;
    font-size: 20px;
    margin-bottom: 0px;
    color: #fff;
}

.f-breadcrumb h3 {
    /* color: #47AAF9; */
    color: white;
    font-family: "Anek Devanagari", sans-serif;
    font-size: 40px;
}


/* --------- 
Filter CSS 
--------- */
.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.select-filter {
    width: 20%;
    height: 40px;
    background-color: #f1f1f1;
    padding: 0 20px;
    font-size: 13px;
    color: #838688;
    border: none;
}



@media screen and (max-width:1440px) {
    .course-tab {
        width: 55%;
    }
}

@media screen and (max-width:1024px) {
    .course-tab {
        width: 60%;
    }
}

@media screen and (max-width:768px) {
    .course-tab {
        width: 90%;
    }

    .list-1 li {
        font-size: 11px;
        border: 1px solid #dfdfdf;
        background-color: #f7f7f7;
        padding: 5px 8px;
        gap: 6px;
    }

    .list-1 li span {
        width: 5px;
        height: 5px;
    }

}
/* @media screen and (max-width:480px) {
    .course-tab {
        width: 90%;
    }

    .list-1 li {
        font-size: 11px;
        border: 1px solid #dfdfdf;
        background-color: #f7f7f7;
        padding: 5px 8px;
        gap: 6px;
    }

    .list-1 li span {
        width: 5px;
        height: 5px;
    }
    .main-hero-slider--search .search-btn {
        padding: 2px 13px !important;
        right: 4px !important;
    }
    .main-hero-slider--search {
    padding: 4px !important;
    }

} */

/*----------------------------------------*/
/*  02. TYPOGRAPHY CSS
/*----------------------------------------*/

.h {
    font-family: var(--primary-font);
    font-size: 26px;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
}

.h-md {
    font-size: 18px;
    font-weight: 500;
}

.h-sm {
    font-size: 15px;
    margin: 0px;
    font-weight: 500;
}


.desc {
    font-family: var(--secondary-font);
    font-size: 14px;
    color: var(--description-color);
    line-height: 23px;
    font-weight: normal;
}


.desc-sm {
    font-family: var(--secondary-font);
    font-size: 11px;
    color: var(--description-color);
    line-height: 23px;
    font-weight: normal;
    line-height: 17px;
}

/*----------------------------------------*/
/*  03. CARD CSS
/*----------------------------------------*/

.card-1 {
    background-color: var(--t1-light-bg);
    padding: 20px;
    padding-top: 5rem;
    border-radius: 12px;
    border: 1px solid #dddddd;
}

.card-1 span {
    font-family: var(--secondary-font);
    font-size: 12px;
    color: var(--description-color);
    font-weight: normal;
    line-height: normal;
}

.card-2 {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.card-2 span {
    font-family: var(--secondary-font);
    font-size: 12px;
    color: var(--description-color);
    font-weight: normal;
    line-height: normal;
    color: #d4d4d4;
}

.card-2 p {
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin: 0px;
    padding: 0px;
}

.card-2 .icon {
    width: 45px;
}


.c3-wrapper {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.card-3 {
    width: 45%;
    height: 10rem;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.card-3:before {
    content: '';
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0));
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.card-3 a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 12px; */
    position: relative;
}

.card-3 h4 {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
}

.card-3 p {
    font-size: 9px;
    color: #d2d0d0;
}

.card-3 i {
    /* margin: auto; */
    display: inline-block;
    color: #fff;
    font-size: 35px;
    opacity: 90%;
}


.card-4 {
    background-color: #fff;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.card-4 a {
    width: 100%;
}

.card-4 .thumb {
    height: 7rem;
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 11px;
}

.card-4 .thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-4 h5 {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.card-4 p {
    font-family: var(--secondary-font);
    font-size: 11px;
    color: var(--description-color);
    line-height: 23px;
    font-weight: normal;
    line-height: 17px;
}

.card-4 .arrow-btn {
    background: #ffffff;
    color: #3d348b;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 50%;
    position: absolute;
    bottom: 50px;
    right: 23px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all ease-in-out 0.5s;
}

.card-4 .arrow-btn:hover {
    background: #3d348b;
    color: #fff;
    bottom: 60px;
}

.card-5 {
    border-radius: 12px;
    background: #f4f4f4;
    height: 100%;
}

.card-5 .thumb {
    height: 10rem;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.card-5 .thumb:hover .shinner{}

.card-5 .thumb span {
    position: absolute;
    bottom: 14px;
    left: 13px;
    background-color: #fff;
    color: #0C0C0C;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 10px;
    display: inline-block;
    line-height: normal;
    border-radius: 4px;
}

.card-5 .tag {
    color: #03629F;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    margin-top: 15px;
    font-weight: 500;
    display: block;
        padding: 0 15px;
}

.card-5 h4 {
    font-family: var(--primary-font);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 5px;
    margin-bottom: 6px;
    padding: 0 15px;
}

.card-5 p {
    font-family: var(--secondary-font);
    font-size: 12px;
    color: var(--description-color);
    line-height: 20px;
    font-weight: normal;
    padding: 0 15px;
}

.card-5 .c-btn {
    background-color: #47AAF9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    position: absolute;
    bottom: -20px;
    right: 16px;
    border: 4px solid #fff;
}

.card-5 .c-btn:hover {
    background-color: #0b72c6;
    color: #fff;
}

.r-card-box {
    display: flex;
    gap: 8px;
}

.r-card {
    background-color: var(--t1-light-bg);
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 6rem;
    cursor: pointer;
    position: relative;
    width: 50%;
}

.r-card h4 {
    font-family: var(--secondary-font);
    line-height: normal;
    color: #06140C;
    font-size: 13px;
    margin: 0px;
    font-weight: 400;
}

.r-card p {
    font-family: var(--secondary-font);
    font-size: 10px;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
    line-height: 16px;
    color: #555655;
}

.r-card input {
    position: absolute;
    top: 20px;
    right: 20px;
}


.course-card {
    display: flex;
    gap: 25px;
    width: 100%;
}

.course-card .thumb {
    width: calc(100% - 60%);
    height: 18rem;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.course-card .thumb a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
    position: relative;
}

.course-card .thumb:before {
    content: '';
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0));
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

}

.course-card .thumb i {
    margin: auto;
    display: inline-block;
    color: #fff;
    font-size: 70px;
    opacity: 57%;
}

.course-card .content {
    width: 60%;
}

.course-card .tag {
    color: #646464;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
}

.course-card h4 {
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 5px;
    margin-bottom: 12px;
}

.course-card p {
    font-family: var(--secondary-font);
    font-size: 13px;
    color: var(--description-color);
    line-height: 20px;
    font-weight: normal;
}


.row-course-card {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding-left: 12px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}

.row-course-card:last-child {
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0px;
}

.row-course-card .thumb {
    width: 125px;
    min-width: 125px;
    max-width: 125px;
    height: 85px;
    border-radius: 10px;
    overflow: hidden;
}

.row-course-card .thumb img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.row-course-card .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
    padding: 0px 12px;
}

.row-course-card .content h5 {
    margin: 0px;
    font-size: 14px;
}

.row-course-card .content span {
    font-size: 11px;
    color: var(--t1-primary);
    display: inline-block;
    border-radius: 0px;
    line-height: normal;
    margin-bottom: 8px;
    margin-top: 6px;
}

.row-course-card .content ul {
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.row-course-card .content ul li {
    list-style: none;
    font-size: 11px;
    color: #737474;
}

.row-course-card .content ul li i {
    color: var(--t1-primary);
}

.row-course-card .price {
    margin: 0px;
    font-size: 22px;
}

.row-course-card .preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    max-width: 35px;
    height: 35px;
    max-height: 35px;
    background-color: #eff9ff;
    color: var(--t1-primary);
    font-size: 14px;
    border-radius: 50%;
}
.row-course-card .preview-btn:hover{
    background-color: var(--t1-primary);
    color: #fff;
}

/* Custom Card */
.custom-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

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


/*----------------------------------------*/
/*  04. BANNERS CSS
/*----------------------------------------*/

.h-banner-1 {
    background: linear-gradient(90deg, #0C0C0C 0%, #141414 100%);
    padding: 2.5rem 10rem;
    position: relative;
}

.h-banner-1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 55%;
    height: 100%;
    background-image: url(./../img/bg/grid-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 3%;
}

.h-banner-1::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55%;
    height: 100%;
    background-image: url(./../img/bg/grid-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 3%;
}

@media screen and (max-width:768px) {
    .h-banner-1 {
        padding: 2rem 2rem;
    }
}




/*----------------------------------------*/
/*  05. SECTION CONTAINER CSS
/*----------------------------------------*/

.sec-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.sec-box .heading {
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: normal;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.static-box {
    background-color: #dcebee;
    position: relative;
    overflow: hidden;
    padding-bottom: 13rem;
}

.static-box:before {
    content: '';
    position: absolute;
    top: -4rem;
    left: -125px;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background-color: #9da8db;
    opacity: 6%;
}

.static-box:after {
    content: '';
    position: absolute;
    bottom: -7rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background-color: #9da8db;
    opacity: 34%;
}

.static-box .heading {
    color: #353d63;
}

.static-box img {
    position: absolute;
    bottom: -11rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 14rem;
    z-index: 1;
}

/*----------------------------------------*/
/*  06. CUSTOM MODAL
/*----------------------------------------*/

.video-modal {}

.video-modal .modal-body {
    position: relative;
    padding: 0px;
    height: 28rem;
}

.video-modal iframe {
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
}

.video-modal .close-video {
    position: absolute;
    right: -40px;
    top: -16px;
    z-index: 999;
    font-size: 32px;
    font-weight: normal;
    color: #fff;
    opacity: 1;
    background: transparent;
}


/*----------------------------------------*/
/*   07. HERO SLIDES
/*----------------------------------------*/
.main-hero-slider{
    overflow: hidden;
}
.main-hero-slider--slide {
    overflow: hidden;
    max-height: 450px;
}
.main-hero-slider--slide img {
    /* height: 100%; */
}
.main-hero-slider .owl-nav{
    position: absolute;
    bottom: 16px;
    right: 29px;
}
.main-hero-slider .owl-nav .prev-btn, .main-hero-slider .owl-nav .next-btn {
    width: 40px;
    height: 40px;
    font-size: 10px;
    border: 2px solid #fff;
    padding-left: 12px;
}
.main-hero-slider .owl-nav i {
    font-size: 18px !important;
}
.main-hero-slider--search {
    position: absolute;
    bottom: -22px;
    left: 0px;
    right: 0px;
    z-index: 10;
    width: 70%;
    margin: 0px auto;
    background: #ffffff;
    padding: 4px;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #d9d9d9;
}
.main-hero-slider--search input {
    border: none;
    padding: 11px 20px;
}
.main-hero-slider--search input:focus{
    box-shadow: none ;
    border: none;
}
.main-hero-slider--search .search-btn {
    background-color: #ff7b00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    position: absolute;
    top: -2px;
    bottom: 0px;
    right: -2px;
    height: fit-content;
    margin: auto;
    border-radius: 2px;
}
.main-hero-slider--search .search-btn i{}
/*----------------------------------------*/
/*  08. SECTION STYLE
/*----------------------------------------*/

.section-light {
    background: #f3f5f9;
}

.section-title {
    font-weight: 700;
    color: #1d3c78;
    font-size: 23px;
    margin: 0px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 15px;
    max-width: 700px;
    margin: auto;
}

.hindi-title {
    font-weight: 700;
}

/*----------------------------------------*/
/*  09. GRADIENT CSS
/*----------------------------------------*/

.section-gradient {
    background: linear-gradient(135deg, #1e4fa3, #2c7ad6);
    position: relative;
}

.gradient-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 14px;
    text-align: left;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-5px);
}
.gradient-card h5{
    color: #fff;
}
.gradient-card p{
    color: #cac9c9;
}

/*----------------------------------------*/
/*  10. ICONS CSS
/*----------------------------------------*/

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e9eefb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: #1d3c78;
}

.section-gradient .icon-box {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.bg-purple {
    background-color: #7b61ff !important;
}

/*----------------------------------------*/
/*  11. BADGE CSS
/*----------------------------------------*/

.custom-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
}

/*----------------------------------------*/
/*  12. FOOTER CSS
/*----------------------------------------*/
.footer {
    background: #1d3c78;
    color: #fff;
    font-size: 14px;
}


/*----------------------------------------*/
/*  13. TABS CSS
/*----------------------------------------*/

.theme-tabs-lg{
    height: 100%;
}
.theme-tabs-lg--items{
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-tabs-lg--item{}
.theme-tabs-lg--item .active {
    background-color: var(--t1-primary);
    color: #fff;
}

.theme-tabs-lg--item button {
    background-color: var(--t1-light-bg);
    color: var(--tp-header-primary);
    font-size: 12px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/*----------------------------------------*/
/*   14. COURSE LIST CSS
/*----------------------------------------*/

.course-list-wrapper {
    background-color: #f3f5f7;
    padding: 60px 0px;
    /* height: 100vh; */
}

.category-aside {
    background-color: #fff;
    display: block;
    padding-top: 20px;
    border-radius: 8px;
}

.category-aside--title {
    margin: 0px;
    font-size: 16px;
    margin-left: 22px;
    margin-bottom: 16px;
}

.category-aside .list-group-item {
    font-size: 12px;
    padding: 13px 26px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    border: none;

}

.category-aside .active {
    background-color: #eff9ff;
    color: #000000;
}

.category-aside .active:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 6px;
    height: 100%;
    background-color: #03629F;
    border-radius: 0px 4px 4px 0px;
}



/* Footer */
.carousel-inner{
    padding: 0 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .custom-card,
    .gradient-card {
        padding: 20px;
    }
}

.carousel-control-prev {
    left: -30px;
}
 .carousel-control-next {
    right: -30px;
}
 
/* Rishikand css start */

 /*  */
.link0area{
    position: fixed;
    min-width: 500px;
    max-width: 500px;
    background: #0066b2;
    background-image: linear-gradient(90deg, #137a61, #129706);
    border-radius: 16px 16px 0 0;
    padding: 12px 16px;
    bottom: 0;
    display: block;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    /* max-height: 80vh;
    overflow-y: auto; */
}
.link0area ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.link0area ul li{
    display: inline-block;
    padding:0 10px;
    font-size: 12px;
    color: #fff;
}
.link0area ul li a{
    color: #fff;
    font-size: 12px;
}
.link0area ul li a:hover{
    opacity: .8;
}
.link0area ul li .form-check-inline{
    margin-right: 0;
    vertical-align: middle;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.link0area ul li .form-check-input{
    margin-top: 0em;
    width: 16px;
    height: 16px;
}
.footer__copyright p{
    padding-bottom: 66px;
}

/* Wizard Steps */
.step-wrapper{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    position:relative;
}

.step-wrapper::before{
    content:'';
    position:absolute;
    top:16px;
    left:0;
    width:97%;
    height:2px;
    background:#ddd;
    z-index:0;
}

.step{
    text-align:center;
    position:relative;
    z-index:1;
}

.step-circle{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#aeaeae;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:bold;
    margin:auto;
}

.step.active .step-circle{
    background:linear-gradient(45deg, #064c96, #3764b7);
}

.step-title{
    margin-top:8px;
    font-size:14px;
    color:#fff;
}

.step.active .step-title{
    color:#fff;
    font-weight:600;
}

/* Card */
.form-card{
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    max-height: calc(100vh - 228px);
    overflow-y: auto;
}

.next-btn{
    background:linear-gradient(45deg, #064c96, #3764b7);
    border:none;
    color:#fff;
    border-radius:5px;
}
.form-select{
    font-size: var(--tp-fz-body);
}
 
.link0area ul li .form-check-label{
    font-size: 16px;
}
.more-about{
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 15px;
}
.more-about::after{
    content: '';
    position: absolute;
    background: #fff;
    height: 2px;
    width: 100px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    background: linear-gradient(90deg, #064c96, #fff, #3764b7);
    animation: shine 3s linear infinite;
   
}
@keyframes shine {
    to {
        background-position: 200% center;
    }
}
 
@media (max-width: 575px) {
    .link0area{
        width: calc(100% - 8px);
        padding: 12px 8px;
    min-width: inherit;

    }  
    .link0area ul li{
        padding: 0 6px;
    }    
}

/*Rishikand css end*/
 
 
