/* Program Details Page Styles */

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

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

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

.program-hero-content {
    flex: 1;
    max-width: 600px;
}

.program-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.program-title {
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

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

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

.program-type {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-left .program-title {
    font-family: 'Georgia', serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 30px;
}

.hero-right {
    flex: 0 0 400px  !important;
    margin-right: 150px;
}

.hero-image {
    min-width: 500px;
    height: auto;
}

.brochure-btn-wrapper {
    margin-bottom: 20px;
}

.program-usp-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.usp-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.batch-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.batch-label {
    font-size: 14px;
    opacity: 0.9;
}

.batch-date {
    background: #FF6344;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.btn-download-brochure {
    background: #FF6344;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-download-brochure:hover {
    background: #e55535;
    transform: translateY(-2px);
}

.program-features {
    margin-top: 30px;
}

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

.feature-icon {
    font-size: 18px;
}

.program-hero-image {
    flex: 0 0 400px;
}

.program-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Why NMIMS Section */
.why-nmims-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.why-nmims-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 40px;
}

.why-nmims-section .section-title .highlight {
    color: #6C4DE6;
}

.why-nmims-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #6C4DE6;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Key Highlights Section */
.key-highlights-section {
    padding: 80px 0;
    background: white;
}

.key-highlights-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

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

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #6C4DE6;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

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

/* Program Structure Section */
.program-structure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6C4DE6 0%, #8B6CEF 100%);
    color: white;
}

.program-structure-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.program-structure-section .section-description {
    text-align: center;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.structure-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.structure-stat {
    text-align: center;
}

.structure-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.structure-text {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

/* BBA specific override to prevent bcom.css interference */
.program-structure-section .structure-text {
    color: white !important;
    font-size: 60px !important;
    font-weight: 700 !important;
    font-family: 'Georgia', serif !important;
}

.structure-label {
    font-size: 14px;
    opacity: 0.8;
}

.curriculum-accordion {
    max-width: 800px;
    margin: 0 auto 40px;
}

.curriculum-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.curriculum-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.curriculum-header h4 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.curriculum-item.active .curriculum-content {
    max-height: 500px;
}

.curriculum-content ul {
    padding: 20px 205px;
    margin: 0;
    list-style: none;
}

.curriculum-content li {
    padding: 6px 0;
    padding-left: 15px;
    position: relative;
    font-size: 14px;
    
    opacity: 0.9;
}

.curriculum-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF6344;
}

.program-structure-section .btn-download-brochure {
    display: block;
    margin: 0 auto;
    background: white;
    color: #6C4DE6;
}

.program-structure-section .btn-download-brochure:hover {
    background: #f0f0f0;
}

/* Learning Experience Section */
.learning-experience-section {
    padding: 20px 0;
    background: white;
    font-family: Poppins, sans-serif;

}

.learning-experience-section .section-title {
    text-align: center;
    font-weight: 500;
    font-size: 42px;
    line-height: 44px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

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

.experience-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-card {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    border-color: 1px solid black;
    border-radius: 10%;

}

.experience-icon {
    width: 250px;
    height: auto;
    margin: 0 auto 20px;
}

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

.experience-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.experience-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}



/* Hiring Partners Section */
.hiring-partners-section {
    padding: 80px 0;
    background: white;
}

.hiring-partners-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

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

.hiring-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hiring-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
}

.hiring-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.hiring-logo:hover img {
    filter: grayscale(0%);
}

/* Career Options Section */
.career-options-section {
    padding: 80px 0;
    background: white;
    color: #333;
}

.career-options-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

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

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

.career-options-image {
    flex: 0 0 400px;
}

.career-options-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

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

.career-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #eee;
}

.career-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

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

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

.batch-profile-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.batch-profile-section .section-title.white {
    color: white;
}

.batch-profile-section .section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.batch-profile-section .section-description.white {
    color: rgba(255, 255, 255, 0.8);
}

.batch-profile-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.batch-profile-illustration {
    flex: 0 0 400px;
}

.batch-profile-illustration img {
    width: 100%;
    border-radius: 16px;
}

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

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

.batch-stat-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    margin: 0;
}

.batch-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.batch-profile-image {
    max-width: 800px;
    margin: 0 auto 40px;
}

.batch-profile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.batch-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.batch-info-item {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Admission Section */
.admission-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.admission-section .section-title {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 40px;
}

.admission-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.admission-tab {
    background: white;
    border: 2px solid #ddd;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admission-tab:hover {
    border-color: #6C4DE6;
    color: #6C4DE6;
}

.admission-tab.active {
    background: #6C4DE6;
    border-color: #6C4DE6;
    color: white;
}

.admission-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.admission-content > div {
    display: none;
}

.admission-content > div.active {
    display: block;
}

.admission-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

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

.dates-table tr {
    border-bottom: 1px solid #eee;
}

.dates-table td {
    padding: 15px 10px;
    font-size: 14px;
}

.dates-table td:first-child {
    color: #666;
}

.dates-table td:last-child {
    font-weight: 600;
    text-align: right;
}

.admission-eligibility ul {
    padding-left: 20px;
}

.admission-eligibility li {
    padding: 10px 0;
    font-size: 14px;
    color: #444;
}

.fee-box {
    background: #6C4DE6;
    color: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.fee-label {
    font-size: 14px;
    opacity: 0.9;
}

.fee-amount {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.fee-notes {
    margin-bottom: 30px;
}

.fee-notes p {
    font-size: 13px;
    color: #666;
    padding: 5px 0;
}

.scholarship-info {
    background: #fff8f6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF6344;
}

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

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

/* Registration Section */
.registration-section {
    padding: 60px 0;
    background: white;
}

.registration-section h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.registration-section > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.registration-step {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.step-number {
    display: inline-block;
    background: #6C4DE6;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.registration-step h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

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

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.faqs-section .section-title {
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    gap: 20px;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    background: #FF6344;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #6C4DE6;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 25px;
    padding-left: 77px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Enquire Float Button */
.enquire-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #FF6344;
    color: white;
    padding: 15px 20px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    z-index: 100;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.enquire-float:hover {
    padding-right: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .program-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .program-hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .program-features {
        display: inline-block;
        text-align: left;
    }
    
    .why-nmims-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .career-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .career-options-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .career-options-image {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .batch-info-list {
        grid-template-columns: 1fr;
    }
    
    .batch-profile-wrapper {
        flex-direction: column;
    }
    
    .batch-profile-illustration {
        flex: none;
        max-width: 100%;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 32px;
    }
    
    .structure-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .career-list {
        grid-template-columns: 1fr;
    }
    
    .career-options-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .career-options-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .admission-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .admission-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .registration-steps {
        grid-template-columns: 1fr;
    }
    
    .fee-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .program-hero {
        padding: 60px 0 40px;
    }
    
    .program-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .structure-number {
        font-size: 32px;
    }
    
    .admission-content {
        padding: 25px;
    }
}
