/* Program Hero Section */
.program-hero {
    background-color: #0b1120;
    padding: 120px 0 60px 0; /* Adding top padding for spacing below header */
    color: #ffffff;
}

.program-hero .hero-content {
    max-width: 1000px;
    /* margin: 0 auto; removed to align left */
}

.program-hero .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.program-hero .section-tag .dot {
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.program-hero .title-box {
    margin-bottom: 25px;
}

.program-hero .hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #f8fafc;
    margin: 0;
    letter-spacing: -0.5px;
}

.program-hero .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 900px;
}

.program-hero .info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.program-hero .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.program-hero .info-item i {
    color: #f59e0b; /* Orange icons */
    font-size: 16px;
}

/* Curriculum Section */
.program-curriculum {
    background-color: #f1f5f9; /* Light grayish background matching screenshot */
    padding: 100px 0;
    color: #0f172a;
}

.program-curriculum .curriculum-tag {
    color: #d97706; /* Orange color */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.program-curriculum .curriculum-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.program-curriculum .curriculum-desc {
    font-size: 16px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Phase Card */
.phase-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-top: 50px;
    text-align: left;
}

.phase-header {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    padding: 40px 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.phase-header.dark {
    background: #1e293b;
}

.phase-title-area {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 0 0 350px;
}

.phase-number {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
}

.phase-title-text {
    display: flex;
    flex-direction: column;
}

.phase-duration {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

.phase-title-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: white;
    white-space: nowrap;
}

.phase-desc {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.phase-content {
    padding: 50px;
}

.timeline-item {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    gap: 15px;
    align-self: flex-start;
}

.timeline-circle {
    width: 32px;
    height: 32px;
    background-color: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline-circle.dark {
    background-color: #1e293b;
}

.timeline-week {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
}

.timeline-right {
    flex: 1;
}

.timeline-right h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.timeline-right p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 30px;
    }
    .phase-title-area {
        flex: auto;
    }
    .phase-desc {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        padding-top: 25px;
    }
    .timeline-item {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }
    .timeline-left {
        align-items: center;
        flex: auto;
        padding-bottom: 5px;
    }
    .phase-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .phase-card {
        margin-top: 30px;
    }
    .phase-header {
        padding: 20px 15px;
        gap: 15px;
    }
    .phase-number {
        font-size: 42px;
    }
    .phase-title-text h3 {
        font-size: 22px;
        white-space: normal;
        line-height: 1.2;
    }
    .phase-desc {
        padding-top: 15px;
        font-size: 13px;
    }
    .phase-content {
        padding: 20px 15px;
    }
}

/* Live Projects Section */
.program-projects {
    background-color: #0f172a;
    padding: 100px 0;
    color: white;
}

.section-tag-small {
    color: #f59e0b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-light {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-desc-light {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 50px;
}

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

.project-card {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    margin-bottom: 25px;
}

.project-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.project-card p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .program-projects {
        padding: 60px 0;
    }
    .section-title-light {
        font-size: 32px;
    }
    .project-card {
        padding: 30px;
    }
}

/* Tools & Software Section */
.program-software {
    background-color: #f8fafc;
    padding: 100px 0;
    color: #0f172a;
}

.software-tag {
    color: #d97706;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.software-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.software-desc {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 50px;
}

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

.software-column {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}

.software-header {
    padding: 20px 25px;
}

.software-header.orange {
    background-color: #f59e0b;
}

.software-header.dark {
    background-color: #334155;
}

.software-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.software-list {
    padding: 25px;
}

.software-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.software-item:last-child {
    margin-bottom: 0;
}

.software-item i {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 5px;
}

.software-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.software-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .program-software {
        padding: 60px 0;
    }
    .software-title {
        font-size: 32px;
    }
    .program-hero {
        padding: 40px 0 30px 0;
    }
    .program-hero .section-tag {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    .program-hero .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    .program-hero .info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
    }
    .program-hero .info-item {
        font-size: 13px;
    }
    .program-hero .hero-desc {
        font-size: 13px;
        margin-bottom: 25px;
        text-align: justify;
    }
    .program-curriculum {
        padding: 60px 0;
    }
    .program-curriculum .container {
        text-align: left !important;
    }
    .program-curriculum .curriculum-tag {
        margin-bottom: 8px;
    }
    .program-curriculum .curriculum-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .program-curriculum .curriculum-desc {
        font-size: 14px;
        text-align: justify;
    }
    .program-projects {
        padding: 60px 0;
    }
    .program-projects .text-center {
        text-align: left !important;
    }
    .section-tag-small {
        margin-bottom: 8px;
    }
    .section-title-light {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .section-desc-light {
        font-size: 14px;
        text-align: left;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card {
        padding: 20px 15px;
    }
    .project-number {
        margin-bottom: 15px;
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    .project-card h3 {
        font-size: 20px;
    }
    .project-card p {
        font-size: 13px;
        text-align: justify;
    }
    
    .program-software {
        padding: 60px 0;
    }
    .program-software .text-center {
        text-align: left !important;
    }
    .software-tag {
        margin-bottom: 8px;
    }
    .software-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .software-desc {
        font-size: 14px;
        text-align: left;
    }
    .software-grid {
        grid-template-columns: 1fr;
    }
    .software-header h3 {
        font-size: 16px;
    }
    .software-item h4 {
        font-size: 15px;
    }
    .software-item p {
        font-size: 13px;
        text-align: justify;
    }
}

/* The Primo Edge Section */
.program-edge {
    background-color: #0f172a; /* Dark slate background */
    padding: 100px 0;
    color: white;
}

.edge-tag {
    color: #f59e0b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.edge-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.edge-card {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.edge-icon {
    flex: 0 0 auto;
}

.edge-icon i {
    color: #f59e0b;
    font-size: 24px;
}

.edge-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    margin-top: 2px; /* Align with icon */
}

.edge-content p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.program-cta {
    background-color: #1e293b;
    padding: 100px 0;
    color: white;
}

.program-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.program-cta p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-enroll {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-advisor {
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-advisor:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .program-edge {
        padding: 60px 0;
    }
    .program-edge .text-center {
        text-align: left !important;
    }
    .edge-tag {
        margin-bottom: 8px;
    }
    .edge-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .edge-card {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }
    .edge-content h3 {
        font-size: 18px;
    }
    .edge-content p {
        font-size: 13px;
        text-align: justify;
    }
    .edge-grid {
        grid-template-columns: 1fr;
    }
    .program-cta.text-center {
        text-align: left !important;
    }
    .program-cta {
        padding: 50px 0;
    }
    .program-cta h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .program-cta p {
        font-size: 13px;
        text-align: justify;
        margin-bottom: 30px;
    }
    .cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    .btn-enroll, .btn-advisor {
        flex: 1;
        width: auto;
        justify-content: center;
        font-size: 13px;
        padding: 12px 5px;
        text-align: center;
    }
}
