@charset 'UTF-8';

.static-visual-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: .25rem;
    background: #fff
}

.static-visual-bar>div {
    flex: 0 0 150px;
    text-align: center;
    padding: 10px 0 2.5px 0;
    position: relative
}

.static-visual-bar>div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #ddd
}

@media (max-width:768px) {
    .static-visual-bar {
        justify-content: space-between
    }

    .static-visual-bar>div {
        flex: 0 0 calc(50% - 10px)
    }

    .static-visual-bar>div::after {
        display: none
    }
}

.custom-tab-section .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--colorwhite);
    border-radius: 5px;
    border: 1px solid var(--primarycolor);
    color: var(--primarycolor);
    box-shadow: rgb(0 0 0 / .05) 0 0 0 1px
}

.custom-tab-section .nav-pills .nav-link {
    background: var(--colorwhite);
    border-radius: 5px;
    border: 1px solid var(--disabled);
    color: var(--dark-90);
    box-shadow: rgb(0 0 0 / .05) 0 0 0 1px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    padding: 1em;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s
}

.custom-tab-section .nav-pills .nav-link:hover {
    background: var(--colorwhite);
    color: var(--tertiarycolor);
    border: 1px solid var(--tertiarycolor)
}

.custom-tab-section .nav-pills .nav-link:last-child {
    margin-bottom: 0
}

.custom-tab-section .nav-link span.show-eco-text {
    display: none
}

.custom-tab-section .nav-link.active span.show-eco-text {
    display: inline-block
}

.fail-success .journey {
    margin: auto;
    position: relative
}

.fail-success .journey::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #efefef;
    transform: translateX(-50%);
    border-radius: 10px
}

.fail-success .step {
    position: relative;
    width: 50%;
    padding: 2em;
    box-sizing: border-box
}

.fail-success .step.left {
    left: 0
}

.fail-success .step.right {
    left: 50%
}

.fail-success .step .content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .08);
    position: relative
}

.fail-success .step.left .content {
    border-left: 5px solid #e63946
}

.fail-success .step.right .content {
    border-left: 5px solid #2a9d8f
}

.fail-success .step::after {
    content: "";
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--tertiarycolor);
    z-index: 1
}

.fail-success .step.left::after {
    right: -10px
}

.fail-success .step.right::after {
    left: -10px
}

.fail-success .fail {
    color: #e63946
}

.fail-success .success {
    color: #2a9d8f
}

@media (max-width:767.98px) {
    .fail-success .journey::before {
        left: 8px
    }

    .fail-success .step {
        width: 100%;
        padding-left: 50px;
        text-align: left !important
    }

    .fail-success .step.right {
        left: 0
    }

    .fail-success .step::after {
        left: 0 !important
    }

    .fail-success .step.left::after {
        right: 0 !important
    }
}

.real-project-box {
    background: var(--tertiarycolor);
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s
}

.real-project-box:hover {
    background: var(--primarycolor)
}

.stat-card {
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08)
}

.monthly-syllabus-tab .nav-tabs .nav-link {
    background: var(--colorwhite);
    color: var(--tertiarycolor);
    border-radius: .25rem;
    font-weight: 500;
    color: inherit;
    border: 1px solid #ddd
}

.monthly-syllabus-tab .nav-tabs .nav-link:hover {
    background: var(--silver);
    color: var(--dark-75)
}

.monthly-syllabus-tab .nav-tabs {
    border: none
}

.monthly-syllabus-tab .nav-tabs .nav-link.active {
    background: var(--tertiarycolor);
    color: #fff !important;
    border-color: var(--tertiarycolor)
}

.monthly-syllabus-tab .nav-tabs .nav-item {
    margin-right: 5px;
    margin-bottom: 5px
}

.monthly-syllabus-tab .nav-tabs .nav-item:last-child {
    margin-right: 0 !important
}

.stepper {
    position: relative
}

.stepper .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative
}

.stepper .step::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 40px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--tertiarycolor);
    opacity: .2
}

.stepper .step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--tertiarycolor);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    z-index: 1
}

.stepper .step-content {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    flex-grow: 1
}

.growth-step {
    position: absolute;
    top: -35px;
    right: 0
}

.difference-icon {
    position: absolute;
    top: 10px;
    right: 0
}

.difference-background {
    border-radius: 50px;
    width: 75px;
    height: 75px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.choose-path-box {
    background: rgb(255 255 255 / .1)
}

.vinci-ribbon {
    position: absolute;
    top: 12px;
    right: -20px;
    padding: 4px 12px;
    font-size: .75rem;
    transform: rotate(15deg);
    border-radius: 4px
}

.talent-ribbon {
    position: absolute;
    top: 10px;
    right: -15px;
    padding: 4px 12px;
    font-size: .75rem;
    transform: rotate(15deg);
    border-radius: 4px
}

.left-right-placement-carousel {
    width: 250px;
    height: auto
}

.left-right-placement-carousel .carousel-box {
    background: var(--colorwhite);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    border: 1px solid #ddd
}

.left-right-placement-carousel .carousel-box .student-picture {
    width: 100px;
    height: 100px;
    background: #fff1c2;
    border-radius: 50%;
    display: inline-block;
    text-align: center
}

.left-right-placement-carousel .carousel-box .company-logo {
    width: 100px;
    height: auto;
    display: inline-block;
    text-align: center
}

ul.skills-master {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px
}

ul.skills-master li.skills-badge {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #fffcea;
    border-radius: 4px;
    padding: 4px 8px;
    background-color: #fffcea;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border 0.3s ease
}

ul.skills-master li.skills-badge:hover {
    background-color: #fef9db;
    border: 1px solid #fef9db
}

ul.skills-master li.skills-badge .skills-tag {
    vertical-align: middle;
    display: inline;
    color: inherit;
    padding: 0;
    -webkit-text-decoration: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0
}

.floating-position-1 {
    left: -50px;
    top: 25px;
    z-index: 99
}

.floating-position-2 {
    left: 0;
    bottom: 25px;
    z-index: 99
}

.floating-position-3 {
    right: 0;
    bottom: 30px;
    z-index: 99
}

.student-work-links .img-hover-container {
    position: relative;
    display: inline-block;
    overflow: hidden
}

.student-work-links .img-hover-container img {
    display: block;
    width: 100%;
    border-radius: 10px
}

.student-work-links .img-hover-container .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
    text-decoration: none
}

.student-work-links .img-hover-container .hover-overlay-icon {
    background: #1d70fa;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 1em
}

.student-work-links .img-hover-container:hover .overlay {
    opacity: 1
}

.student-work-links .img-hover-container .overlay svg {
    transition: transform 0.3s ease
}

.student-work-links .img-hover-container:hover .overlay svg {
    transform: scale(1.2)
}

.vs-circle {
    position: absolute;
    left: 34%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #1a2b4d;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgb(0 0 0 / .2)
}

@media (max-width:991.98px) {
    .vs-circle {
        position: relative
    }
}

.bridge-circle {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: #1a2b4d;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgb(0 0 0 / .2)
}

@media (max-width:991.98px) {
    .bridge-circle {
        position: relative
    }
}

.syllabus-heading-ribbon {
    position: absolute;
    top: -3.8rem;
    left: 50%;
    margin: 0;
    padding: 4px 12px;
    font-size: .75rem;
    border-radius: 4px;
    white-space: nowrap
}

.candidate-heading-ribbon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    margin: 0;
    padding: 4px 12px;
    font-size: .75rem;
    border-radius: 4px;
    white-space: nowrap
}

.like-ribbon {
    position: absolute;
    top: 0;
    right: -25px;
    padding: 12px;
    transform: rotate(15deg);
    border-radius: 4px
}

@media (max-width:991.98px) {
    .mobile-sticky-course {
        position: sticky;
        top: 75px;
        z-index: 1000;
        background: #fff;
        width: 100%;
        padding: 10px
    }
}

@media (min-width:992px) {
    .mobile-sticky-course {
        position: static
    }
}

@media (min-width:1200px) {
    .whychoosesection .col-xl-4 {
        width: 20% !important
    }
}

.interview-section {
    background: linear-gradient(180deg, #1b2e4b, #162743);
    color: #fff
}

.reality-badge {
    background: rgb(255 140 0 / .15);
    color: #ff8c00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px
}

.interview-section .interview-card {
    border-radius: 16px;
    border: .8px solid rgb(255 255 255 / .1);
    background: rgb(255 255 255 / .05);
    padding: 30px 25px;
    height: 100%;
    position: relative
}

.interview-section .ask-box {
    border-radius: 0 16px 16px 16px;
    border: .8px solid rgb(255 255 255 / .05);
    background: rgb(255 255 255 / .1);
    position: relative;
    padding: 20px;
    text-align: left
}

.interview-section .icon-dot {
    width: 32px;
    height: 32px;
    background: #ff8c00;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b2e4b;
    margin-bottom: 10px;
    position: absolute;
    top: -7px;
    left: -7px
}

.interview-section .ask-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #BEDBFF
}

.interview-section .ask-box h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px
}

.interview-section .arrow-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgb(26 43 77 / .2) 0%, #ED8722 100%);
    margin: 20px auto
}

.interview-section .answer-box {
    border-radius: 14px;
    border: .8px solid rgb(237 135 34 / .2);
    background: linear-gradient(180deg, #1A2B4D 0%, #152340 100%);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    padding: 20px;
    text-align: left
}

.interview-section .answer-box p {
    color: #D1D5DC;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px
}

.interview-section .answer-title {
    font-size: 14px !important;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase !important;
    color: #ff8c00 !important;
    margin-bottom: 8px
}

.interview-section .portfolio-note {
    border-radius: 16px;
    border: .8px solid rgb(255 255 255 / .1);
    background: rgb(255 255 255 / .05);
    text-align: left;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px
}

.interview-section .portfolio-note i {
    color: #ff8c00;
    font-size: 22px
}

.interview-section .portfolio-note span {
    color: #ff8c00;
    font-weight: 600
}

.portfolio-note-icon {
    border-radius: 50%;
    background: #ED8722;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center
}

.jurneysection .tab-content {
    box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0px !important;
    border: none !important;
    overflow: clip;
    border-radius: 15px
}

.career-card {
    border-radius: 4px;
    border: .5px solid #E5E5E5;
    background: #FFFCEA
}

.custoomstyle {
    right: -9px !important;
    top: -48px !important
}



/* New UIUX Page */




.product-thinking-section {
    background-image: url(../images/online-uiuxpage/why-product-bg.webp);
    display: flex;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: black;
    background-position: center;
}



.frameworks-section {
    background-color: #ffffff;
    /* Perspective Grid Background */
    background-image:
        linear-gradient(rgba(200, 200, 200, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 200, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center bottom;
    /* This creates the vanishing point effect at the bottom */
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.frameworks-section .framework-card {
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    box-shadow: 8px 8px 0px #000;
    transition: transform 0.2s ease;
}

.frameworks-section .icon-box {
    width: 55px;
    height: 55px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.frameworks-section .icon-box i {
    color: #000;
    font-size: 1.2rem;
}

.card-title {
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.frameworks-section .card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .frameworks-section .framework-card {
        box-shadow: 5px 5px 0px #000;
        margin-bottom: 20px;
    }
}




.bg-grid {
    background-image: url(../images/online-uiuxpage/bg-grid.webp);
    background-position: center;
}

.hero-container .main-text {
    font-size: 2.8rem;
    letter-spacing: -1.5px;
    font-weight: 700;
}

.hero-container .fw-black {
    font-weight: 900;
}

.hero-container .figma-icon {
    max-width: 55px;
    vertical-align: middle;
    margin-top: -5px;
}

.think-underline {
    position: relative;
}

.think-underline svg {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.hero-container .emoji-badge {
    object-fit: cover;
    max-width: 50px;
    margin: 0 5px;
}

.hero-container .btn-whatsapp-custom {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    border-radius: 100px;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 6px 0 #000;
    transition: all 0.1s ease;
}

.hero-container .btn-whatsapp-custom:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #000;
}

.hero-container .stats-card-container {
    border-radius: 18px;
    padding: 20px 20px;
    max-width: 900px;
    box-shadow: 0 4px 24px 5px rgba(0, 0, 0, 0.06);
    background-color: white;
}

.hero-container .stat-box {
    border-right: 1.5px solid #EAEAEA;
    padding: 0px !important;
}

.hero-container .stat-box label {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-container .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
}

.hero-container .stat-value.small {
    font-size: 15px;
    border-radius: 12.217px;
    background: #EFEFEF;
    padding: 0px 10px;
}

@media (max-width: 768px) {
    .hero-container .main-text {
        font-size: 1.8rem;
    }

    .hero-container .stat-box {
        border-right: none;
        margin-bottom: 20px;
    }

    .hero-container .emoji-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}



/* Typography */
.founder-section .italic-title {
    font-style: italic;
    font-size: 1.5rem;
}

/* Video Play Button Overlay */
.founder-section .video-container {
    cursor: pointer;
    overflow: hidden;
}

.founder-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    transition: transform 0.3s ease;
}

.founder-section .video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

/* The Quote Border */
.founder-section .quote-section {
    border-left: 3px solid #333;
    padding-left: 20px;
}

.founder-section .quote-section p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Avatar Styling */
.founder-section .rounded-circle {
    object-fit: cover;
    margin-right: 10px;
}

.founder-section .video-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}



/* --- Sticky Curriculum Section --- */


.sticky-card .sticky-card-inner {
    border-radius: 14.16px 0 0 14.16px;
    border: 0.885px solid #17171C;
    background: var(--color-white-solid, #FFF);
    box-shadow: 0 3.54px 3.54px 0 rgba(0, 0, 0, 0.25), 3.54px 3.54px 0 0 #000;
}

.sticky-stack .sticky-card {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    margin-bottom: 20px;
}

/* Custom Bullet points */
.sticky-stack .custom-list {
    list-style: none;
    padding-left: 0;
}

.sticky-stack .custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: black;
}

.sticky-stack .custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sticky-stack .phase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .sticky-stack .sticky-card {
        position: relative;
        top: 0 !important;
    }
}



/* Container Card */
.curriculum-section .stats-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft drop shadow */
    border: 1px solid #f0f0f0;
}

/* Individual Stat Blocks */
.curriculum-section .stat-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

/* Large Numbers */
.curriculum-section .stat-number {
    font-family: 'Inter', sans-serif;
    /* Replace with your font */
    font-weight: 800;
    font-size: 3rem;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}

/* Descriptive Text */
.curriculum-section .stat-text {

    color: #666;
}

/* Vertical Dividers */
.curriculum-section .divider {
    width: 1px;
    height: 60px;
    background-color: #ddd;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
    .curriculum-section .stats-card {
        flex-direction: column;
    }

    .curriculum-section .divider {
        width: 50%;
        height: 1px;
        margin: 20px 0;
    }
}

.curriculum-section .bg-numberrr {
    background-image: url(../images/online-uiuxpage/livesessions.webp);
    object-fit: cover;
}


.filter-card {
    border-radius: 16px;
    border: 1px solid #000;
    background: #FFF;
    box-shadow: 4px 4px 0 0 #000, 0 4px 0 0 #000;
    /* padding: 35px 35px 0 35px; */
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.filter-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Custom List Styles */
.filter-card ul li {
    font-size: 0.9rem !important;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-card hr {
    border-top: 1px solid #000 !important;
    opacity: 1;
}

.filter-card ul li::before {
    margin-right: 12px;
    font-weight: 900;
    display: inline-block;
    width: 20px;
}

.filter-card ul li.bad::before {
    content: "×";
    color: #d9534f;
    font-size: 1.5rem;
}

.filter-card ul li.good::before {
    content: "✓";
    color: #5cb85c;
    font-size: 1.2rem;
}

/* Image Handling */
.filter-card .img-container {
    margin-top: auto;
    /* Pushes image to bottom */
    text-align: center;
}

.filter-card .img-container img {
    max-height: 300px;
    display: block;
    margin-left: auto;
}

.filter-card .grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
}

.anti-edtech-section {
    background-image: url(../images/online-uiuxpage/edtechbg.webp);
    background-size: contain;
    background-position: bottom;
    width: 100%;
    background-repeat: no-repeat;
}




.students-works-section .italic {
    font-style: italic;
}

/* Header Link */
.students-works-section .view-all-link {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    font-size: 0.85rem;
}

/* Card Styling */
.students-works-section .project-card {
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.students-works-section .project-card:hover {
    transform: translateY(-5px);
}

/* Top Image Area */
.students-works-section .project-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Colors for Image Sections */
/* .students-works-section .bg-yellow { background-color: #e9d14e; }
.students-works-section .bg-green  { background-color: #4eb57a; }
.students-works-section .bg-grey   { background-color: #e5e5e5; } */

.students-works-section .project-img-wrapper img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.students-works-section h4 {
    font-size: 1.1rem;
}

/* Content Area */
.students-works-section .project-content {
    padding: 30px;
}

.students-works-section .project-content .description {
    font-size: 0.9rem;
    color: #555;
    min-height: 50px;
}

.students-works-section .project-content .insight {
    font-size: 0.85rem;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 15px !important;
    margin-top: 20px !important;
}

.students-works-section .case-study-link {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.students-works-section .case-study-link:hover {
    color: #000;
}



.career-transformation-section {
    background-image: url(../images/online-uiuxpage/bg-grid.webp);
}

.career-transformation-section .italic {
    font-style: italic;
    font-size: 14px !important;
}

.career-transformation-section .testi-card {
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: 6px 6px 0px 0px #000;
    overflow: hidden;
}

.career-transformation-section .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #F0BB21;
}

.career-transformation-section .label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 5px;
}

.career-transformation-section .highlight-text {
    color: #ffcc00;
    font-weight: 700;
}

.career-transformation-section .transformation-arrow {
    position: relative;
    flex-grow: 1;
    text-align: center;
    margin: 0 20px;
    max-width: 200px;
}

.career-transformation-section .arrow-line {
    border-top: 2px dashed #333;
    width: 100%;
    position: absolute;
    top: 50%;
}

.career-transformation-section .arrow-icon {
    position: relative;
    background: #fff;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    display: inline-block;
    font-weight: bold;
    color: #ff5500;
    z-index: 2;
}



.career-transformation-section .quote-box {
    background: #fcfcfc;
    border-left: 3px solid #ffcc00;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
}

.career-transformation-section .transformation-row {
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 15px 15px;
    /* Dotted pattern */
    padding: 20px 0;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .career-transformation-section .transformation-row {
        flex-direction: column;
        text-align: center;
    }

    .career-transformation-section .arrow-line {
        display: none;
    }

    .career-transformation-section .testi-card {
        box-shadow: 4px 4px 0px 0px #000;
    }
}


.cta-section-nrew {
    padding: 100px 0;
    background-color: #fff;
    /* Perspective Grid Background */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center bottom;
    /* This creates the vanishing point effect */
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Optional: To make the grid actually tilt like the image */
.cta-section-nrew::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg);
    transform-origin: top;
    z-index: 0;
}

.cta-section-nrew .container {
    position: relative;
    z-index: 1;
}

.cta-section-nrew .cta-title {
    font-weight: 800;
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.cta-section-nrew .cta-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px !important;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-nrew .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 35px;
    border: 2px solid #000;
    border-radius: 50px;
    transition: all 0.2s ease;
    /* Hard shadow to the bottom right */
    box-shadow: 5px 5px 0px 0px #000;
}

.cta-section-nrew .whatsapp-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px #000;
    color: #000;
}

.cta-section-nrew .whatsapp-btn svg {
    transition: transform 0.2s ease;
}

.cta-section-nrew .whatsapp-btn:hover svg {
    transform: translateX(5px);
}





.what-they-learned-section .video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    height: 400px;
}

.what-they-learned-section .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.8;
}

.what-they-learned-section .video-card:hover .video-thumb {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

.what-they-learned-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.what-they-learned-section .play-btn svg {
    width: 30px;
    margin-left: 4px;
}

.what-they-learned-section .video-card:hover .play-btn {
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.what-they-learned-section .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: left;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.what-they-learned-section .video-info h5 {
    font-size: 1rem;
}

.what-they-learned-section .video-info p {
    opacity: 0.8;
    font-size: 0.75rem;
}


.curriculum-container {
    background-color: #fcfcfd;
    background-image: radial-gradient(#e5e7eb 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    color: #1a1a1a;
}


.curriculum-container .header-section h1 {
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.curriculum-container .header-section p {
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.curriculum-container .accordion-item {
    border: none !important;
    background: transparent !important;
    margin-bottom: 20px;
}

.curriculum-container .accordion-button {
    background-color: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px 30px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease;
}

.curriculum-container .accordion-button:not(.collapsed) {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07) !important;
    color: inherit;
}

.curriculum-container .icon-box {
    width: 55px;
    height: 55px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #4b5563;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.curriculum-container .learning-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f3f4f6;
    color: #9ca3af;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.curriculum-container .module-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.curriculum-container .module-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

.curriculum-container .session-tag {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 15px;
}

.curriculum-container .accordion-button::after {
    background-color: #f3f4f6;
    background-size: 17px;
    background-position: center;
    padding: 15px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    margin: auto;
}

.curriculum-container .accordion-body {
    background-color: #ffffff;
    margin-top: -10px;
    border-radius: 0 0 16px 16px;
    padding: 30px;
    border-top: 1px solid #f3f4f6;
}

.ms-none {
    margin-left: initial !important;
}


.industry-skills .content-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.industry-skills .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primarycolor);
    transition: all 0.3s ease;
}

.industry-skills .cta-link:hover {
    color: #0f172a;
    transform: translateX(5px);
}
