.newmission-main {
    background: white;
    border-radius: 25px;
    /* overflow: hidden; */
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 166, 237, 0.1)
}

.newmission-header {
    background: linear-gradient(135deg, #00a6ed 0%, #0088c7 100%);
    color: white;
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newmission-header:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.newmission-header h2 {
    font-weight: 700;
    color: white;
    font-size: 40px;
    position: relative;
}

.newmission-header p {
    opacity: 0.95;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.newmission-content {
    display: flex;
    flex-wrap: wrap;
}

.newmission-image {
    flex: 1;
    min-width: 300px;
    padding: 10px 35px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background: rgba(0, 166, 237, 0.15);
}

.newmission-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 166, 237, 0.25);
    transition: all 0.5s ease;
    max-width: 100%;
    height: auto;
    filter: brightness(1.05) contrast(1.1);
    position: sticky;
    top: 72px;
}

.newmission-image img:hover {
    /* transform: scale(1.05) rotate(1deg); */
    box-shadow: 0 20px 40px rgba(0, 166, 237, 0.35);
}

.newmission-list {
    flex: 1;
    min-width: 300px;
    padding: 10px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newmission-list h2 {
    color: #00a6ed;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2rem;
}

.newmission-list h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: #00a6ed;
    border-radius: 3px;
}

.newmission-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.newmission-features ul li {
    padding: 15px 0 15px 48px;
    border-bottom: 1px solid rgba(0, 166, 237, 0.1);
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 400;
    
}

.newmission-features li:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: rgba(0, 166, 237, 0.15);
    border-radius: 50%;
    border: 2px solid #00a6ed;
}

.newmission-features li:after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    width: 8px;
    height: 14px;
    border: solid #00a6ed;
    border-width: 0 3px 3px 0;
}

.newmission-features li:hover {
    background-color: rgba(0, 166, 237, 0.15);
    /*padding-left: 4rem;*/
    border-radius: 12px;
    transform: translateX(5px);
}

.newmission-features li:last-child {
    border-bottom: none;
}

.newmission-color {
    display: inline-block;
    background: #00a6ed;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 10px;
    box-shadow: 0 5px 15px rgba(0, 166, 237, 0.4);
    position: relative;
    top: -2px;
}

.newmission-btn {
    background: linear-gradient(135deg, (#00a6ed) 0%, (#0088c7) 100%);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 166, 237, 0.3);
    display: inline-block;
    text-align: center;
}

.newmission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 237, 0.5);
    color: white;
}

.leading-four-boxnew {
    background: white;
    border-radius: 25px;
    padding: 10px 20px;
}

.leading-four-boxnew-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.leading-four-boxnew-heading h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    font-size: 40px;
    display: inline-block;
}

.leading-four-boxnew-heading p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.leading-four-boxnew-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 166, 237, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.leading-four-boxnew-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00a6ed;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leading-four-boxnew-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 166, 237, 0.15);
}

.leading-four-boxnew-card:hover:before {
    transform: scaleX(1);
}

.leading-four-boxnew-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 166, 237, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.leading-four-boxnew-icon i {
    font-size: 2.5rem;
    color: #00a6ed;
    transition: all 0.3s ease;
}

.leading-four-boxnew-card:hover .leading-four-boxnew-icon {
    /* background: #00a6ed; */
    transform: scale(1.1) rotate(5deg);
}

.leading-four-boxnew-card:hover .leading-four-boxnew-icon i {
    color: white;
    transform: scale(1.1);
}

.leading-four-boxnew-card h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.leading-four-boxnew-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.flagship-four-newmain {
    background: white;
    border-radius: 25px;
    padding: 10px 20px;
    /* max-width: 1200px;
    margin: 0 auto; */
}

.flagship-four-newmain-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.flagship-four-newmain-heading h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    font-size: 40px;
    display: inline-block;
}

.flagship-four-newmain-heading p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.flagship-four-newmain-steps {
    position: relative;
}

.newmission-list h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.common-spannew span {
    color: #00a6ed;
}

/* Connecting line between steps */
.flagship-four-newmain-steps:before {
    content: '';
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg,
            #00a6ed 0%,
            #00a6ed 25%,
            rgba(0, 166, 237, 0.15) 25%,
            rgba(0, 166, 237, 0.15) 100%);
    z-index: 1;
    border-radius: 2px;
}

.flagship-four-newmain-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.flagship-four-newmain-step-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.flagship-four-newmain-step-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 166, 237, 0.15);
    transition: height 0.4s ease;
    z-index: -1;
}

.flagship-four-newmain-step-card:hover:before {
    height: 100%;
}

/* First step with highlighted border */
.flagship-four-newmain-step:first-child .flagship-four-newmain-step-card {
    border: 2px solid #00a6ed;
    box-shadow: 0 12px 30px rgba(0, 166, 237, 0.25);
}

.flagship-four-newmain-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 166, 237, 0.2);
}

.flagship-four-newmain-step-number {
    width: 80px;
    height: 80px;
    background: rgba(0, 166, 237, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: #00a6ed;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 166, 237, 0.2);
}

/* First step number styling */
.flagship-four-newmain-step:first-child .flagship-four-newmain-step-number {
    background: #00a6ed;
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 166, 237, 0.4);
}

.flagship-four-newmain-step-card:hover .flagship-four-newmain-step-number {
    transform: scale(1.1);
    background: #00a6ed;
    color: white;
}

.flagship-four-newmain-step-card h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.flagship-four-newmain-step-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(0, 166, 237, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.flagship-four-newmain-step-card:hover h3:after {
    background: #00a6ed;
    width: 60px;
}

.flagship-four-newmain-step-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.flagship-four-newmain-step-duration {
    display: inline-block;
    background: #00a6ed;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 166, 237, 0.3);
}

.campus-placementnew-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 2rem;
}

.campus-placementnew-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.campus-placementnew-subtitle {
    color: #666;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 1.7;
}

.campus-placementnew-features {
    margin-bottom: 10px;
    padding: 0 1rem;
}

.campus-placementnew-feature {
    text-align: center;
    padding: 25px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campus-placementnew-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 237, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.campus-placementnew-feature:hover::before {
    left: 100%;
}

.campus-placementnew-feature:hover {
    transform: translateY(-8px);
}

.campus-placementnew-shape {
    width: 120px;
    height: 120px;
    background: rgba(0, 166, 237, 0.1);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.campus-placementnew-feature:nth-child(2) .campus-placementnew-shape {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.campus-placementnew-feature:nth-child(3) .campus-placementnew-shape {
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.campus-placementnew-feature:nth-child(4) .campus-placementnew-shape {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.campus-placementnew-feature:hover .campus-placementnew-shape {
    /* background: #00a6ed; */
    transform: rotate(10deg) scale(1.1);
}

.campus-placementnew-shape i {
    font-size: 3rem;
    color: #00a6ed;
    transition: all 0.4s ease;
}

.campus-placementnew-feature:hover .campus-placementnew-shape i {
    color: white;
    transform: scale(1.1);
}

.campus-placementnew-feature-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-size: 20px;
    position: relative;
}

.campus-placementnew-feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #00a6ed;
    transition: width 0.3s ease;
}

.campus-placementnew-feature:hover .campus-placementnew-feature-title::after {
    width: 80px;
}

.campus-placementnew-feature-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 280px;
    margin: 1.5rem auto 0;
}

.campus-placementnew-results {
    background: linear-gradient(135deg, #00a6ed 0%, #0088c7 100%);
    padding: 5rem 3rem;
    color: white;
    text-align: center;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 3%, 100% 97%, 0% 100%);
}

.campus-placementnew-results::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.campus-placementnew-results::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%, 50% 50%, 50% 0%);
}

.campus-placementnew-results-title {
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.campus-placementnew-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.campus-placementnew-stat {
    text-align: center;
    position: relative;
}

.campus-placementnew-stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.campus-placementnew-stat-text {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 200px;
}

.campus-placementnew-results-content {
    font-size: 17.6px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.campus-placementnew-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.soft-skills-newmain {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.soft-skills-newmain-heading {
    text-align: center;
    margin-bottom: 20px;
}

.soft-skills-newmain-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.soft-skills-newmain-subtitle {
    color: #666;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.soft-skills-newmain-content {
    margin-top: 25px;
}

.soft-skills-newmain-list-title {
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.soft-skills-newmain-list-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00a6ed;
    border-radius: 2px;
}

.soft-skills-newmain-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.soft-skills-newmain-features li {
    font-size: 17.6px;
    font-weight: 500;
}

.soft-skills-newmain-feature {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.soft-skills-newmain-feature:last-child {
    border-bottom: none;
}

.soft-skills-newmain-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #00a6ed;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.soft-skills-newmain-feature:hover {
    background: rgba(0, 166, 237, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
}

.soft-skills-newmain-feature:hover::before {
    transform: translateY(-50%) scale(1.3);
    background: #0088c7;
}

.soft-skills-newmain-feature-text {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.soft-skills-newmain-image {
    padding-left: 3rem;
    display: flex;
    position: sticky;
    top: 75px;
    align-items: center;
    justify-content: center;
}

.soft-skills-newmain-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 166, 237, 0.15);
    transition: all 0.4s ease;
}

.soft-skills-newmain-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 166, 237, 0.25);
}

.soft-skills-newmain-cards {
    margin-top: 2rem;
}

.soft-skills-newmain-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    border-radius: 15px;
    height: 100%;
    background: rgba(0, 166, 237, 0.03);
    border: 1px solid rgba(0, 166, 237, 0.1);
}

.soft-skills-newmain-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 166, 237, 0.15);
    border-color: rgba(0, 166, 237, 0.2);
}

.soft-skills-newmain-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 166, 237, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.soft-skills-newmain-card:hover .soft-skills-newmain-card-icon {
    /* background: #00a6ed; */
    transform: rotate(5deg) scale(1.1);
}

.soft-skills-newmain-card-icon i {
    font-size: 2.5rem;
    color: #00a6ed;
    transition: all 0.4s ease;
}

.soft-skills-newmain-card:hover .soft-skills-newmain-card-icon i {
    color: white;
}

.soft-skills-newmain-card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.4rem;
}

.soft-skills-newmain-card-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.industries-transform-newmain-heading {
    text-align: center;
    margin-bottom: 20px;
}

.industries-transform-newmain-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.industries-transform-newmain-subtitle {
    color: #666;
    font-size: 17px;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}

.industries-transform-newmain-item {
    padding: 16px 25px;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.industries-transform-newmain-item:nth-child(odd) {
    background: rgba(0, 166, 237, 0.05);
}

.industries-transform-newmain-item:nth-child(even) {
    background: transparent;
    border: 1px solid #00a6ed
}

.web-righticon {
    text-align: -webkit-right;
}

.industries-transform-newmain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 166, 237, 0.15);
}

.industries-transform-newmain-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 166, 237, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.industries-transform-newmain-item:hover .industries-transform-newmain-icon {
    /* background: #00a6ed; */
    transform: scale(1.1) rotate(5deg);
}

.industries-transform-newmain-icon i {
    font-size: 2.8rem;
    color: #00a6ed;
    transition: all 0.4s ease;
}

.industries-transform-newmain-item:hover .industries-transform-newmain-icon i {
    color: white;
}

.industries-transform-newmain-item-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
}

.industries-transform-newmain-item-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00a6ed;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.industries-transform-newmain-item:hover .industries-transform-newmain-item-title::after {
    width: 80px;
}

.industries-transform-newmain-item-desc {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.steps-process-heading {
    text-align: center;
    margin-bottom: 20px;
}

.steps-process-title {
    font-weight: 700;
    font-size: 40px;
}

.steps-process-container {
    position: relative;
}

/* Connecting line */
.steps-process-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #00a6ed;
    height: 80%;
    top: 10%;
    z-index: 1;
}

.steps-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.steps-process-step:last-child {
    margin-bottom: 0;
}

.steps-process-step-left {
    justify-content: flex-start;
}

.steps-process-step-right {
    justify-content: flex-end;
}

.steps-process-step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 45%;
    position: relative;
}

.steps-process-step-left .steps-process-step-content {
    border-left: 4px solid #00a6ed;
}

.steps-process-step-right .steps-process-step-content {
    border-right: 4px solid #00a6ed;
}

/* Step number without circle */
.steps-process-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: #00a6ed;
    background: white;
    padding: 0.5rem 1rem;
    z-index: 3;
}

.steps-process-step-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.steps-process-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-process-step-list li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
    font-size: 16px;
}

.steps-process-step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a6ed;
    font-weight: bold;
}

.fourr-training-main-new {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.why-img-newmain{
    /*border-radius: 50%;*/
    /*min-height: 369px;*/
    /*max-height: 369px;*/
}

.fourr-training-newmain-heading .title-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.fourr-training-newmain-heading .title-header p {
    color: #666;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.fourr-training-main-new ul {
    margin-bottom: 20px;
}

.fourr-training-main-new ul li {
    text-align: start;
}

.fourr-training-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    border-radius: 15px;
    background: rgba(0, 166, 237, 0.03);
    border: 1px solid rgba(0, 166, 237, 0.1);
    margin-bottom: 30px;
}

.fourr-training-box:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 166, 237, 0.15);
    border-color: rgba(0, 166, 237, 0.2);
}
.video-roundednew img{
    border-radius: 20px !important;
}
.video-roundednew iframe{
    border-radius: 20px !important;
}
.yt-btn-flyew{
    width: 70px;
    height: 70px;
}
.faculty_img{
    border-radius: 50%;
    width: 160px;
    height: 160px;
}
p{
    text-align: justify;
}
.campus-place-newmainagain{
    display: flex;
    gap: 36px;
    border: 1px solid #00a6ed;
    border-radius: 20px;
}
.campus-new-againchange h3::after{
    left: 40px;
}
.campus-new-againchange p{
    margin: 0;
    max-width: 100%;
}
.campus-new-againchange h3{
    text-align: start;
}
.only-para-size-enew .course-card-content p{
        min-height: 100px;
    max-height: 100px;
}
.new-sticky-first-circle{
    position: sticky;
    top: 72px;
}
.coommitment-main-againew .leading-four-boxnew-card:before{
    content: unset;
}
.coommitment-main-againew .leading-four-boxnew-card{
    overflow: unset;
}
.coommitment-main-againew .leading-four-boxnew-icon{
    position: absolute;
    top: -39px;
    transform: translatex(-50%);
    left: 50%;
}
.coommitment-main-againew .leading-four-boxnew-card:hover .leading-four-boxnew-icon{
    transform: translatex(-50%);
}
.coommitment-main-againew .leading-four-boxnew-heading{
    margin-bottom: 75px;
}
.new-four-box-trainign{
    margin-bottom: 0;
    height: 100%;
}
.campus-img-newagain{
    background: unset;
}
.campus-content-listagain{
    background: rgba(0, 166, 237, 0.15);
    border-radius: 0px 0px 0 25px;
}
.campus-img-newagain img{
    box-shadow: none;
}
.steps-sec-process-newagain .steps-process-connector{
    position: unset;
}
.steps-sec-process-newagain .steps-process-step-number{
    position: unset;
    background: #00a6ed;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps-sec-process-newagain{
    background: rgba(0, 166, 237, 0.1);
    padding: 60px 35px;
    border-radius: 15px;
}
.product-tab-list::-webkit-scrollbar {
    height: 10px;
}
.product-tab-list::-webkit-scrollbar-track {
    background: #49d1f6;
    border-radius: 10px;
  }
  .product-tab-list::-webkit-scrollbar-thumb {
    background-color: #0d91b5;
    border-radius: 10px;
    border: 2px solid #49d1f6;
  }
  .product-tab-list::-webkit-scrollbar-thumb:hover {
    background-color: #075d7c;
  }
  .swiper-pagination-bullets{
      display: none;
  }
@media (max-width: 768px) {
    .newmission-header {
        padding: 10px 20px;
    }

    .newmission-header h2 {
        font-size: 20px;
    }

    .newmission-image,
    .newmission-list {
        padding: 10px 15px;
    }

    .newmission-features li {
        padding: 1rem 0 1rem 2.5rem;
        font-size: 16px;
    }

    .newmission-features li:hover {
        padding-left: 3rem;
    }

    .newmission-features li:before {
        width: 22px;
        height: 22px;
    }

    .newmission-features li:after {
        left: 18px;
        width: 6px;
        height: 11px;
    }

    .leading-four-boxnew {
        padding: 0 20px;
    }

    .flagship-four-newmain-heading h2 {
        font-size: 20px;
    }

    .leading-four-boxnew-card {
        margin-bottom: 2rem;
    }

    .flagship-four-newmain {
        padding: 0 8px;
    }

    .flagship-four-newmain-steps:before {
        display: none;
    }

    .flagship-four-newmain-step {
        margin-bottom: 2.5rem;
    }

    .flagship-four-newmain-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .leading-four-boxnew-heading h2 {
        font-size: 20px;
    }

    .campus-placementnew-title {
        font-size: 20px;
    }

    .campus-placementnew-subtitle {
        font-size: 1.2rem;
    }

    .campus-placementnew-results {
        padding: 3rem 2rem;
        clip-path: polygon(0% 0%, 100% 2%, 100% 98%, 0% 100%);
    }

    .campus-placementnew-stats {
        gap: 2rem;
    }

    .campus-placementnew-stat-number {
        font-size: 3rem;
    }

    .campus-placementnew-shape {
        width: 100px;
        height: 100px;
    }

    .campus-placementnew-shape i {
        font-size: 2.5rem;
    }

    .soft-skills-newmain {
        padding: 16px 20px;
    }

    .soft-skills-newmain-title {
        font-size: 20px;
    }

    .leading-four-boxnew-card h3 {
        font-size: 20px;
    }

    .flagship-four-newmain-step-card h3 {
        font-size: 20px;
    }

    .newmission-list h3 {
        font-size: 20px;
    }

    .soft-skills-newmain-card-title {
        font-size: 20px;
    }

    .soft-skills-newmain-list {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .soft-skills-newmain-image {
        padding-left: 0;
    }

    .soft-skills-newmain-card {
        margin-bottom: 2rem;
    }

    .industries-transform-newmain {
        padding: 0 8px;
    }

    .industries-transform-newmain-title {
        font-size: 20px;
    }

    .industries-transform-newmain-item {
        padding: 14px 22px;
        text-align: center;
    }

    .industries-transform-newmain-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }

    .industries-transform-newmain-item-title {
        font-size: 20px;
    }

    .industries-transform-newmain-icon i {
        font-size: 2.2rem;
    }

    .industries-transform-newmain-item-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .steps-process-main {
        padding: 0 8px;
    }

    .steps-process-title {
        font-size: 20px;
    }

    .steps-process-connector {
        display: none;
    }

    .steps-process-step {
        justify-content: center !important;
        margin-bottom: 2rem;
    }

    .steps-process-step-content {
        width: 100%;
        text-align: center;
        border-left: 4px solid #00a6ed !important;
        border-right: none !important;
    }

    .steps-process-step-number {
        position: relative;
        left: auto;
        display: none;
        transform: none;
        margin-bottom: 1rem;
    }

    .steps-process-step-heading {
        justify-content: center;
        font-size: 20px;
    }

    .steps-process-step-list li {
        text-align: start;
        padding-left: 30px;
    }

    .fourr-training-newmain-heading .title-header h2 {
        font-size: 20px;
    }

    .fourr-training-main-new {
        padding: 16px;
    }
    .why-img-newmain{
        max-height: 305px;
        min-height: 305px;
    }
    .campus-place-newmainagain{
        flex-direction: column;
        gap: 22px;
    }
    .campus-place-newmainagain .campus-placementnew-shape{
                margin: 0 auto 2rem !important;
        margin-bottom: 0 !important;
    }
    .only-para-size-enew .course-card-content p{
        max-height: unset !Important;
        min-height: unset !Important;
    }
    .campus-content-listagain{
        border-radius: 0;
    }
    .steps-sec-process-newagain .steps-process-step{
    gap: 10px;
}
.steps-sec-process-newagain{
    padding: 30px 8px;
}
}
