/*---------------------------------------------------- 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 .backBtn {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
    margin-left: -3px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);

}


.loginForm .backBtn:hover {
    transform: scale(1.02);
}

.loginForm .backBtn ion-icon {
    font-size: 15px;
    color: var(--primary-color);
}

.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;
    align-items: center;
}

.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;

    margin: 0 5px;
}

.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;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

    margin: 0 5px;
}

.progressItem {
    margin-top: 15px;
}

.progressText {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progressBar {
    width: 100%;
    height: 8px;
    background: #e3cbff;
    border-radius: 10px;
    margin-top: 16px;
}

.progressFill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

/* Activity */
.dashActivity {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 0 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.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;
}

.noPrograms center h4 {
    margin-bottom: 5px;
}

/* 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;
}

.openMenuBtn,
.closeBtn {
    display: none;
}

.detailsGrid {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 80px;

}

.internshipDetails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.internshipDetails p {
    width: 490px;
}

.internshipDetails h1 {
    font-size: 50px;
}

.applyButton {
    border: 1px solid #5401b3;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 3px solid var(--strokeColor, var(--primary-color));
    height: 132px;
}

.quickApply .button {
    width: 100%;
}

.greetings {
    width: 260px;
    display: flex;
    gap: 10px;
}

.greet-img {
    height: 40px;
    width: 40px;
    background-color: #cfcfcf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.greet-img img {
    height: 75%;
    width: 75%;
}

.enrolledUsers{
    display: flex;
    gap: 5px;
    align-items: center;
}

.enrolledUsers small{
    font-size: 12px;
}
.enrolledUsers img{
    height: 23px;
}

.internshipHeader{
    background: linear-gradient(97.12deg,#3f2b9a 11.7%,#121212 104.33%);
    display: flex;
    flex-direction: row;
    align-items: start;
    width: 100%;

}

.headerTop {
    background: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding-top: 54px;
    
}

.vector {
    height: 200px;
}

.techStack {
    display: flex;
}

.phpLogo {
    margin-left: 5px;
}

.internshipCards{
    background: linear-gradient(97.12deg,#3f2b9a 11.7%,#121212 104.33%);
    margin-bottom: 60px;
}

/* .testimonialCon .card {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    width: 128px;
    height: 110px;
    text-align: center;
} */

.featCard{
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    width: 128px;
    height: 107px;
    text-align: center;
    padding: 10px 0;
}

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

.cardIcon {
    height: 43px;
    width: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 23px;
}

.allCards {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.card p {
    font-size: 13px;
    color: #686868;
}

.cardIcon.module {
    background: #a697e5;
    color: #7362b7;
}

.cardIcon.exercises {
    background: rgb(153, 217, 243);
    color: rgb(64, 162, 200);
}

.cardIcon.time {
    background: rgb(252, 178, 151);
    color: rgb(202, 83, 39);
}

.cardIcon.resources {
    background: rgb(172, 246, 172);
    color: rgb(33, 171, 33);
}

.cardIcon.certificate {
    background: pink;
    color: rgb(225, 71, 97);
}

.benefitsSec {
    display: flex;
    gap: 10px;
}

.learnSec{
    width: 61%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.learnList {
    display: flex;
    gap: 30px;
}

.listItems {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listItem {
    display: flex;
    gap: 5px;
}

.skillSec{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}

.divider{
    width: 1.5px;
    background: linear-gradient(0deg,#fff0,#3b3b3b,#fff0);
    height: 178px;
}

.aboutSec{
    display: flex;
    gap: 48px;
}

.aboutInternship{
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aboutInternship ul li{
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 5px;
}

.aboutInternship ul{
    padding-left: 30px;
    margin-bottom: 40px;
}

.contactBg {
    position: relative;
}

.contactBg::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 60px;
    width: 64%;
    /* background-image:url("/frontend/assets/images/contact_vector.jpg"); */
    background:
        linear-gradient(
            to right,
            rgba(255,255,255,0.5) 60%,   /* visible image */
            rgba(255,255,255,1) 100%   /* fades into bg */
        ),
        url("/frontend/assets/images/contact_vector.jpg");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;

    z-index: -1;
}

.contactGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.contactBox{
    background-color: #f6eeff;
    padding: 20px;
}

.contactBox.inquiry{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.contactBox.company{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.contactIcon{
    height: 60px;
}

.contactBox h2{
    margin-bottom: 10px;
}

.contactBg h1{
    margin-bottom: 20px;
}

/* -------About Page-------- */
.aboutSecBanner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutSec{
    text-align: justify;
}

.introImg{
    width: 50%;
}

.intro{
    width: 50%;
}

.introImg img{
    width: 100%;
}

.aboutSecBanner .intro h3{
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 20px;
}

.aboutSecBanner .intro h1{
    font-size: 50px;
    margin-bottom: 20px;
}

.aboutSecBanner .intro h4{
    width: 88%;
}

.journeySec{
    background-color: #f6eeff;
}

.journey{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutJourney h1{
    margin-bottom: 20px;
}

.aboutJourney p{
    font-size: 18px;
    text-align: justify;
}

.ourGoals{
    display: flex;
    gap: 20px;
}

.goal2{
    width: 355px;
    background-color: #a8d1fa; 
}

.goal1{
    width: calc(100% - 355px);
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.goal11 {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 20px;
}

.goal12 {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 20px;
}

.goal1-1{
    /* width: 300px; */
    background-color: rgb(252, 255, 204);
    padding-bottom: 94px !important;
}

.goal1-1 img{
    position: absolute;
    bottom: -44px !important;
    right: -27px !important;
}

.goal1-2{
    /* width: calc(100% - 300px); */
    background-color: #f9bed3;
}

.goal1-3{
    /* width: calc(100% - 300px); */
    background-color: #bcf4c9;
    height: 188px;
}

.goal1-4{
    /* width: calc(300px); */
    background-color: #fad3b8;
}

.goalBox{
    border-radius: 18px; 
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
}

.learn{
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.goalBox p{
    width: 70%;
}

.study{
    height: 229px;
}

.goal1-2 img{
    position: absolute;
    bottom: -9px !important;
    right: -28px !important;
}

.team{
    height: 229px;
}

.goal1-3 img{
    position: absolute;
    bottom: -23px !important;
    right: -28px !important;
}

.winner{
    height: 229px;
}

.goal1-4 img{
    position: absolute;
    bottom: -4px !important;
    right: -68px !important;
}

.goalBox .certificate{
    height: 509px;
}

.goal2 img{
    position: absolute;
    bottom: -29px !important;
    right: -93px !important;
}

.programGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.internshipList{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.headTitle{
    margin-bottom: 30px;
}

.certificateSec{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.certificateImg{
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
}

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

.certificateCard{
    padding-bottom: 18px;
}

.certificateTag{
    background-color: #7a05ff;
    color: white;
    width: fit-content;
    padding: 4px 10px;
    text-align: center;
    font-weight: 300;
    font-size: 12px;
    border-radius: 16px;
    margin-top: 10px;
}

.certificateBottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.issueDate{
    display: flex;
}

.certificateBottom .download-outline{
    font-size: 34px;
    color: #7a05ff;
}

.certificateBottom .download-outline:hover{
    color: #5401b3;
}

.certificateDetails{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.taskSec{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.taskTop{
    display: flex;
    align-items: center;
    gap: 10px;
}

.taskTop .check{
    font-size: 16px;
}

.taskTag{
    margin-top: 0;
    background-color: #008213;
}

.taskDetails{
    display: flex;
    gap: 15px;
}

.tutorName{
    display: flex;
    align-items: center;
    gap: 5px;
}

.taskDetails .issueDate{
    gap: 5px;
}

.overdue{
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(230, 1, 1);
}

.taskBottom{
    display: flex;
    gap: 20px;
    justify-content: end;
}

.taskCard{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
}

.taskSec .buttonOutline{
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.taskBottom .download-outline{
    font-size: 14px;
}

.faq-section {
    padding-bottom: 60px;
  }

  .container {
    max-width: 800px;
    margin: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
  }

  .section-header p {
    color: #666;
    font-size: 16px;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .faq-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
  }

  .faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
  }

  .faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
  }

  .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }

