/*---------------------------------------------------- Color------------------------- ------------*/
:root {

    --white: #fff;
    --primary-color: #7a05ff;
    --black: #313131;

}

/* header */
header {
    height: 68px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
}

.headGrid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.logo img {
    height: 48px;
    object-fit: contain;
}

.headC {
    display: flex;
    justify-content: center;
}

.headR {
    display: flex;
    justify-content: right;
}

.headC .iconInput {
    width: 100%;
}

.headC .iconInput input {
    background-color: transparent;
}



/* hero section */
.heroSec {
    margin-top: 64px;
    background: linear-gradient(180deg, #f1e6ff, #fff 52.4%);
}

.heroSec h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}

.heroSec h2 span {
    color: var(--primary-color);
}

.heroSec h4 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heroSec h4 img {
    height: 24px;
}

.heroSec p {
    margin: 16px 0 24px;
}

.heroRight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heroRight img {
    width: 70%;
    object-fit: contain;
}



/* featuered section */


.featuredCon {
    width: 100%;
}


.featuredCon .slide-container {
    width: 100%;

}

.slide-content-featured {
    margin: 0 50px;
    overflow: hidden;
    border-radius: 16px;
}


.featuredCon .card {

    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}



.featuredCon .swiper-navBtn {
    color: #353536;
    transition: color 0.3s ease;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 19px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.featuredCon .swiper-navBtn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


.featuredCon .swiper-button-next-featured {
    right: 0 !important;
}

.featuredCon .swiper-button-prev-featured {
    left: 0 !important;
}


/* How It Works */

.howWorkRight {
    display: flex;
    justify-content: end;
}

.howWorkRight img {
    width: 80%;
    border-radius: 20px;
}

.howWorkBox {
    width: calc(100% - 2px);
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #c1b6f8;
    text-align: center;
    background: #f7f5fe;
    gap: 16px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

}

.howWorkBox .number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--white);
    color: var(--black);
    font-weight: 700;
    position: relative;
    z-index: 3;
}

.howWorkBox.second {
    background: #f2f8fe;
    border: 1px solid #99c7f5;
}




.howWorkBox.third {
    background: #fef5f8;
    border: 1px solid #f6b3ca;
}



.howWorkBox.forth {
    background: #fffbef;
    border: 1px solid #ffe589;
}



.grid2HowFirst {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 10px;
    margin-bottom: 10px;
}

.grid2HowLast {
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 10px;
}

.howWorkBox::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.howWorkBox.first::after {
    top: 0;
    left: 66px;
    background-image: url('../images/imgicons/how1.png');
}

.howWorkBox.second::after {
    top: 0;
    left: 0;
    background-image: url('../images/imgicons/how2.png');
    width: 110%;
}

.howWorkBox.third::after {
    top: 0;
    right: 0;
    background-image: url('../images/imgicons/how3.png');
}

.howWorkBox.forth::after {
    top: -3px;
    left: 0;
    background-image: url('../images/imgicons/how4.png');
    width: 120%;
}

.howWorkBox h5 {
    font-weight: 600;
    position: relative;
    z-index: 3;
    width: 132px;
}

/* trusted section */

.trustedSec h3 {
    font-size: 20px;
    margin-bottom: 32px;
}

.trustedSec h3 span {
    color: var(--primary-color);
}



.trustedCon {
    width: 100%;
}


.trustedCon .slide-container {
    width: 100%;

}

.slide-content-trusted img {
    height: 64px;
}


/* Internships section */


.internshipsCon {
    width: 100%;
    position: relative;
}


.internshipsCon .slide-container {
    width: 100%;

}

.slide-content-internships {
    margin: 0 50px;
    overflow: hidden;
    border-radius: 16px;
}


.internshipsCon .card {

    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}



.internshipsCon .swiper-navBtn {
    color: #353536;
    transition: color 0.3s ease;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 19px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.internshipsCon .swiper-navBtn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


.internshipsCon .swiper-navBtn::before,
.internshipsCon .swiper-navBtn::after {
    font-size: 16px !important;

}

.internshipsCon .swiper-button-next-internships {
    right: 0 !important;
}

.internshipsCon .swiper-button-prev-internships {
    left: 0 !important;
}



/* Testimonial section */


.testimonialCon {
    width: 100%;
    position: relative;
}


.testimonialCon .slide-container {
    width: 100%;

}

.slide-content-testimonial {
    margin: 0 50px;
    overflow: hidden;
    border-radius: 20px;
}


.testimonialCon .card {

    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}



.testimonialCon .swiper-navBtn {
    color: #353536;
    transition: color 0.3s ease;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 19px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.testimonialCon .swiper-navBtn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


.testimonialCon .swiper-navBtn::before,
.testimonialCon .swiper-navBtn::after {
    font-size: 16px !important;

}

.testimonialCon .swiper-button-next-testimonial {
    right: 0 !important;
}

.testimonialCon .swiper-button-prev-testimonial {
    left: 0 !important;
}


/* achivement Section */
.achivementFlex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.achivement {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Hover Effect */
.achivement:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Number */
.achivement h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.achivement h2 b {
    font-weight: 600;
}

/* Plus Sign */
.achivement span {
    font-size: 30px;
    color: var(--black);
}

/* Text */
.achivement p {
    font-size: 20px;
    margin-top: 10px;
    color: #555;
}

/* footer */

footer {
    background-color: #f6eeff;

}

.footarTop {
    border-bottom: 2px dashed #e2c9ff;
    padding: 32px 0;
    position: relative;
}

.footarTop::before {
    content: '';
    width: 35%;
    height: 50px;
    background: #f6eeff;
    position: absolute;
    left: 0;
    top: -40px;
    border-top-right-radius: 100px;
}

.footarTop .myContainer {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footarTop .logo {
    height: 100px;
}

.socialIcon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socialIcon img {
    width: 25px;
}

.footerMain {
    padding: 64px 0 64px;
}

.footerMain .myContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.footerMain .myContainer .intImg {
    width: 70%;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e2c9ff;
    margin-bottom: 32px;
}

.footerMain .myContainer h4 {
    font-size: 14px;
    margin-bottom: 16px;
}

.footerMain .myContainer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footerMain .myContainer ul li {
    font-size: 12px;
    color: #4b4b4b;
}

.footerMain .myContainer ul li:hover {
    text-decoration: underline;
}

.footerMain .myContainer p {
    font-size: 12px;
}

.footerBottom {
    background: #e2c9ff;
    padding: 20px 0;
    width: 100%;
}

.footerBottom .myContainer {
    display: flex;
    justify-content: space-between;
}

.footerBottom .myContainer p {
    font-size: 11px;
    color: var(--black);
}


/* other page */
.applyHeader {
    border-bottom: 3px solid var(--primary-color);
    padding: 10px 0;
    position: fixed;
    left: 0;
    top: 69px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    width: 100%;
}

.applyHeader .myContainer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.applyHeader .myContainer .comanyImg {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;

}

.applyHeader .myContainer .comanyImg img {
    width: 70%;
    object-fit: contain;
}

.applyHeader .myContainer h4 {
    font-size: 18px;
    font-weight: 500;
}

.applyHeader .myContainer p {
    font-size: 12px;
    margin-top: 4px;
}

.applicationFormSec {
    padding-top: 73px;
    background-color: #F6F6F6;
    padding-bottom: 50px;
}





/* login page */
.loginBody {
    background-color: #F6EEFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.loginCard {
    background-color: var(--white);
    padding: 10px 0 10px 10px;
    width: 854px;
    display: grid;
    grid-template-columns: 2fr 3fr;

    border-radius: 12px 12px 12px 60px;
    box-shadow: 0 4px 64px #00000026;
}

.loginIamge {
    background-color: #FFC700;
    padding: 20px;
    border-radius: 12px 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loginIamge .logo {
    height: 48px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.loginIamge .loginMainimage {
    height: 342px;
    margin-top: 90px;
}

.loginForm {
    padding: 30px;
}

.loginForm h2 {
    font-weight: 600;
    margin-bottom: 6px;
}

.loginForm p {
    font-size: 13px;
}

.loginForm .formBody {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loginForm .formBody label {
    font-weight: 400;
}

.loginForm .formBody .submitBtn {
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
}

.loginForm center {
    font-size: 13px;
    margin-top: 20px;
    color: var(--black)
}

.forgetPassCon {
    font-size: 12px;
    color: var(--primary-color);
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

/* dashboard css */

.dashboardCon {
    display: grid;
    grid-template-columns: 2fr 10fr;
    gap: 50px;
    margin-top: 20px;
}

.sideBar {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
}

.sideBar a {

    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.sideBar a.active {
    background-color: #f1e6ff;
    color: var(--primary-color);
}

.sideBar a.active:hover {
    background-color: #f1e6ff;

}

.sideBar a:hover {
    background-color: #ddd;
}

.dashboardMain {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 80vh;
    overflow: auto;
}

.dashboardMain::-webkit-scrollbar {
    display: none;
}

/* Header */
.dashHeader {
    display: flex;
    gap: 12px;
}

.dashHeader h2 {
    font-size: 24px;
    font-weight: 600;
}

.dashHeader p {
    color: #777;
    margin-top: 5px;
}

/* Cards */
.dashCards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboardCon .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dashboardCon .card i {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dashboardCon .card h3 {
    font-size: 22px;
}

/* Progress */
.dashProgress {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.progressItem {
    margin-top: 15px;
}

.progressText {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progressBar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 10px;
}

.progressFill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Activity */
.dashActivity {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.activityItem {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.activityItem i {
    color: #28a745;
}

.activityItem span {
    margin-left: auto;
    font-size: 12px;
    color: #888;
}



/* profile page */


.profileGrid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.profileCard {
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);

    border: 1px solid rgb(214, 214, 214);
    margin-bottom: 20px;
    height: fit-content;
    position: relative;
}

.editBtn {
    position: absolute;
    background-color: var(--primary-color);
    color: var(--white);
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;

}

.avaterImg {
    width: 100px;
    border: 2px solid #dddddd63;
    border-radius: 100px;
}

.profileCard h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 8px;
}

.profileCard .iconText {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.profileCard .iconText .iconBox {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.profileCard .iconText a {
    color: var(--primary-color)
}

.profileCard h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* myPrograms Page */
.filterButtons {
    width: 100%;
}

.enrolledPrograms {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enrollment {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.programCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.noPrograms {
    width: 100%;
    height: 600px;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.noPrograms img {
    width: 350px;
}

/* Certificate Page */
.certificateHeader {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.certificateIcon {
    font-size: 24px;
}

.certificateContent {
    display: flex;
    gap: 15px;
}

.certificateDetails {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.certificateDetails .issueDate {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
}

.certificateDetails .issueDate p {
    font-size: 12px;
    font-weight: 400;
}

.certificateList {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.myProfile {
    margin-bottom: 0px !important;
}