/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: #f39c12;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.skyai-logo i {
    color: #4a90e2;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav a:hover {
    color: #f39c12;
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f39c12;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 2rem;
    color: #f39c12;
}

.stat span {
    font-weight: 600;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.section h2 i {
    color: #3498db;
    margin-left: 1rem;
}

/* Interactive Calculator */
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
}

.calc-input-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.calc-input-group input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.calc-actions {
    text-align: center;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Table of Contents */
.toc {
    padding: 80px 0;
    background: white;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.toc-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.toc-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.toc-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.toc-item p {
    color: #666;
    line-height: 1.6;
}

/* Partners Structure */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.partner-icon i {
    font-size: 2rem;
    color: white;
}

.partner-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.partner-role {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.responsibilities {
    list-style: none;
    text-align: right;
    margin-bottom: 1.5rem;
}

.responsibilities li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.responsibilities li:last-child {
    border-bottom: none;
}

.share-percentage {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.ownership-note {
    background: #f8f9fa;
    border-right: 5px solid #3498db;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 10px;
}

.ownership-note h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.ownership-note p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ownership-note p:last-child {
    margin-bottom: 0;
}

.ownership-note i {
    color: #3498db;
    margin-top: 5px;
}

/* Organization Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.org-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
    position: relative;
}

.org-box.ceo {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.org-box.dept {
    border-top: 4px solid #3498db;
}

.org-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.org-box.ceo i {
    color: white;
}

.org-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.org-box p {
    color: #666;
    font-size: 0.9rem;
}

.org-box.ceo p {
    color: rgba(255,255,255,0.9);
}

/* Ratios Section */
.ratios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ratios-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ratios-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.ratio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.ratio-item:last-child {
    border-bottom: none;
}

.ratio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ratio-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2c3e50;
}

/* Costs Grid */
.costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cost-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-5px);
}

.cost-header {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.cost-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cost-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.cost-details {
    padding: 1.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid #3498db;
    font-weight: 700;
    color: #2c3e50;
    background: #f8f9fa;
    margin: 1rem -1.5rem -1.5rem;
    padding: 1rem 1.5rem;
}

.total-costs {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.total-costs h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.total-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

.total-annual {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Expenses */
.expenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expense-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.expense-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.expense-icon i {
    font-size: 1.5rem;
    color: white;
}

.expense-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.expense-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.expense-calculation {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e74c3c;
    font-weight: 600;
    color: #2c3e50;
}

.expenses-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.summary-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid #e74c3c;
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Subscription Plans */
.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.basic .plan-header {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.plan-card.premium .plan-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.plan-card.enterprise .plan-header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.plan-header {
    color: white;
    padding: 2rem;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price span {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    list-style: none;
    padding: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.plan-projection {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.plan-projection span {
    display: block;
    margin-bottom: 0.5rem;
}

.plan-projection span:last-child {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Revenue Projection */
.revenue-projection {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.revenue-projection h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.projection-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.projection-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.revenue-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
    margin-top: 0.5rem;
}

/* Financial Summary */
.financial-summary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0;
}

.financial-summary h2 {
    color: white;
    margin-bottom: 3rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.summary-card {
    background: white;
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.summary-card.revenue .summary-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.summary-card.costs .summary-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.summary-card.profit .summary-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.summary-card.breakeven .summary-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.summary-icon i {
    font-size: 1.5rem;
    color: white;
}

.summary-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summary-amount.negative {
    color: #e74c3c;
}

.summary-note {
    font-size: 0.9rem;
    color: #666;
}

/* Action Plan */
.action-plan {
    padding: 80px 0;
    background: #f8f9fa;
}

.action-plan h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
}

.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recommendation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-right: 5px solid;
}

.recommendation-card.urgent {
    border-right-color: #e74c3c;
}

.recommendation-card.important {
    border-right-color: #f39c12;
}

.recommendation-card.growth {
    border-right-color: #2ecc71;
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rec-header i {
    font-size: 1.5rem;
}

.recommendation-card.urgent .rec-header i {
    color: #e74c3c;
}

.recommendation-card.important .rec-header i {
    color: #f39c12;
}

.recommendation-card.growth .rec-header i {
    color: #2ecc71;
}

.rec-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.recommendation-card ul {
    list-style: none;
}

.recommendation-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 1.5rem;
}

.recommendation-card li:last-child {
    border-bottom: none;
}

.recommendation-card li::before {
    content: '•';
    position: absolute;
    right: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.recommendation-card.urgent li::before {
    color: #e74c3c;
}

.recommendation-card.important li::before {
    color: #f39c12;
}

.recommendation-card.growth li::before {
    color: #2ecc71;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #f39c12;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.print-actions {
    display: flex;
    gap: 1rem;
}

.print-btn, .export-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.print-btn:hover, .export-btn:hover {
    background: #2980b9;
}

.export-btn {
    background: #e74c3c;
}

.export-btn:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .ratios-content,
    .expenses-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .costs-grid,
    .expenses-grid,
    .subscription-plans {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .print-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .recommendations {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .print-actions {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
    
    .cost-card,
    .expense-card,
    .plan-card,
    .recommendation-card {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Chart Containers */
.chart-container canvas,
.summary-chart canvas,
.projection-chart canvas {
    max-width: 100%;
    height: auto;
}

/*
---
--- Revolutionary Courses Page
---
*/

@keyframes card-enter-courses {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.courses-revolutionary-body {
    background-color: #081c24; /* Dark background */
    color: #f0f0f0;
}

.courses-entry-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #081c24;
    z-index: 2000;
    transition: opacity 1s ease, transform 1s ease;
}

.courses-entry-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.1) 0%, rgba(26, 95, 122, 0.3) 40%, transparent 70%);
    position: relative;
    animation: pulse 4s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.courses-entry-icon {
    font-size: 6rem;
    color: #159895;
    animation: book-pulse 2s infinite ease-in-out;
}

.loading-counter {
    position: absolute;
    top: 70%;
    color: #57c5b6;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes book-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.courses-grid-animated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 100px auto 40px; /* Adjust margin to be below the fixed header */
    position: relative;
    z-index: 5;
}

.course-card-animated {
    background: linear-gradient(145deg, #103c4e, #0b2b3a);
    border: 1px solid #159895;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(87, 197, 182, 0.1) inset;
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    opacity: 0; /* Initially hidden for animation */
    transform: translateY(50px);
    overflow: hidden;
    position: relative;
}

.course-card-animated:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(87, 197, 182, 0.3) inset, 0 0 10px #B08D57;
}

.course-card-animated img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #159895;
}

.course-card-animated h3 {
    color: #f0f0f0;
    font-size: 1.4em;
    margin-bottom: 10px;
    min-height: 56px; /* Space for two lines */
}

.course-card-animated .partner-role {
    color: #57c5b6; /* Light green for instructor name */
    margin-bottom: 15px;
}

.course-card-animated .course-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #B08D57; /* Gold accent for price */
    margin-bottom: 20px;
}

.course-card-animated .print-btn {
    background-color: #159895;
    border: none;
    width: 100%;
}

.course-card-animated .print-btn:hover {
    background-color: #57c5b6;
}

/* ... existing code ... */
.dashboard-card h5 {
    color: #3498db;
}

/* Navbar Toggler Icon for mobile view */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.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(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}