/* Hub Page Styles */

/* Hub Hero Section */
.hub-hero {
    background: linear-gradient(135deg, #6C4DE6 0%, #8B6CEF 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hub-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hub-hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hub-hero-content {
    flex: 1;
    margin-left: 50px;
    max-width: 550px;
}

.hub-title {
    font-family: 'Georgia', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hub-usp-list {
    margin-bottom: 30px;
}

.hub-usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
}

.usp-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hub-hero-image {
    flex: 0 0 650px;
}

.hub-hero-image img {
    width: 100%;
    height: auto;
}

/* Choose Program Section */
.choose-program-section {
    padding: 40px 0;
    background: #f8f8f8;
}

.choose-program-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.choose-program-section .section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.hub-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.hub-program-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
    overflow: hidden;
    text-decoration: none;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    display: block;
}

.hub-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.hub-program-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-program-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hub-program-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.hub-program-mode {
    font-size: 12px;
    color: #6C4DE6;
    font-weight: 500;
    text-transform: uppercase;
}

.hub-program-content h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0;
    padding-right: 30px;
}

.hub-program-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    background: #6C4DE6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hub-program-card:hover .hub-program-arrow {
    background: #FF6344;
}

/* Career Services Section */
.career-services-section {
    padding: 80px 0;
    background: #fff;
}

.career-services-section .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #3A3A3A;
    margin-bottom: 10px;
}

.career-services-section .section-description {
    text-align: center;
    color: #666;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.career-services-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1300px;
}

.career-service-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 6px 32px 0 rgba(44, 62, 80, 0.08);
    border: 1.5px solid #f0f0f0;
    padding: 38px 32px 32px 32px;
    flex: 1 1 0;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.career-service-card:hover {
    box-shadow: 0 12px 40px 0 rgba(44, 62, 80, 0.13);
}

.career-service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #FF6344 0%, #6C4DE6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon {
    margin-bottom: 24px;
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.career-service-card p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1100px) {
    .career-services-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .career-service-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    /* padding: 80px 0; */
    background: white;
}

.testimonials-section .section-title {
    text-align: center;

    color: #434346;
    font-family: Poppins, sans-serif;
    font-size: 44px;
    margin-bottom: 15px;
}

.testimonials-section .section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-card {
    display: none;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    height: 200px;
    background: linear-gradient(135deg, #6C4DE6 0%, #8B6CEF 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.testimonial-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: -40px;
}

.testimonial-content {
    padding: 50px 25px 25px;
    text-align: center;
}

.testimonial-quote {
    font-size: 14px;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-program {
    font-size: 12px;
    color: #6C4DE6;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #6C4DE6;
    background: white;
    color: #6C4DE6;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #6C4DE6;
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #6C4DE6;
}

/* New Testimonials Section Design */
.testimonials-section-new {
    padding: 80px 0;
    background: #fff;
}

.testimonials-section-new .section-title {
    text-align: center;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-section-new .section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.testimonial-card-new {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 340px;
    text-align: left;
}

.testimonial-quote-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 84px;
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8e8e8;
    margin-bottom: 20px;
}

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

.testimonial-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-thumbnail .play-btn i {
    font-style: normal;
    font-size: 20px;
    color: #6C4DE6;
    margin-left: 4px;
}

.testimonial-thumbnail .play-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-name-new {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #6C4DE6;
    margin: 0 0 10px;
}

.testimonial-program-new {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: #6C4DE6;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    color: #5a3fd1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FF5538;
    width: 40px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        flex-wrap: wrap;
    }
    
    .testimonial-card-new {
        flex: 0 0 calc(50% - 15px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        flex-direction: column;
    }
    
    .testimonial-card-new {
        flex: 0 0 100%;
    }
    
    .testimonial-nav-btn {
        display: none;
    }
    
    .testimonial-quote-italic {
        font-size: 18px;
        min-height: auto;
    }
}

.dot:hover {
    background: #8B6CEF;
}

/* Batch Info with Counts */
.batch-info-item {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
}

.batch-count {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #6C4DE6;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

.batch-info-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Fee Options */
.fee-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.fee-option h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
}

.fee-option .fee-box {
    margin-bottom: 0;
}

.fee-note {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Registration Steps - 4 columns */
.registration-steps.four-steps {
    grid-template-columns: repeat(4, 1fr);
}

/* Assistance Section */
.assistance-section {
    padding: 60px 0;
    background: #ffffff;
}

.assistance-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    color: #333;
    position: relative;
}


.assistance-box h4 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #6C4DE6;
    text-transform: uppercase;
}

.assistance-box p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.assistance-box a {
    color: #FF5538;
    font-weight: 700;
    text-decoration: none;
}

.assistance-form {
    display: flex;
    gap: 20px;
    max-width: 750px;
    margin: 0 auto;
    align-items: center;
}

.assistance-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: #f0f0f0;
    font-family: Poppins, sans-serif;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    outline: none;
}

.assistance-form input::placeholder {
    color: #999;
}

.btn-submit {
    background: #d3d3d3;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 26px;
    cursor: not-allowed;
    transition: none;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #d3d3d3;
}

/* Info Session Section */
.info-session-section {
    padding: 50px 0;
    background: #FF5538;
}

.info-session-box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.info-session-content h4 {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.info-session-content p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.btn-signup {
    background: #4169E1;
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-signup:hover {
    background: #3458c7;
}

/* Experience Cards 3 columns */
.experience-cards.three-cols {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
}

/* Highlight Card with Icon */
.highlight-card .highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.highlight-card .highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer Social */
.footer-social {
    padding: 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* Program Structure Section - Hub */
.program-structure-section {
    padding: 40px 0 60px;
    background: #FAFAFA;
    text-align: center;
}

.program-structure-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #3A3A3A;
}

.program-structure-section .section-description {
    color: #444;
    font-size: 18px;
    max-width: 900px;
    line-height: 1.6;
}

/* --- Program Structure Section Alignment Fix --- */
.structure-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin: 0 auto;
    max-width: 1100px;
}

.structure-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    justify-content: flex-start;
}

.structure-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
}

.structure-label {
    font-size: 22px;
    font-weight: 700;
    color: #444;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    min-height: 28px;
}

.structure-text {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 0;
    margin-top: 10;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Fix: Ensure structure numbers are orange */
.structure-number {
    font-size: 80px;
    font-weight: 700;
    color: #FF6344 !important;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

@media (max-width: 900px) {
    .structure-stats {
        gap: 30px;
    }
    .structure-stat {
        min-width: 120px;
    }
    .structure-number {
        font-size: 48px;
    }
    .structure-label {
        font-size: 16px;
    }
    .structure-text {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .structure-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .structure-stat {
        min-width: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hub-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hub-hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .hub-title {
        font-size: 56px;
    }
    
    .hub-usp-list {
        display: inline-block;
        text-align: left;
    }
    
    .career-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .registration-steps.four-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-cards.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hub-title {
        font-size: 48px;
    }
    
    .career-services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .fee-options {
        grid-template-columns: 1fr;
    }
    
    .info-session-box {
        flex-direction: column;
        text-align: center;
    }
    
    .assistance-form {
        flex-direction: column;
    }
    
    .registration-steps.four-steps {
        grid-template-columns: 1fr;
    }
    
    .experience-cards.three-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hub-title {
        font-size: 40px;
    }
    
    .batch-count {
        font-size: 28px;
    }
}
/* Bachelors Hub Specific Styles */
.bachelors-hero {
    background: linear-gradient(to right, #724bff 0%, #724bff 100%);
}

.hub-programs-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
}

@media (max-width: 768px) {
    .hub-programs-grid.two-cols {
        grid-template-columns: 1fr;
    }
}

.hub-program-image.pink-gradient {
    background: linear-gradient(135deg, #FFB5C5 0%, #FFA0B5 100%);
}

/* 5 Column Highlights Grid */
.highlights-grid.five-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.highlights-grid.five-cols .highlight-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlights-grid.five-cols .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.highlights-grid.five-cols .highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.highlights-grid.five-cols .highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlights-grid.five-cols .highlight-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.highlights-grid.five-cols .highlight-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .highlights-grid.five-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid.five-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .highlights-grid.five-cols {
        grid-template-columns: 1fr;
    }
}

/* Career Options Section */
.career-options-section {
    padding: 10px 0;
    background: white;
}

.career-options-section .section-title {
    text-align: center;
    font-size: 44px;
    color: #434346;
    margin-bottom: 15px;
    font-family: Poppins, sans-serif;
}

.career-options-section .section-description {
    text-align: center;
    color: #666;
    max-width: 1000px;
    line-height: 1.7;
}

.career-options-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.career-options-image {
    flex: 0 0 400px;
    border-radius: 15px;
    overflow: hidden;
}

.career-options-image img {
    width: 100%;
    height: auto;
}

.career-list.vertical {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.career-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.career-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #6C4DE6;
    margin-bottom: 8px;
}

.career-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Fee Options Grid */
.fee-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.fee-option h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.fee-box.small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

.fee-box.small .fee-label {
    font-size: 14px;
    color: #333;
}

.fee-box.small .fee-amount {
    font-size: 16px;
    font-weight: 600;
    color: #6C4DE6;
}

.fee-notes {
    background: #FFF8E6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.fee-notes p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.fee-notes p:last-child {
    margin-bottom: 0;
}

.scholarship-info {
    background: #E8F4FF;
    padding: 20px;
    border-radius: 10px;
}

.scholarship-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #6C4DE6;
    margin-bottom: 10px;
}

.scholarship-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why NMIMS CDOE Section - Hub */
.why-nmims-section-hub {
    padding: 20px 0;
    background: #FAFAFA;
    border-bottom: 1px solid #E8E8E8;
}

.why-nmims-hub-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: last baseline;
    max-width: 1100px;
    margin: 0 auto;
}

.why-title-hub {
    flex: 0 0 auto;
}

.why-title-hub h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 650;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.why-title-hub h2 .highlight {
    color: #333;
    text-decoration: underline;
    text-decoration-color: #FF6344;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.why-stats-hub {
    flex: 1;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item-hub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.stat-number-hub {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FF6344;
}

.stat-label-hub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    max-width: 250px;
}

@media (max-width: 768px) {
    .why-nmims-hub-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .why-title-hub h2 {
        font-size: 22px;
    }
    
    .why-title-hub h2 br {
        display: none;
    }
    
    .why-stats-hub {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item-hub {
        flex: 0 0 calc(33.33% - 10px);
        align-items: center;
    }
    
    .stat-number-hub {
        font-size: 28px;
    }
    
    .stat-label-hub {
        font-size: 11px;
        max-width: 100px;
        line-height: 1.3;
    }
}
/* Enhanced Key Highlights Section */
.key-highlights-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.key-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #6C4DE6 50%, transparent 100%);
}

.key-highlights-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    position: relative;
}

.key-highlights-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6344 0%, #6C4DE6 100%);
    border-radius: 2px;
}

.key-highlights-section .section-description {
    font-size: 16px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.benefits-slider {
    background: linear-gradient(90deg, rgba(108, 77, 230, 0.03) 0%, transparent 15%, transparent 85%, rgba(108, 77, 230, 0.03) 100%);
    padding: 50px 0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(108, 77, 230, 0.08);
}

.slider-container {
    gap: 24px;
    padding: 0 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.benefit-card {
    min-width: 300px;
    height: 220px;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #E8E0FF 0%, #F0EBFF 100%);
    box-shadow: 0 8px 25px rgba(108, 77, 230, 0.12);
    border: 2px solid transparent;
}

.benefit-card:focus {
    box-shadow: 0 0 0 4px rgba(108, 77, 230, 0.2);
}

.benefit-card:hover:not(.active) {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(108, 77, 230, 0.18);
}

.benefit-card.active {
    min-width: 420px;
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(255, 99, 68, 0.25);
}

.card-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(176, 136, 255, 0.4);
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-card.active .card-number {
    top: 20px;
    left: 24px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
}

.icon-circle {
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card.active .icon-circle {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.icon-circle img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.benefit-card.active .icon-circle img {
    transform: scale(1.1);
}

.nav-arrow {
    bottom: 24px;
    right: 28px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.benefit-card.active .nav-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.9);
}

/* Download Brochure Section */
.download-brochure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.download-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.download-content p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 30px;
}

.download-image {
    flex: 0 0 300px;
}

.download-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .download-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .download-image {
        flex: none;
        max-width: 250px;
    }
}

/* Learning Experience Section - Hub Customization */
.learning-experience-section {
    padding: 20px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.learning-experience-section .section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 600;
    color: #434346;
    margin-bottom: 20px;
}

.learning-experience-section .section-description {
    text-align: center;
    color: #434346;
    font-weight: 400;
    font-size: 17px;
    max-width: 1000px;
    margin: 0 auto 50px;
    line-height: normal;
}

.experience-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1300px;
}

.experience-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 6px 32px 0 rgba(44, 62, 80, 0.08);
    border: 2.5px solid #f0f0f0;
    padding: 30px 30px 30px 30px;
    flex: 1 1 0;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.experience-card:hover {
    box-shadow: 0 12px 40px 0 rgba(44, 62, 80, 0.13);
}

.experience-card h4 {
    color: #FF6344;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.experience-icon {
    margin-bottom: 24px;
    /* width: 140px; */
    /* height: 120px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experience-card p {
    color: #434346;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    text-align: left;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1100px) {
    .experience-cards {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .experience-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Program Certificate Section - Hub Customization */
.certificate-section {
    padding: 0;
    background: linear-gradient(90deg, #2B3FE6 0%, #6C4DE6 40%, #FF6344 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 60px 0;
}

.certificate-content {
    flex: 1;
    color: #fff;
    padding-left: 80px;
}

.certificate-content .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    text-align: left;
}

.certificate-content p {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    max-width: 550px;
    margin-bottom: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.certificate-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 400px;
}

.certificate-image img {
    width: auto;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    background: #fff;
    padding: 0;
}

@media (max-width: 1100px) {
    .certificate-section .container {
        flex-direction: column;
        padding: 40px 0;
    }
    .certificate-content {
        padding-left: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .certificate-content .section-title,
    .certificate-content p {
        text-align: center;
    }
    .certificate-image {
        min-width: 0;
    }
}
/* Career Services Carousel */
.career-services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.career-services-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(5 * 33.333%);
}

.career-services-carousel .career-service-card {
    flex: 0 0 33.333%;
    margin-right: 24px;
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.career-services-carousel .career-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.career-services-carousel .career-service-card:last-child {
    margin-right: 0;
}

.career-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.career-carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.career-carousel-btn:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .career-services-carousel {
        width: calc(5 * 100%);
    }
    
    .career-services-carousel .career-service-card {
        flex: 0 0 100%;
        margin-right: 16px;
    }
}

/* Batch Profile Section - Redesigned */
.batch-profile-section {
    padding: 80px 0;
    background: linear-gradient(to right, #ff5b35 0%, #ff5b35 100%);
    color: white;
}

.batch-profile-section .section-title {
    text-align: center;
    font-size: 44px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 14px;
}

.batch-profile-section .section-description {
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    max-width: 1100px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.batch-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.batch-profile-illustration {
    flex: 0 0 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.batch-profile-illustration img {
    width: 100%;
    height: auto;
}

.batch-stats-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.batch-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.batch-stat-content p {
    font-size: 31px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
    max-width: 400px;
}

.batch-stat-number {
    font-size: 35px;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    min-width: 150px;
    text-align: right;
}

@media (max-width: 992px) {
    .batch-profile-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .batch-profile-illustration {
        flex: none;
        max-width: 400px;
    }
    
    .batch-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .batch-stat-content p {
        max-width: 100%;
    }
    
    .batch-stat-number {
        text-align: center;
    }
}
/* Registration Process Section - Slider Design */
.registration-section {
    padding: 80px 0;
    background: white;
}

.registration-section .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #6C4DE6;
    margin-bottom: 15px;
}

.registration-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registration-slider-wrapper {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 60px;
}

.registration-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.registration-card {
    background: white;
    border: 3px solid transparent;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: none;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #8B6CEF 0%, #6C4DE6 100%) border-box;
}

.registration-card[data-reg-slide="0"] {
    display: block;
}

.step-header {
    margin-bottom: 20px;
}

.step-label {
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 25px;
    color: #333;
}

.step-num {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 25px;
    /* font-style: italic; */
    color: #333;
}

.registration-card .card-title {
    font-size: 22px;
    font-weight: 500;
    font-family: Poppins, sans-serif;
    color: #222;
    margin-bottom: 20px;
    min-height: 56px;
}

.registration-card .card-content {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.registration-card .card-content p {
    margin-bottom: 10px;
    font-weight: 400;
    color: #444;
}

.registration-card .card-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.registration-card .card-content li {
    margin-bottom: 5px;
}

.registration-card .card-content a {
    color: #6C4DE6;
    text-decoration: none;
}

.registration-card .card-content a:hover {
    text-decoration: underline;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #6C4DE6;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: #6C4DE6;
    color: white;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.registration-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.reg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reg-dot.active {
    background: #FF5538;
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .registration-slider {
        grid-template-columns: 1fr;
    }
    
    .registration-slider-wrapper {
        padding: 0 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}