/* ===================================
   University Courses Online - Main Stylesheet
   Modern, Editorial-Inspired Design
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #2E5BFF;
    --primary-dark: #1E3A8A;
    --secondary-color: #FF6B35;
    --accent-color: #00D9FF;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gray-color: #6B7280;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Literata', serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-color);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-consent a {
    color: var(--accent-color);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
}

.brand-text {
    color: var(--dark-color);
}

.brand-highlight {
    color: var(--primary-color);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(46, 91, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 91, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F4FF 0%, #E8EEFF 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge-label {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Learning Paths Section */
.learning-paths-section {
    background: white;
}

.learning-path-map {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    position: relative;
    flex-wrap: wrap;
}

.path-node {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.path-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.node-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.node-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.node-content p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.path-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    position: relative;
}

.path-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -12px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.path-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.path-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.path-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.path-card-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.path-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.path-features {
    list-style: none;
    margin-bottom: 2rem;
}

.path-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.path-features li:last-child {
    border-bottom: none;
}

.path-features i {
    color: var(--success-color);
}

.path-duration {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Featured Course Section */
.featured-course-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
}

.featured-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.featured-content {
    padding-left: 2rem;
}

.featured-badge {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #B0B8C9;
    margin: 0;
}

.course-price-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #B0B8C9;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.price-note {
    font-size: 0.9rem;
    color: #B0B8C9;
    margin-top: 0.5rem;
}

/* Skills Matrix Section */
.skills-matrix-section {
    background: #F8F9FA;
}

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

.skill-category {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-item {
    background: #F3F4F6;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.skill-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Scenarios Section */
.scenarios-section {
    background: white;
}

.scenario-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.scenario-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.scenario-content {
    padding: 2rem;
}

.scenario-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scenario-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.scenario-skills {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.scenario-skills li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.scenario-skills li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Case Studies Section */
.case-studies-section {
    background: #F8F9FA;
}

.mini-case-study {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.mini-case-study:hover {
    box-shadow: var(--shadow-md);
}

.case-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-heading);
}

.case-content {
    position: relative;
    z-index: 1;
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-context {
    margin-bottom: 1rem;
}

.case-context .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.case-takeaway {
    background: #F0F4FF;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.case-takeaway strong {
    color: var(--primary-color);
}

/* Course Comparison Section */
.course-comparison-section {
    background: white;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background: var(--dark-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #F9FAFB;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #F0F4FF 0%, white 100%);
}

.philosophy-visual {
    position: relative;
}

.philosophy-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.philosophy-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 300px;
}

.philosophy-quote i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.philosophy-quote p {
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.philosophy-principles {
    margin-top: 3rem;
}

.principle-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.principle-item:last-child {
    border-bottom: none;
}

.principle-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.principle-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.principle-text p {
    margin: 0;
    color: var(--gray-color);
}

/* Tools Ecosystem Section */
.tools-ecosystem-section {
    background: #F8F9FA;
}

.tool-category-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.tool-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tool-category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tool-list {
    list-style: none;
}

.tool-list li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Outcomes Section */
.outcomes-section {
    background: white;
}

.outcome-card {
    background: #F8F9FA;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
}

.outcome-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.outcome-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.outcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.outcome-note {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    border-left: 3px solid var(--warning-color);
}

.outcome-note i {
    color: var(--warning-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.outcome-note span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.outcomes-disclaimer {
    background: #FEF3C7;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-color);
}

.outcomes-disclaimer h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: #B0B8C9;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-mark {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #B0B8C9;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-buttons {
    margin: 2rem 0;
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #B0B8C9;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: #B0B8C9;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #B0B8C9;
    font-size: 0.9rem;
}

.footer-compliance {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* Course Pages */
.course-hero {
    background: linear-gradient(135deg, #F0F4FF 0%, white 100%);
    padding: 6rem 0 4rem;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.breadcrumb-custom a {
    color: var(--gray-color);
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.breadcrumb-custom i {
    margin: 0 0.5rem;
    font-size: 0.7rem;
}

.course-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.course-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.course-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
}

.meta-item i {
    color: var(--primary-color);
}

.course-price-display {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price-details {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.course-hero-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.course-overview-section {
    padding: 6rem 0;
}

.learning-objectives {
    margin-top: 2rem;
}

.objective-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.objective-item:last-child {
    border-bottom: none;
}

.objective-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.objective-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.objective-item p {
    margin: 0;
    color: var(--gray-color);
}

.course-info-sidebar {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

.course-info-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.course-details-list {
    list-style: none;
    margin-bottom: 2rem;
}

.course-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.course-details-list li:last-child {
    border-bottom: none;
}

.course-details-list strong {
    color: var(--dark-color);
}

.course-details-list span {
    color: var(--gray-color);
    text-align: right;
}

.course-includes h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.course-includes ul {
    list-style: none;
}

.course-includes li {
    padding: 0.75rem 0;
    color: var(--gray-color);
}

.course-includes i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Curriculum Section */
.curriculum-section {
    background: #F8F9FA;
}

.curriculum-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.curriculum-accordion .accordion-button {
    background: white;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1.5rem;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.curriculum-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.module-number {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.module-title {
    flex: 1;
}

.module-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lesson-list {
    list-style: none;
    padding: 1rem 0;
}

.lesson-list li {
    padding: 0.75rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lesson-list i {
    color: var(--primary-color);
}

/* Target Audience Section */
.target-audience-section {
    background: white;
}

.audience-card {
    background: #F8F9FA;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.audience-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: #F8F9FA;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1.5rem;
    background: white;
    color: var(--dark-color);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #F0F4FF;
    color: var(--primary-color);
}

/* Course CTA Section */
.course-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.course-cta-section h2 {
    color: white;
    font-size: 3rem;
}

.cta-price {
    margin: 2rem 0;
}

.price-display {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; max-width: 100%; }
    .section-title { font-size: 2.25rem; }
    .featured-content { padding-left: 0; margin-top: 2rem; }
    .course-highlights { grid-template-columns: 1fr; }
    .philosophy-quote { position: static; margin-top: 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .learning-path-map { flex-direction: column; }
    .path-connector { display: none; }
    .skills-grid { grid-template-columns: 1fr; }
    .course-title { font-size: 2.5rem; }
    .course-meta { flex-direction: column; gap: 1rem; }
    .trust-indicators { gap: 1.5rem; }
}



.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}
