/* Programs template stylesheet */

/* Main content section styles */
#program-content {
    padding: 60px 0;
    min-height: 600px; /* Ensures enough space for content */
}

.program-content-wrapper {
    margin-top: 40px;
}

/* Content blocks styling */
.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.content-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Two-column layout for content */
.two-column {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.two-column .column {
    flex: 1;
}

@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }
}

/* Feature list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7aff;
    font-weight: bold;
}

/* Call to action button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4a7aff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #3562d8;
}

/* Image styling */
.program-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Testimonial box */
.testimonial {
    background-color: #f9f9f9;
    border-left: 4px solid #4a7aff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .author {
    font-weight: bold;
    text-align: right;
}

/* Hero Banner Area */
.hero-banner {
    background-color: rgba(41, 60, 108, 0.95);
    padding: 80px 0;
    position: relative;
    background-image: url('../assets/images/texture-bg.png');
    background-blend-mode: overlay;
    margin-bottom: 0;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
}

.hero-banner .container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero-banner p {
    color: white;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.95;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.skill-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.skill-icon {
    font-size: 24px;
    color: #4a7aff;
    margin-bottom: 15px;
}

.skill-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.skill-card p {
    color: #666;
    line-height: 1.5;
}

/* Feature Item */
.feature-item {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    color: #4a7aff;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    line-height: 1.5;
}

/* Modern Cards */
.modern-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.modern-card {
    position: relative;
    width: 330px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modern-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(33, 52, 96, 0.9) 60%, rgba(33, 52, 96, 0.6) 80%, rgba(33, 52, 96, 0.1));
    padding: 25px 20px;
    color: white;
    transition: all 0.4s ease;
    height: 120px;
    overflow: hidden;
}

.modern-card:hover .card-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(33, 52, 96, 0.95), rgba(33, 52, 96, 0.85));
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    margin-right: 15px;
    flex-shrink: 0;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.card-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modern-card:hover .card-content {
    opacity: 1;
    transform: translateY(0);
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-button {
    margin-top: 20px;
    padding: 8px 15px;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: white;
    color: #333;
}

/* Journey Timeline Styles */
.journey-timeline-container {
    padding-top: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
}

.journey-timeline-container::before {
    display: none;
}

.journey-timeline {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.timeline-stage {
    flex: 1 1 auto;
    min-width: 240px;
    max-width: 300px;
}

.journey-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px 15px 20px;
    padding-top: 45px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

.journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: #f5821f;
}

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

.journey-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.journey-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.journey-card .timeline-icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5821f;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(245, 130, 31, 0.2);
    z-index: 2;
}

@media (max-width: 1100px) {
    .journey-timeline {
        flex-wrap: wrap;
    }
    
    .timeline-stage {
        flex: 1 1 calc(50% - 10px);
        min-width: 220px;
    }
}

@media (max-width: 576px) {
    .timeline-stage {
        flex: 1 1 100%;
    }
}


.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-button {
    background-color: #29A9E1;
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(78, 115, 223, 0.25);
}

.action-button:hover {
    background-color: rgb(30, 34, 3);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(78, 115, 223, 0.3);
}

.action-button .icon {
    margin-right: 8px;
    font-size: 20px;
} 