/*---------------------------------------------------- Color------------------------- ------------*/
:root {

    --white: #fff;
    --primary-color: #7a05ff;
    --black: #313131;

}

/*---------------------------------------------------- Text Selection------------------------- ------------*/
::-moz-selection {
    /* Code for Firefox */
    background-color: var(--primary-color);
    color: var(--white);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/*---------------------------------------------------- Universal selector ------------------------- ------------*/
html {
    scroll-behavior: smooth;
}



* {
    padding: 0;
    margin: 0;

}

/* ::-webkit-scrollbar {
    display: none;
} */

body {
    font-family: "Inter", sans-serif;
    background-color: var(--white);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}


p {
    font-weight: 300;
    font-size: 14px;
}

.button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    border-radius: 100px;
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease-in-out;
    font-family: "Inter", sans-serif;
}

.button:hover {
    background-color: #5401b3;
    border: 1px solid #5401b3;
}


.buttonOutline {
    padding: 10px 20px;
    border: none;
    background-color: #7a05ff18;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    border-radius: 100px;
    border: 1px solid #d2abff;
    transition: all 0.2s ease-in-out;
    font-family: "Inter", sans-serif;
}

.buttonOutline:hover {
    border: 1px solid var(--primary-color);
    background-color: #7a05ff33;
}

.buttonIcon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.buttonIcon ion-icon {
    font-size: 18px;
}

.conSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
}

.myContainer {
    width: 1250px;
}

.mySliderContainer {
    width: 1350px;
}

.iconInput {
    border: 1px solid #ddd;
    border-radius: 100px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.iconInput input {
    width: 90%;
    border: none;
    padding: 10px 0
}

.iconInput input:focus {
    outline: none;
}

.secPTop {
    padding-top: 60px;
}

.secPBottom {
    padding-bottom: 60px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.grid4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;

}

.sectonTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-bottom: 16px;
}

.sectionTLeft {
    padding-left: 16px;
    position: relative;
}

.sectionTLeft::before {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sectionTLeft h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;
}

input,
select {
    font-family: "Inter", sans-serif;
}


/* ----------- */
.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}



/* course card */
.courseCard {
    border-radius: 16px;
    border: 1px solid #e2e2e2;
    padding: 4px;
    background-color: #f6f6f6;
}



.courseImg {
    width: 100%;
    height: 164px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

.courseImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courseDes {
    background-color: var(--white);
    padding: 12px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}



.courseDes h5 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 12px;
}

.courseDes h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.courseDes p {
    font-size: 12px;
}

.courseCard .cardFoot {
    padding: 12px 12px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.courseCard .cardFoot ion-icon {
    transform: rotate(312deg);
    font-size: 14px;
}



/* internships card */

.internshipsCard {
    border-radius: 16px;
    padding: 8px;
    border: 1px solid #e2e2e2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.internshipsCard:hover {
    border: 1px solid var(--primary-color);

}

.internshipsCard.disable {
    opacity: 0.6;
    cursor: not-allowed;
}

.internshipsCard.disable:hover {
    border: 1px solid #e2e2e2;
}

/* Badge */
.internshipsCard .badge {
    position: absolute;
    top: 12px;
    right: -40px;
    background: #F3813A;
    color: #fff;
    padding: 6px 30px 6px 50px;
    font-size: 10px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.internCardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(180deg, #f7f5fe, #f2f8fe);
    border-radius: 12px;
    padding: 12px;
}

.internCardTop .companyLogo {
    width: 66px;
    height: 66px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 16px;
}

.internCardTop .companyLogo img {
    width: 60%;
}

.internCardTop .price {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.internCardTop .price i {
    font-size: 10px;
}



.internCardTop .status.completed {
    color: rgb(0, 146, 0);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
}



.internCardTop .status.ongoing {
    color: rgb(233, 2, 2);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
}

.internCardTop .internCardTopLeft {
    width: calc(100% - 100px);
}

.internCardTop .progressContainer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    margin-bottom: 6px;
}


.internCardTop .progressBar {
    position: relative;
    width: 100%;
    height: 6px;
    background: #e3cbff;
    border-radius: 10px;
    overflow: hidden;
}

/* progress fill */
.internCardTop .progress {
    height: 100%;
    background: #7012dc;
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* progress text */
.internCardTop .progressText {
    color: #555;
}

/* completion line */
.internCardTop .progressBar::after {
    left: var(--marker, 0%);
}

.internCardTop h6 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12px;
}

.internCardBottom {
    padding: 24px 12px 16px;
}

.internCardBottom h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.internCardBottom p {
    font-size: 11px;
    font-weight: 400;
}


/* Testimonial card */

.testimonialsCards {
    padding: 24px 24px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonialsCards .minimizeLineTestimonial {
    font-size: 13px;
    font-weight: 500;
}

.testimonialsCards .quoteOpen {
    margin-bottom: 10px;
    width: 32px;
}

.testimonialsCards span {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    font-size: 12px;
    gap: 6px;
    cursor: pointer;
}

.userNameImage {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.userNameImage img {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    object-fit: cover;
}

.userNameImage p {
    font-size: 12px;
}

/* modal css */
.modal {
    display: none;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.596);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* center */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    z-index: 999;
}

.modal-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    padding: 32px 24px 24px;
    border-radius: 16px;

    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* zoom out effect */
.modal.hide .modal-content {
    transform: scale(0.7);
}

.modal-user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.modal-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.modal-user p {
    font-weight: 500;
}


/* other page */

.otherPageCon {
    padding-top: 69px;
    position: relative;
}



.formGrid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inputCon {
    margin-bottom: 24px;
}

.applicationFormSec .formHead {
    margin-bottom: 2px;
    padding: 20px;
    background-color: var(--white);
}

.applicationFormSec .formHead h2 {
    font-weight: 600;
}

.formGrid3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.formGridPay {
    display: flex;
    gap: 40px;
    align-items: center;
}

.formItem {
    padding: 20px;
    margin-bottom: 6px;
    background-color: var(--white);
}

.formItem.qr {
    background: rgb(226, 212, 250)
}

.qr-img img {
    height: 168px;
    background: #fff;
    padding: 10px;
    border-radius: 18px;
}

.qr input {
    background: white;
}


.formItem.bottomRadius {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.formItem h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}


.formBody label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.formBody label .required {
    color: red;
}

.formBody small {
    display: block;
    font-size: 12px;
    color: var(--black);
    margin-bottom: 6px;
}

.formBody small a {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.formBody input,
.formBody select {
    border: 1px solid #ddd;
    width: calc(100% - 30px);
    padding: 12px 15px;
    border-radius: 8px;
}

.formBody select {
    width: 100%;
    cursor: pointer;
}

.formBody input:focus,
.formBody select:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    /* match your input width */
}

.phone-wrapper .prefix {
    padding: 12px 10px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-weight: 600;
    font-size: 12px;
}

.phone-wrapper input {
    border: none !important;
    width: 100% !important;
    padding: 12px 15px;
    outline: none;
}

.radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-group label {
    font-weight: 400;
}

.radio-pill {
    padding: 10px 18px;
    border: 1px dashed #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.radio-pill i {
    margin-right: 6px;
    font-size: 13px;
}

/* Hover effect */
.radio-pill:hover {
    background: #F6EEFF;
    border-color: #d2abff;
}

/* Active (checked) state */
input[type="radio"]:checked+.radio-pill {
    background: #F6EEFF;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

}

.checkboxCon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.checkboxCon input {
    width: fit-content;
    display: inline-block;
    cursor: pointer;
    margin-top: 2px;
}

.checkboxCon label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    color: var(--black);
    font-size: 12px;
}

.submitBtn {
    padding: 12px 24px;
    border-radius: 20px;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 500;
}


.backBtn {
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.backBtn:hover {
    transform: scale(1.5);
}

.menuToggle {
    display: none;
}

.loaderSec {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999999999999999;

    /* Transparent glass */
    background: rgba(255, 255, 255, 0.15);

    /* Glass blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* From Uiverse.io by anand_4957 */
.book,
.book__pg-shadow,
.book__pg {
    animation: cover 5s ease-in-out infinite;
}

.book {
    background-color: hsl(268, 90%, 65%);
    border-radius: 0.25em;
    box-shadow:
        0 0.25em 0.5em hsla(0, 0%, 0%, 0.3),
        0 0 0 0.25em hsl(278, 100%, 57%) inset;
    padding: 0.25em;
    perspective: 37.5em;
    position: relative;
    width: 6em;
    height: 4em;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
}

.book__pg-shadow,
.book__pg {
    position: absolute;
    left: 0.25em;
    width: calc(50% - 0.25em);
}

.book__pg-shadow {
    animation-name: shadow;
    background-image: linear-gradient(-45deg,
            hsla(0, 0%, 0%, 0) 50%,
            hsla(0, 0%, 0%, 0.3) 50%);
    filter: blur(0.25em);
    top: calc(100% - 0.25em);
    height: 2.75em;
    transform: scaleY(0);
    transform-origin: 100% 0%;
}

.book__pg {
    animation-name: pg1;
    background-color: hsl(223, 10%, 100%);
    background-image: linear-gradient(90deg,
            hsla(223, 10%, 90%, 0) 87.5%,
            hsl(223, 10%, 90%));
    height: calc(100% - 0.5em);
    transform-origin: 100% 50%;
}

.book__pg--2,
.book__pg--3,
.book__pg--4 {
    background-image: repeating-linear-gradient(hsl(223, 10%, 10%) 0 0.125em,
            hsla(223, 10%, 10%, 0) 0.125em 0.5em),
        linear-gradient(90deg, hsla(223, 10%, 90%, 0) 87.5%, hsl(223, 10%, 90%));
    background-repeat: no-repeat;
    background-position: center;
    background-size:
        2em 3.125em,
        100% 100%;
}

.book__pg--2 {
    animation-name: pg2;
}

.book__pg--3 {
    animation-name: pg3;
}

.book__pg--4 {
    animation-name: pg4;
}

.book__pg--5 {
    animation-name: pg5;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: hsl(223, 10%, 30%);
        --fg: hsl(223, 10%, 90%);
    }
}

/* Animations */
@keyframes cover {

    from,
    5%,
    45%,
    55%,
    95%,
    to {
        animation-timing-function: ease-out;
        background-color: hsl(278, 84%, 67%);
    }

    10%,
    40%,
    60%,
    90% {
        animation-timing-function: ease-in;
        background-color: hsl(271, 90%, 45%);
    }
}

@keyframes shadow {

    from,
    10.01%,
    20.01%,
    30.01%,
    40.01% {
        animation-timing-function: ease-in;
        transform: translate3d(0, 0, 1px) scaleY(0) rotateY(0);
    }

    5%,
    15%,
    25%,
    35%,
    45%,
    55%,
    65%,
    75%,
    85%,
    95% {
        animation-timing-function: ease-out;
        transform: translate3d(0, 0, 1px) scaleY(0.2) rotateY(90deg);
    }

    10%,
    20%,
    30%,
    40%,
    50%,
    to {
        animation-timing-function: ease-out;
        transform: translate3d(0, 0, 1px) scaleY(0) rotateY(180deg);
    }

    50.01%,
    60.01%,
    70.01%,
    80.01%,
    90.01% {
        animation-timing-function: ease-in;
        transform: translate3d(0, 0, 1px) scaleY(0) rotateY(180deg);
    }

    60%,
    70%,
    80%,
    90%,
    to {
        animation-timing-function: ease-out;
        transform: translate3d(0, 0, 1px) scaleY(0) rotateY(0);
    }
}

@keyframes pg1 {

    from,
    to {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.4deg);
    }

    10%,
    15% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(180deg);
    }

    20%,
    80% {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(180deg);
    }

    85%,
    90% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(180deg);
    }
}

@keyframes pg2 {

    from,
    to {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(0.3deg);
    }

    5%,
    10% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.3deg);
    }

    20%,
    25% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.9deg);
    }

    30%,
    70% {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(179.9deg);
    }

    75%,
    80% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.9deg);
    }

    90%,
    95% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.3deg);
    }
}

@keyframes pg3 {

    from,
    10%,
    90%,
    to {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(0.2deg);
    }

    15%,
    20% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.2deg);
    }

    30%,
    35% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.8deg);
    }

    40%,
    60% {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(179.8deg);
    }

    65%,
    70% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.8deg);
    }

    80%,
    85% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.2deg);
    }
}

@keyframes pg4 {

    from,
    20%,
    80%,
    to {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(0.1deg);
    }

    25%,
    30% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.1deg);
    }

    40%,
    45% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.7deg);
    }

    50% {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(179.7deg);
    }

    55%,
    60% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.7deg);
    }

    70%,
    75% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0.1deg);
    }
}

@keyframes pg5 {

    from,
    30%,
    70%,
    to {
        animation-timing-function: ease-in;
        background-color: hsl(223, 10%, 45%);
        transform: translate3d(0, 0, 1px) rotateY(0);
    }

    35%,
    40% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0deg);
    }

    50% {
        animation-timing-function: ease-in-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(179.6deg);
    }

    60%,
    65% {
        animation-timing-function: ease-out;
        background-color: hsl(223, 10%, 100%);
        transform: translate3d(0, 0, 1px) rotateY(0);
    }
}



.loaderSec.hide {
    opacity: 0;
    visibility: hidden;
}

/* THIS hides scrollbar */
body.loading {
    overflow: hidden;
}

.secMargin {
    margin: 20px 0;
}

/* ---------reveal effect----------- */
.reveal {
    position: relative;
    opacity: 0;
    transition: 1s all ease;
}

/* LEFT */
.reveal-l {
    transform: translateX(-100px);
}

.reveal-l.active {
    transform: translateX(0);
    opacity: 1;
}

/* RIGHT */
.reveal-r {
    transform: translateX(100px);
}

.reveal-r.active {
    transform: translateX(0);
    opacity: 1;
}

/* TOP */
.reveal-top {
    transform: translateY(-100px);
}

.reveal-top.active {
    transform: translateY(0);
    opacity: 1;
}

/* BOTTOM */
.reveal-bottom {
    transform: translateY(100px);
}

.reveal-bottom.active {
    transform: translateY(0);
    opacity: 1;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
}

/* Pending */
.status-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

/* Submitted */
.status-submitted {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #22c55e;
}

/* Late */
.status-late {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}