/* Custom CSS for Career Fund */

:root {
    --primary-color: #0D1F2D;
    --light-color: #E2E8F0;
    --gray-color: #94A3B8;
    --background-gradient-primary: linear-gradient(100.73deg, rgba(0, 121, 140, 0.1) 0%, rgba(57, 201, 201, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-color);
    background-color: var(--primary-color);
    min-height: 100vh;
    position: relative;
}

.font-gradient-primary {
    background: linear-gradient(90deg, #39C9C9 0%, #00798C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(90deg, rgba(38, 102, 239, 0.03) 2%, rgba(38, 102, 239, 0) 2%),
                linear-gradient(180deg, rgba(38, 102, 239, 0.03) 2%, rgba(38, 102, 239, 0) 2%);
}
.bg-gradient-secondary {
    background: radial-gradient(94.34% 150.94% at 80% 20%, rgba(30, 243, 150, 0.1) 0%, rgba(30, 243, 150, 0) 50%),
                radial-gradient(94.34% 150.94% at 20% 80%, rgba(38, 102, 239, 0.15) 0%, rgba(38, 102, 239, 0) 50%);
}
.bg-gradient-blue{
    background: linear-gradient(90deg, #39C9C9 0%, #00798C 100%);
}
.bg-blur-1 {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bg-blur-2 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dark-bg {
    background: var(--primary-color);
}
.very-dark-bg{
    background: #00000033;
}
/* Header and Navbar styling for backdrop blur effect */
header.bg-blur-1 {
    position: relative;
}

header.bg-blur-1 .navbar {
    background: transparent !important;
    padding: 1rem 0;
}

header.bg-blur-1 .navbar-nav .nav-link {
    color: var(--gray-color);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

header.bg-blur-1 .navbar-nav .nav-link:hover {
    color: #fff;
}

header.bg-blur-1 .navbar-brand {
    padding: 0;
}

header.bg-blur-1 .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
}

header.bg-blur-1 .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

header.bg-blur-1 .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
    header.bg-blur-1 .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    header.bg-blur-1 .navbar-nav {
        align-items: flex-start;
    }
    
    header.bg-blur-1 .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }
    
    header.bg-blur-1 .navbar-nav .btn-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Utility classes */
h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 1.5rem;
}

h2{
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}

h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 28.8px;
    letter-spacing: 0%;
    color: #fff;
}

p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--gray-color);
}
.text-gray {
    color: var(--gray-color);
}
.light-color {
    color: var(--light-color);
}
.gray-bottom-border {
    border-bottom: 1px solid #FFFFFF1A;
}
.blue-border{
    border: 1px solid #39C9C94D
}
/* Button classes */
.btn-primary {
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(90deg, #39C9C9 0%, #00798C 100%);
    box-shadow: 0px 0px 15px 0px #39C9C966;
    color: #fff;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px 0px #39C9C999;
    color: #fff;
}
.cta-btn{
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 12px;
    background: #39C9C91A;
    border: 1px solid #39C9C94D;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px 0px #39C9C999;
    color: #fff;
}
/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Feature Cards Section */
.feature-cards {
    padding: 100px 0;
    position: relative;
}

.feature-cards .row {
    justify-content: center;
}

.feature-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin: 0 auto;
    background: #FFFFFF08;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 201, 201, 0.2);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
    margin: 0;
}

.feature-card-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color);
    margin: 0;
}

/* Desktop spacing adjustments */
@media (min-width: 992px) {
    .hero-text {
        padding-right: 20px;
    }
    
    .hero-image-wrapper {
        padding-left: 20px;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
    
    p {
        font-size: 18px;
        line-height: 28px;
    }
    
    .hero-section {
        padding-top: 40px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image-wrapper {
        order: 2;
    }
    
    .feature-cards {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .feature-cards {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* Payment Calculator Section */
.payment-calculator-section {
    padding: 100px 0;
    position: relative;
}

.calculator-widget {
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    background: #FFFFFF08;
    height: 100%;
}

.calculator-widget h3 {
    margin-bottom: 20px;
}

.calculator-cost-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cost-item {
    font-size: 16px;
    color: var(--gray-color);
    text-align: center;
}

.calculator-divider {
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.slider-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label-row label {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.slider-value {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 500;
}

/* Custom Slider Styling */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #39C9C9;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.custom-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #39C9C9;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.payment-result {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #39C9C94D;
    background: #39C9C91A;
}

.how-it-works {
    padding: 0 12px;
}

.how-it-works h2 {
    margin-bottom: 24px;
    color: var(--light-color);
}

.how-it-works p {
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-color);
}

/* Responsive Payment Calculator */
@media (max-width: 991.98px) {
    .payment-calculator-section {
        padding: 60px 0;
    }
    
    .calculator-widget {
        margin-bottom: 40px;
    }
    
    .how-it-works {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .payment-calculator-section {
        padding: 40px 0;
    }
    
    .calculator-widget {
        padding: 24px;
    }
    
    .calculator-controls {
        gap: 24px;
    }
    
    .how-it-works p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* By The Numbers Section */
.by-the-numbers-section {
    padding: 100px 0;
    background: linear-gradient(100.73deg, rgba(0, 121, 140, 0.1) 0%, rgba(57, 201, 201, 0.05) 100%);
    position: relative;
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #FFFFFF1A;
}

.by-the-numbers-section .section-title {
    text-align: center;
    color: var(--light-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    line-height: 1.5;
}

/* Responsive By The Numbers */
@media (max-width: 991.98px) {
    .by-the-numbers-section {
        padding: 60px 0;
    }
    
    .by-the-numbers-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .stat-value {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .by-the-numbers-section {
        padding: 40px 0;
    }
    
    .by-the-numbers-section .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-item {
        padding: 16px;
    }
}

/* How To Partner Section */
.how-to-partner-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.how-to-partner-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
}

.partner-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(90deg, #39C9C9 0%, #00798C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    padding-top: 11.5px;
    padding-bottom: 12.5px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
    line-height: 1.5;
    max-width: 250px;
    margin: 0;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #2666EF 0%, #1EF396 100%);
    opacity: 0.3;
    margin-top: 30px;
    max-width: 306px;
    position: relative;
    z-index: 1;
}

.partner-cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsive How To Partner */
@media (max-width: 991.98px) {
    .how-to-partner-section {
        padding: 60px 0;
    }
    
    .how-to-partner-section .section-title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    
    .partner-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        max-width: none;
        margin-top: 0;
        margin-bottom: 0;
        background: linear-gradient(180deg, #2666EF 0%, #1EF396 100%);
    }
    
    .step-item {
        max-width: 400px;
    }
    
    .step-description {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .how-to-partner-section {
        padding: 40px 0;
    }
    
    .how-to-partner-section .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .partner-steps {
        gap: 32px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        border-radius: 25px;
        font-size: 20px;
        padding-top: 9px;
        padding-bottom: 10px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .step-connector {
        height: 30px;
    }
    
    .partner-cta {
        margin-top: 40px;
    }
}

/* Our Mission Section */
.our-mission-section {
    padding: 100px 0;
    background: #00000033;
    position: relative;
}

.our-mission-section .section-title {
    text-align: center;
    color: var(--light-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.mission-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-color);
    font-weight: 400;
}

.mission-cta {
    text-align: center;
}

/* Responsive Our Mission */
@media (max-width: 991.98px) {
    .our-mission-section {
        padding: 60px 0;
    }
    
    .our-mission-section .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .mission-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 575.98px) {
    .our-mission-section {
        padding: 40px 0;
    }
    
    .our-mission-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .mission-text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
}

/* Partner with Us Section */
.partner-with-us-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.partner-content {
    padding-right: 20px;
}

.partner-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partner-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    margin: 0;
}

.partner-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
}

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

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--gray-color);
}

.form-input:focus {
    outline: none;
    border-color: #39C9C9;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(57, 201, 201, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.form-submit:hover {
    transform: translateY(-2px);
}

/* Responsive Partner with Us */
@media (max-width: 991.98px) {
    .partner-with-us-section {
        padding: 60px 0;
    }
    
    .partner-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .partner-title {
        font-size: 32px;
    }
    
    .partner-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .partner-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .partner-with-us-section {
        padding: 40px 0;
    }
    
    .partner-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .partner-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .partner-form-wrapper {
        padding: 20px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
}

/* Footer Styles */
.site-footer {
    background: #00000033;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    height: 48px;
    width: 143px;
    display: block;
}

.footer-navigation {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.footer-link {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.footer-link:hover {
    color: #fff;
}

.footer-cta {
    margin-left: 8px;
    padding: 12px 24px;
    font-size: 16px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .footer-link {
        font-size: 16px;
    }
    
    .footer-cta {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .footer-copyright {
        padding-top: 25px;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-logo-img {
        height: 32px;
    }
    
    .footer-nav {
        gap: 16px;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .footer-cta {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 180px;
    }
    
    .footer-copyright {
        padding-top: 20px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

/* Partners Page Styles */
.partners-hero-section{
    position: relative;
    overflow: hidden;
}
.about-hero-section,
.students-hero-section {
    background: var(--background-gradient-primary);
    position: relative;
    overflow: hidden;
}

.partners-hero-text,
.about-hero-text,
.students-hero-text {
    padding-right: 40px;
}

.partners-hero-text h1,
.about-hero-text h1,
.students-hero-text h1 {
    margin-bottom: 24px;
}

.partners-hero-text p,
.about-hero-text p,
.students-hero-text p {
    font-size: 20px;
    line-height: 30px;
    color: var(--light-color);
    margin: 0;
}

.partners-hero-image-wrapper,
.about-hero-image-wrapper,
.students-hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    width: 100%;
    max-width: 480px;
    height: auto;
    opacity: 0.4;
}

.hero-foreground {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Growth Services Section */
.growth-services-section {
    padding: 100px 0;
}

.growth-services-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.growth-services-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.services-tabs {
    display: flex;
    justify-content: start;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.service-tab {
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.service-tab:hover {
    color: var(--light-color);
}

.service-tab.active {
    color: #fff;
    border-bottom-color: #39C9C9;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.service-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.service-icon img {
    width: 100px;
    height: 100px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-features li {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #39C9C9;
    font-size: 24px;
    line-height: 28px;
}

.service-features li:last-child {
    margin-bottom: 0;
}

/* Responsive Partners Page */
@media (max-width: 991.98px) {
    .partners-hero-section,
    .about-hero-section,
    .students-hero-section {
        padding: 60px 0;
    }
    
    .partners-hero-text,
    .about-hero-text,
    .students-hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .partners-hero-image-wrapper,
    .about-hero-image-wrapper,
    .students-hero-image-wrapper {
        min-height: 400px;
    }
    
    .growth-services-section {
        padding: 60px 0;
    }
    
    .growth-services-card {
        padding: 32px;
    }
    
    .services-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .service-tab {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .service-content {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 575.98px) {
    .partners-hero-section,
    .about-hero-section,
    .students-hero-section {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    
    .partners-hero-image-wrapper,
    .about-hero-image-wrapper,
    .students-hero-image-wrapper {
        min-height: 300px;
    }
    
    .growth-services-section {
        padding: 40px 0;
    }
    
    .growth-services-card {
        padding: 24px;
    }
    
    .growth-services-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .services-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .service-tab {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }
    
    .service-tab.active {
        border-left-color: #39C9C9;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .service-features li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }
}

/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 121, 140, 0.15) 0%, rgba(0, 121, 140, 0.05) 50%, rgba(0, 121, 140, 0.1) 100%);
    position: relative;
}

/* Fulfilling Careers Section */
.fulfilling-careers-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.fulfilling-careers-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.fulfilling-careers-intro {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Responsive Fulfilling Careers */
@media (max-width: 991.98px) {
    .fulfilling-careers-section {
        padding: 60px 0;
    }
    
    .fulfilling-careers-section .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .fulfilling-careers-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .fulfilling-careers-section {
        padding: 40px 0;
    }
    
    .fulfilling-careers-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .fulfilling-careers-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 32px;
    }
}

.core-values-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.core-value-item {
    text-align: center;
    padding: 20px;
}

.core-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-value-icon svg {
    width: 100%;
    height: 100%;
}

.core-value-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.core-value-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-color);
    margin: 0;
}

/* Responsive Core Values */
@media (max-width: 991.98px) {
    .core-values-section {
        padding: 60px 0;
    }
    
    .core-values-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .core-value-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .core-values-section {
        padding: 40px 0;
    }
    
    .core-values-section .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .core-value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .core-value-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .core-value-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .core-value-item {
        margin-bottom: 32px;
        padding: 16px;
    }
}

/* What We Believe Section */
.what-we-believe-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.what-we-believe-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.what-we-believe-intro {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.what-we-believe-testimonial {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.what-we-believe-testimonial .testimonial-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.what-we-believe-testimonial .testimonial-quote {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
    margin: 0 0 32px 0;
    font-style: italic;
}

.what-we-believe-testimonial .testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.what-we-believe-testimonial .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.what-we-believe-testimonial .testimonial-title,
.what-we-believe-testimonial .testimonial-company {
    font-size: 16px;
    color: var(--light-color);
    margin: 0;
}

/* Responsive What We Believe */
@media (max-width: 991.98px) {
    .what-we-believe-section {
        padding: 60px 0;
    }
    
    .what-we-believe-section .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .what-we-believe-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }
    
    .what-we-believe-testimonial {
        margin-top: 60px;
    }
    
    .what-we-believe-testimonial .testimonial-panel {
        padding: 32px;
    }
    
    .what-we-believe-testimonial .testimonial-quote {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 24px;
    }
}

@media (max-width: 575.98px) {
    .what-we-believe-section {
        padding: 40px 0;
    }
    
    .what-we-believe-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .what-we-believe-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 32px;
    }
    
    .what-we-believe-testimonial {
        margin-top: 40px;
    }
    
    .what-we-believe-testimonial .testimonial-panel {
        padding: 24px;
    }
    
    .what-we-believe-testimonial .testimonial-quote {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .what-we-believe-testimonial .testimonial-name {
        font-size: 16px;
    }
    
    .what-we-believe-testimonial .testimonial-title,
    .what-we-believe-testimonial .testimonial-company {
        font-size: 14px;
    }
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background: #00000033;
    position: relative;
}

.who-we-are-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.who-we-are-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Who We Are */
@media (max-width: 991.98px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-section .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .who-we-are-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 575.98px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .who-we-are-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .who-we-are-description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Streamline Student Financing Section */
.streamline-financing-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.streamline-financing-section .section-title {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

.streamline-content {
    padding-right: 20px;
}

.streamline-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.streamline-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    margin: 0;
}

/* Dashboard Mockup */
.dashboard-mockup {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dashboard-sidebar {
    width: 240px;
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-logo {
    margin-bottom: 24px;
    padding: 0 8px;
}

.dashboard-search {
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-color);
    font-size: 14px;
}

.search-input::placeholder {
    color: var(--gray-color);
}

.dashboard-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--gray-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
}

.nav-item.active {
    background: rgba(57, 201, 201, 0.15);
    color: #39C9C9;
}

.nav-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.nav-text {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
}

.nav-arrow {
    font-size: 18px;
    opacity: 0.5;
}

.dashboard-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.profile-role {
    font-size: 12px;
    color: var(--gray-color);
}

.dashboard-main {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
}

.dashboard-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.card-label {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.card-subtext {
    font-size: 14px;
    color: var(--gray-color);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #39C9C9 0%, #00798C 100%);
    border-radius: 4px;
}

.payment-history {
    margin-top: 32px;
}

.history-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-table th {
    text-align: left;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-color);
}

.history-table td {
    padding: 12px 0;
    font-size: 14px;
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-paid {
    color: #39C9C9;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Responsive Streamline Financing */
@media (max-width: 991.98px) {
    .streamline-financing-section {
        padding: 60px 0;
    }
    
    .streamline-financing-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .streamline-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .streamline-heading {
        font-size: 24px;
    }
    
    .streamline-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .dashboard-mockup {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .streamline-financing-section {
        padding: 40px 0;
    }
    
    .streamline-financing-section .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .streamline-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .streamline-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .dashboard-sidebar {
        padding: 16px;
    }
    
    .dashboard-main {
        padding: 20px;
    }
    
    .dashboard-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .dashboard-card {
        padding: 16px;
    }
    
    .card-value {
        font-size: 24px;
    }
    
    .history-table {
        font-size: 12px;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px 0;
    }
}

/* Student Loan Accounts Section */
.student-loan-accounts-section {
    padding: 0 0 100px;
    background: var(--primary-color);
    position: relative;
}

.accounts-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
}

.accounts-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.accounts-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.accounts-layout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-evenly;
}

.accounts-table-wrapper {
    max-height: 410px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

@media (min-width: 768px) {
    .accounts-table-wrapper {
        min-width: 385px;
        max-height: 345px;
    }
}

.accounts-table-wrapper .accounts-table th,
.accounts-table-wrapper .accounts-table td {
    font-size: 11.38px;
    padding-left: 16px;
    padding-right: 16px;
}

.accounts-table-wrapper .accounts-table th {
    padding-top: 12px;
    padding-bottom: 12px;
}

.accounts-table-wrapper .accounts-table td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.accounts-table-wrapper .accounts-table {
    border-collapse: separate;
    border-spacing: 0 4.74px;
}

.accounts-table-wrapper .accounts-table tr {
    border-bottom: 0.47px solid rgba(255, 255, 255, 0.05);
}   


.accounts-charts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.chart-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-image {
    width: 155px;
    height: 150px;
    object-fit: contain;
}

.reports-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.reports-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.reports-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    margin: 0;
}

/* Responsive Student Loan Accounts */
@media (max-width: 991.98px) {
    .student-loan-accounts-section {
        padding: 0 0 60px;
    }
    
    .accounts-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .reports-content {
        width: 100%;
    }
    
    .accounts-panel {
        padding: 24px;
    }
    
    .accounts-layout {
        flex-direction: column;
        gap: 24px;
    }
    
    .accounts-charts {
        width: 100%;
    }
    
    .reports-content {
        text-align: center;
    }
    
    .reports-title {
        font-size: 24px;
    }
    
    .reports-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 575.98px) {
    .student-loan-accounts-section {
        padding: 0 0 40px;
    }
    
    .accounts-content {
        gap: 32px;
    }
    
    .accounts-panel {
        padding: 20px;
    }
    
    .accounts-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .accounts-table-wrapper {
        margin-bottom: 24px;
    }
    
    .accounts-table {
        font-size: 12px;
    }
    
    .accounts-table th,
    .accounts-table td {
        padding: 10px 8px;
    }
    
    .reports-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .reports-description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Partner with Us Section (Partners Page) */
.partner-with-us-partners-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
}

.partner-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-form-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partner-form-description {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-color);
    margin-bottom: 32px;
}

.partner-form-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
}

.partner-testimonial-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
    margin: 0 0 24px 0;
    font-style: italic;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.testimonial-title,
.testimonial-company {
    font-size: 16px;
    color: var(--light-color);
    margin: 0;
}

/* Responsive Partner with Us (Partners Page) */
@media (max-width: 991.98px) {
    .partner-with-us-partners-section {
        padding: 60px 0;
    }
    
    .partner-content-wrapper {
        margin-bottom: 24px;
    }
    
    .partner-form-panel,
    .partner-testimonial-panel {
        padding: 32px;
        margin-bottom: 24px;
    }
    
    .partner-form-title {
        font-size: 32px;
    }
    
    .partner-form-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    
    .testimonial-quote {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    
    .partner-testimonial-panel {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .partner-with-us-partners-section {
        padding: 40px 0;
    }
    
    .partner-form-panel,
    .partner-testimonial-panel {
        padding: 24px;
    }
    
    .partner-form-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .partner-form-description {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .testimonial-quote {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-title,
    .testimonial-company {
        font-size: 14px;
    }
}