:root {
    --college-purple-primary: #611F69;
    --college-purple-dark: #4A0D66;
    --college-purple-medium: #8253C2;
    --college-purple-light: #F3F1FF;
    --college-purple-very-light: #F8F6FE;
    --college-pink-light: #FDE2E4;
    --college-pink-bg: #FFEBF0;
    --college-red-accent: #F45346;
    --college-blue-bg: #E8F4FD;
    --college-green-bg: #E8F5E9;
    --college-yellow-bg: #FFF9E6;
    --college-teal-bg: #E0F7FA;
    --college-green-check: #22C55E;
    
    --college-text-primary: #1D1D1F;
    --college-text-secondary: #4A4A4A;
    --college-text-light: #6E6E73;
    --college-bg-white: #FFFFFF;
    --college-bg-section: #F8F6FE;
    --college-border-light: #E5E7EB;
    
    --college-gradient-primary: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%);
    --college-gradient-secondary: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%);
    --college-gradient-hero: linear(to right, #F5E7F7 0%, #FDE2E4 100%);
    
    --college-shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --college-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --college-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --college-shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    color: var(--college-text-primary);
    background-color: var(--college-bg-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.college-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.college-container-narrow {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.college-section {
    padding: 5rem 0;
    overflow: hidden;
}

.college-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.college-section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--college-text-secondary);
    margin-bottom: 3rem;
}

.text-purple {
    color: var(--college-purple-primary);
}

.text-red {
    color: var(--college-red-accent);
}

.college-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.college-btn-primary {
    background-color: var(--college-purple-primary);
    color: var(--college-bg-white);
    box-shadow: 0 4px 14px rgba(97, 31, 105, 0.3);
}

.college-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(97, 31, 105, 0.4);
}

.college-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.college-animate.college-visible {
    opacity: 1;
    transform: translateY(0);
}

.college-hero {
    padding-top: 6rem;
    padding-bottom: 8rem;
    position: relative;
}

.college-hero-box {
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));
    border-radius: 35px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    width: 100%;
    top: -40px;
    position: relative;
}

.college-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.college-hero-text {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.college-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(87deg, #8253C2 2.38%, #F45346 85.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.college-hero-text p {
    font-size: 1.125rem;
    color: var(--college-text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.college-hero-visuals {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-left: auto;
}

.student-avatar {
    position: relative;
}

.college-hero-features {
    background: var(--college-bg-white);
    border-radius: 20px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: absolute;
    bottom: -60px;
    left: 8%;
    width: calc(100% - 14rem);
    margin: 0;
}

.college-feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.college-feature-badge:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(97, 31, 105, 0.1) 15%,
        rgba(97, 31, 105, 0.4) 30%,
        rgba(97, 31, 105, 0.8) 50%,
        rgba(97, 31, 105, 0.4) 70%,
        rgba(97, 31, 105, 0.1) 85%,
        transparent 100%
    );
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(97, 31, 105, 0.3);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.college-feature-badge:hover:not(:last-child)::after {
    opacity: 1;
    box-shadow: 0 0 12px rgba(97, 31, 105, 0.5);
    height: 70px;
}

.badge-icon {
    width: 54px;
    height: 54px;
    background: var(--college-purple-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: var(--college-purple-primary);
}

.college-feature-badge span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--college-text-secondary);
    line-height: 1.3;
}

.college-why-need {
    background: var(--college-bg-section);
}

.college-why-need .college-section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.college-why-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.college-why-images {
    flex: 0.8;
}

.college-why-images img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.college-why-text {
    flex: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--college-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.college-why-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--college-text-primary);
    margin: 2rem 0 1.5rem;
}

.college-check-list {
    list-style: none;
    padding: 0;
}

.college-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--college-text-secondary);
}

.college-check-list i {
    color: var(--college-green-check);
    font-size: 1.25rem;
    margin-top: 2px;
}

.college-what-is {
    background: var(--college-bg-white);
    padding: 5rem 0;
}

.college-what-is .college-section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.college-what-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 3rem;
}

.college-what-text {
    flex: 1.2;
}

.intro-text {
    font-size: 1.0625rem;
    color: var(--college-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.college-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.college-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--college-text-primary);
}

.college-features-list i {
    color: var(--college-purple-primary);
    font-size: 1.25rem;
}

.college-what-images {
    flex: 1;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.student-image {
    position: relative;
}

.college-highlight-text {
    background-color: var(--college-bg-section);
    text-align: center;
    font-size: 1.125rem;
    color: var(--college-purple-primary);
    font-weight: 500;
    margin-top: 3rem;
    padding: 1.2rem 2rem;
    border-radius: 20px;
}

.college-benefits {
    background: var(--college-bg-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.college-benefits::after {
    content: '';
    position: absolute;
    bottom: 11.75rem;
    left: 17rem;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 56 56' fill='none'%3E%3Cg filter='url(%23filter0_dd_1634_3049)'%3E%3Cellipse cx='28.1906' cy='26.199' rx='13.5422' ry='13.1614' fill='white'/%3E%3Cpath d='M28.1904 8.01025C38.3099 8.01025 46.7606 16.0192 46.7607 26.1987C46.7607 36.3784 38.31 44.3882 28.1904 44.3882C18.0709 44.3881 9.62109 36.3783 9.62109 26.1987C9.62126 16.0193 18.071 8.01036 28.1904 8.01025Z' stroke='%23E2DCF6' stroke-width='10.0549'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1634_3049' x='0.571616' y='0.971691' width='55.2381' height='54.4765' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='0.502744'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1634_3049'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2.01098'/%3E%3CfeGaussianBlur stdDeviation='2.01098'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1634_3049' result='effect2_dropShadow_1634_3049'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1634_3049' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
}

.college-benefits .college-container-narrow::before {
    content: '';
    position: absolute;
    bottom: 17.15rem;
    left: 24rem;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 56 56' fill='none'%3E%3Cg filter='url(%23filter0_dd_1634_3049)'%3E%3Cellipse cx='28.1906' cy='26.199' rx='13.5422' ry='13.1614' fill='white'/%3E%3Cpath d='M28.1904 8.01025C38.3099 8.01025 46.7606 16.0192 46.7607 26.1987C46.7607 36.3784 38.31 44.3882 28.1904 44.3882C18.0709 44.3881 9.62109 36.3783 9.62109 26.1987C9.62126 16.0193 18.071 8.01036 28.1904 8.01025Z' stroke='%23E2DCF6' stroke-width='10.0549'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1634_3049' x='0.571616' y='0.971691' width='55.2381' height='54.4765' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='0.502744'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1634_3049'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2.01098'/%3E%3CfeGaussianBlur stdDeviation='2.01098'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1634_3049' result='effect2_dropShadow_1634_3049'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1634_3049' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 4;
    pointer-events: none;
}

.college-benefits-grid::after {
    content: '';
    position: absolute;
    bottom: 20.15rem;
    left: 49rem;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 56 56' fill='none'%3E%3Cg filter='url(%23filter0_dd_1634_3049)'%3E%3Cellipse cx='28.1906' cy='26.199' rx='13.5422' ry='13.1614' fill='white'/%3E%3Cpath d='M28.1904 8.01025C38.3099 8.01025 46.7606 16.0192 46.7607 26.1987C46.7607 36.3784 38.31 44.3882 28.1904 44.3882C18.0709 44.3881 9.62109 36.3783 9.62109 26.1987C9.62126 16.0193 18.071 8.01036 28.1904 8.01025Z' stroke='%23E2DCF6' stroke-width='10.0549'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1634_3049' x='0.571616' y='0.971691' width='55.2381' height='54.4765' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='0.502744'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1634_3049'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2.01098'/%3E%3CfeGaussianBlur stdDeviation='2.01098'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1634_3049' result='effect2_dropShadow_1634_3049'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1634_3049' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 4;
    pointer-events: none;
}

.college-benefits .college-section-subtitle::after{
    content: '';
    position: absolute;
    bottom: 33.5rem;
    left: 66.5rem;
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 56 56' fill='none'%3E%3Cg filter='url(%23filter0_dd_1634_3049)'%3E%3Cellipse cx='28.1906' cy='26.199' rx='13.5422' ry='13.1614' fill='white'/%3E%3Cpath d='M28.1904 8.01025C38.3099 8.01025 46.7606 16.0192 46.7607 26.1987C46.7607 36.3784 38.31 44.3882 28.1904 44.3882C18.0709 44.3881 9.62109 36.3783 9.62109 26.1987C9.62126 16.0193 18.071 8.01036 28.1904 8.01025Z' stroke='%23E2DCF6' stroke-width='10.0549'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1634_3049' x='0.571616' y='0.971691' width='55.2381' height='54.4765' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='0.502744'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1634_3049'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2.01098'/%3E%3CfeGaussianBlur stdDeviation='2.01098'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1634_3049' result='effect2_dropShadow_1634_3049'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1634_3049' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 4;
    pointer-events: none;
}

.college-benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1440px;
    height: 965px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='965' viewBox='0 0 1440 765' fill='none'%3E%3Cpath d='M-57.75 774.75L284.19 690.435L569.846 521.392L972.303 480.674L1246.53 270.503L1476.75 -49.4849' stroke='%23E2DCF6' stroke-width='7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size:auto;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

.college-benefits > * {
    position: relative;
    z-index: 1;
}

.college-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}


.college-benefits-grid .college-benefit-card:nth-child(4),
.college-benefits-grid .college-benefit-card:nth-child(5) {
    grid-column: span 1;
}

.college-benefit-card {
    background: var(--college-purple-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.college-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(97, 31, 105, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--college-bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--college-purple-medium);
}

.college-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--college-purple-primary);
    font-weight: 600;
}

.college-benefit-card p {
    color: var(--college-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.college-outcomes {
    background: var(--college-bg-section);
    padding: 5rem 0;
}

.college-outcomes .college-section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.college-outcomes-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.college-outcomes-list {
    flex: 1.2;
}

.college-outcomes-list ul {
    list-style: none;
    padding: 0;
}

.college-outcomes-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--college-text-primary);
}

.college-outcomes-list i {
    color: var(--college-purple-medium);
    font-size: 1.5rem;
}

.college-outcomes-images {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.outcome-image {
    position: relative;
}


.college-integration {
    background: var(--college-bg-white);
    padding: 5rem 0;
}

.college-integration .college-section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.college-integration-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
}

.college-integration-visual {
    flex: 1;
    position: relative;
}

.college-integration-visual img {
    width: 100%;
    max-width: 450px;
}

.stats-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--college-bg-white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.avatar-group {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    background: var(--college-bg-white);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid white;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-group .more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--college-purple-light);
    color: var(--college-purple-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -8px;
}

.college-integration h2{
    font-size: 2.125rem;
    line-height: 1.3;
}

.college-integration-text {
    flex: 1;
}

.college-integration-text .intro {
    font-size: 1.0625rem;
    color: var(--college-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.integration-steps {
    list-style: none;
    padding: 0;
}

.integration-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--college-text-secondary);
}

.integration-steps i {
    color: var(--college-purple-medium);
    font-size: 1.25rem;
    margin-top: 2px;
}

.integration-conclusion {
    text-align: center;
    font-size: 1.125rem;
    color: var(--college-purple-primary);
    font-weight: 500;
    margin-top: 3rem;
    background-color: var(--college-bg-section);
    padding: 2rem;
    border-radius: 20px;
}

.college-difference {
    background: var(--college-purple-very-light);
    padding: 5rem 0;
}

.college-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 400px;
    height: 320px;
    display: flex;
    flex-direction: column;
    background: var(--college-bg-white);
    border: 1px solid var(--college-border-light);
    will-change: transform, background-color, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.comparison-card.traditional {
    flex: 1;
}

.comparison-card.ncet-advantage {
    flex: 1;
}

.comparison-card.active {
    background: var(--college-purple-primary) !important;
    color: var(--college-bg-white) !important;
    box-shadow: 0 15px 40px rgba(97, 31, 105, 0.3) !important;
    transform: scale(1.02) !important;
}

.comparison-card:not(.active) {
    background: var(--college-bg-white) !important;
    color: var(--college-text-primary) !important;
    border: 1px solid var(--college-border-light) !important;
}

.comparison-card.active h3 {
    color: var(--college-bg-white) !important;
}

.comparison-card.active li {
    color: var(--college-bg-white) !important;
}

.comparison-card.swapping-to-front {
    animation: cardSwapToFront 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.comparison-card.swapping-to-back {
    animation: cardSwapToBack 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes cardSwapToFront {
    0% {
        transform: scale(1) translateZ(0);
        background-color: var(--college-bg-white);
        color: var(--college-text-primary);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--college-border-light);
    }
    50% {
        transform: scale(1.03) translateZ(0);
        background-color: var(--college-purple-primary);
        color: var(--college-bg-white);
        box-shadow: 0 12px 35px rgba(97, 31, 105, 0.25);
        border: 1px solid var(--college-purple-primary);
    }
    100% {
        transform: scale(1.02) translateZ(0);
        background-color: var(--college-purple-primary);
        color: var(--college-bg-white);
        box-shadow: 0 15px 40px rgba(97, 31, 105, 0.3);
        border: 1px solid var(--college-purple-primary);
    }
}

@keyframes cardSwapToBack {
    0% {
        transform: scale(1.02) translateZ(0);
        background-color: var(--college-purple-primary);
        color: var(--college-bg-white);
        box-shadow: 0 15px 40px rgba(97, 31, 105, 0.3);
        border: 1px solid var(--college-purple-primary);
    }
    50% {
        transform: scale(1.03) translateZ(0);
        background-color: var(--college-bg-white);
        color: var(--college-text-primary);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--college-border-light);
    }
    100% {
        transform: scale(1) translateZ(0);
        background-color: var(--college-bg-white);
        color: var(--college-text-primary);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--college-border-light);
    }
}


.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.comparison-card li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.traditional li {
    color: var(--college-text-primary);
}

.traditional li i {
    color: var(--college-purple-medium);
    opacity: 0.8;
}

.ncet-advantage li {
    color: var(--college-text-primary);
}

.ncet-advantage li i {
    color: var(--college-purple-medium);
}

.comparison-card.traditional {
    background: var(--college-bg-white);
    border: 1px solid var(--college-border-light);
}

.comparison-card.ncet-advantage {
    background: var(--college-bg-white);
    border: 1px solid var(--college-border-light);
}

.comparison-card h3 {
    color: var(--college-text-primary);
}

.college-empower {
    background: var(--college-bg-white);
    padding: 5rem 0;
}

.college-empower-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.college-empower-text {
    flex: 1.2;
}

.college-empower-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: var(--Text-gradient-1, linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.college-empower-text p {
    font-size: 1.0625rem;
    color: var(--college-text-secondary);
    line-height: 1.7;
}

.college-empower-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.empower-image {
    position: relative;
    overflow: hidden;
}

.college-journey {
    padding-bottom: 0.25rem !important;
}

.college-journey-full-container {
    width: 100%;
    max-width: none;
    padding: 1rem 2rem;
    margin: 0;
    background: var(--college-bg-section);
}

.college-journey-slider-container {
    width: 100%;
    padding: 1.5rem 0;
}

.college-journey-slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.college-journey h2{
    padding-top: 2rem;
}

.college-journey-slider::-webkit-scrollbar {
    display: none;
}

.college-journey-card {
    background: var(--college-bg-white);
    border: 1px solid var(--college-border-light);
    border-radius: 16px;
    padding: 1.5rem;
    flex: 1;
    min-width: calc(20% - 1.2rem);
    max-width: calc(20% - 1.2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transform: scale(0.95);
}

.college-journey-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--college-purple-medium);
}

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

.college-journey-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--college-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--college-purple-medium);
}

.college-journey-card-stage {
    background-color: #f2f2f2;
    color: var(--college-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.college-journey-card.active .college-journey-card-stage {
    background: linear-gradient(135deg, var(--college-purple-medium), var(--college-purple-primary));
    color: white;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(130, 83, 194, 0.6),
                0 0 40px rgba(130, 83, 194, 0.4),
                0 0 60px rgba(130, 83, 194, 0.2);
    transform: scale(1.05);
}

.college-journey-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--college-text-primary);
}

.college-journey-card-content p {
    font-size: 0.9rem;
    color: var(--college-text-light);
    margin-bottom: 1rem;
}

.college-journey-card-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.college-journey-card-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--college-text-secondary);
}

.college-journey-card-content li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.college-journey-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.college-journey-nav-btn {
    background: var(--college-bg-white);
    border: 2px solid var(--college-border-light);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--college-text-primary);
}

.college-journey-nav-btn:hover {
    background: var(--college-purple-medium);
    border-color: var(--college-purple-medium);
    color: white;
    transform: scale(1.1);
}

.college-journey-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.college-journey-nav-btn:disabled:hover {
    background: var(--college-bg-white);
    border-color: var(--college-border-light);
    color: var(--college-text-primary);
}

@media (min-width: 769px) {
    .college-journey-nav-btn {
        display: none;
    }

    .college-journey-card {
        opacity: 1;
        transform: scale(1);
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        border-color: var(--college-border-light); }

    .college-journey-card.active {
        opacity: 1;
        transform: scale(1);
        border-color: var(--college-border-light);
    }

    .college-journey-card.active .college-journey-card-stage {
        background: initial;
        color: initial;
        font-weight: initial;
    }

    .college-journey-card:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: var(--college-purple-medium);
        z-index: 10;
        position: relative;
    }

    .college-journey-card:hover .college-journey-card-stage {
        background: var(--college-purple-medium);
        color: white;
        box-shadow:
            0 0 20px rgba(97, 31, 105, 0.6),
            0 0 40px rgba(97, 31, 105, 0.4),
            0 0 60px rgba(97, 31, 105, 0.2);
        animation: pulse-glow 2s ease-in-out infinite alternate;
    }

    @keyframes pulse-glow {
        0% {
            box-shadow:
                0 0 20px rgba(97, 31, 105, 0.6),
                0 0 40px rgba(97, 31, 105, 0.4),
                0 0 60px rgba(97, 31, 105, 0.2);
        }
        100% {
            box-shadow:
                0 0 30px rgba(97, 31, 105, 0.8),
                0 0 60px rgba(97, 31, 105, 0.6),
                0 0 90px rgba(97, 31, 105, 0.4);
        }
    }

    .college-journey-card:hover .college-journey-card-icon svg {
        stroke: var(--college-purple-medium);
    }
}


.college-final-cta {
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));
    padding: 6rem 0;
}

.college-cta-box {
    text-align: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--college-bg-white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.college-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    background: var(--Text-gradient-1, linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.college-cta-box p {
    font-size: 1.125rem;
    color: var(--college-text-secondary);
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .college-hero-box {
        width: 100%;
        max-width: 1400px;
    }

    .college-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .college-hero-text {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .college-why-content,
    .college-what-content,
    .college-outcomes-content,
    .college-integration-content,
    .college-empower-content {
        flex-direction: column;
    }

    .college-why-content::before {
        content: "Why Colleges Need NCET PLUS?";
        order: 1;
        font-size: 2.25rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
    }

    .college-what-content::before {
        content: "What is NCET PLUS?";
        order: 1;
        font-size: 2.25rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
    }

    .college-outcomes-content::before {
        content: "Key Outcomes You Can Expect";
        order: 1;
        font-size: 2.25rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
    }

    .college-integration-content::before {
        content: "Seamless Integration for Colleges";
        order: 1;
        font-size: 2.25rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
    }

    .college-empower-content::before {
        content: "Empower Your Students. Strengthen Your Placements.";
        order: 1;
        font-size: 2.25rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2rem;
        background: var(--Text-gradient-2, linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
        white-space: pre-line;
    }

    .college-why-text .college-section-title,
    .college-what-text .college-section-title,
    .college-outcomes-list .college-section-title,
    .college-integration-text .college-section-title,
    .college-empower-text .college-section-title {
        display: none;
    }

    .college-why-images,
    .college-what-images,
    .college-outcomes-images,
    .college-integration-visual,
    .college-empower-images {
        order: 2;
        display: flex !important;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .college-why-text,
    .college-what-text,
    .college-outcomes-list,
    .college-integration-text,
    .college-empower-text {
        order: 3;
        text-align: left !important;
    }

    .college-why-text p,
    .college-what-text p,
    .college-integration-text p,
    .college-empower-text p,
    .college-section-subtitle,
    .intro-text,
    .college-highlight-text,
    .integration-conclusion {
        text-align: left !important;
    }

    .college-why-images img,
    .college-what-images img,
    .college-outcomes-images img,
    .college-integration-visual img,
    .college-empower-images img {
        max-width: 300px;
        width: 100%;
        height: auto;
    }

    .college-hero-visuals {
        justify-content: center;
        margin-left: 0;
    }
    
    .college-hero-features {
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 2rem);
    }

    .college-journey-card {
        min-width: calc(45% - 1.2rem);
        max-width: calc(45% - 1.2rem);
    }
    
    .college-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .college-comparison {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        max-width: 100%;
    }

    .comparison-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 280px;
        flex: none;
    }

    .comparison-card.active {
        transform: scale(1.01) !important;
    }

    .comparison-card.swapping-to-front {
        animation: cardSwapToFrontMobile 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .comparison-card.swapping-to-back {
        animation: cardSwapToBackMobile 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes cardSwapToFrontMobile {
        0% {
            transform: scale(1);
            background: var(--college-bg-white);
        }
        50% {
            transform: scale(1.05);
            background: var(--college-purple-primary);
        }
        100% {
            transform: scale(1.01);
            background: var(--college-purple-primary);
        }
    }

    @keyframes cardSwapToBackMobile {
        0% {
            transform: scale(1.01);
            background: var(--college-purple-primary);
        }
        50% {
            transform: scale(1.05);
            background: var(--college-bg-white);
        }
        100% {
            transform: scale(1);
            background: var(--college-bg-white);
        }
    }
}

@media (max-width: 768px) {
    .college-section-title {
        font-size: 2rem;
    }

    .college-hero-box {
        padding: 2.5rem 2rem;
        border-radius: 25px;
        width: 95%;
    }

    .college-hero-text h1 {
        font-size: 2.5rem;
    }

    .student-avatar img {
        width: 200px;
        height: 240px;
    }

    .college-check-list li,
    .college-features-list li,
    .integration-steps li {
        margin-bottom: 1rem;
        padding: 0.25rem 0;
    }
    
    .college-hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
        width: calc(100% - 1rem);
        position: static;
        margin-top: 2rem;
        transform: none;
        padding: 1.5rem;
    }

    .college-feature-badge {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        padding: 0.15rem;
    }

    .college-feature-badge .badge-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .college-feature-badge span {
        font-size: 0.68rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .college-journey-full-container {
        padding: 0 1rem;
    }

    .college-journey-card {
        min-width: calc(85vw - 2rem);
        max-width: calc(85vw - 2rem);
        margin: 0 auto;
        padding: 1.25rem;
    }

    .college-journey-navigation {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .college-journey-nav-btn {
        width: 40px;
        height: 40px;
    }

    .college-journey-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    
    .college-feature-badge::after {
        display: none;
    }
    
    .college-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .college-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .college-cta-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .college-section {
        padding: 3rem 0;
    }

    .college-hero-box {
        padding: 1.5rem 1rem;
        border-radius: 20px;
        width: 95%;
    }

    .college-hero {
        padding-bottom: 6rem;
    }

    .college-journey-full-container {
        padding: 0 0.75rem;
    }

    .college-journey-card {
        min-width: calc(90vw - 1.5rem);
        max-width: calc(90vw - 1.5rem);
        padding: 1rem;
    }

    .college-journey-nav-btn {
        width: 36px;
        height: 36px;
    }

    .college-journey-nav-btn svg {
        width: 14px;
        height: 14px;
    }


    .college-hero-text h1 {
        font-size: 2rem;
    }
    
    .college-hero-visuals {
        flex-direction: column;
        align-items: center;
    }
    
    .student-avatar img {
        width: 550px;
        height: 500px;
        margin: 0 auto;
    }

    .college-hero-visuals {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .college-hero-visuals .student-avatar img {
        position: relative;
        top: -144px;
    }

    .college-hero .college-hero-box {
        height: 906px;
    }

    .college-hero .college-hero-box .college-hero-features {
        position: relative;
        top: -218px;
        height: 142px;
        width: calc(100% - 2rem);
        max-width: 347px;
        min-width: 280px;
    }

    .college-hero .college-container .college-hero-box .college-hero-features {
        bottom: auto !important;
    }

    .college-what-is .college-section-title {
        text-align: center !important;
    }

    .college-what-is .college-what-images {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 2rem 0 !important;
    }

    .college-what-is .college-what-images img {
        width: 450px !important;
        height: auto !important;
        max-width: 90% !important;
    }
    
    .college-check-list li,
    .college-features-list li,
    .integration-steps li,
    .comparison-card li {
        margin-bottom: 1.25rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(97, 31, 105, 0.1);
    }

    .college-check-list li:last-child,
    .college-features-list li:last-child,
    .integration-steps li:last-child,
    .comparison-card li:last-child {
        border-bottom: none;
    }

    .college-check-list li svg,
    .college-features-list li svg,
    .integration-steps li svg,
    .comparison-card li svg {
        width: 24px !important;
        height: 24px !important;
        margin-top: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }
}

body {
    padding-top: 0;
}

html {
    scroll-behavior: smooth;
}