/*---------------------------------------------------- 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;
}

/* 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: 20px;
    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: 90%;
}

.internCardTop .price {
    color: rgb(0, 146, 0);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
}

.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 .progressContainer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    margin-bottom: 6px;
}

.internCardTop .progressBar {
    position: relative;
    width: 100%;
    height: 6px;
    background: #eee;
    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: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.internCardBottom p {
    font-size: 12px;
    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: flex-end;
}

.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;
}

.formItem {
    padding: 20px;
    margin-bottom: 6px;
    background-color: var(--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 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: calc(100% - 30px);
    /* 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;
}