/* --- Programs Page Styles --- */

/* --- Executive Showcase Programs Style --- */
.programs-executive {
    background: #ffffff;
}

.program-exec-row {
    margin-bottom: 80px;
}

/* Image Wrap with Glowing Border */
.program-exec-image-wrap {
    padding: 10px;
    background: #fff;
    border-radius: 30px;
    border: 2px solid #f25334; /* Play Group Orange */
    box-shadow: 0 10px 30px rgba(242, 83, 52, 0.15); /* Orange Glow */
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}

.program-exec-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 1;
}

.program-exec-image-wrap:hover::before {
    left: 150%;
}

.program-exec-image-wrap:hover {
    transform: translateY(-10px) scale(1.03) rotate(0.5deg);
    box-shadow: 0 30px 60px rgba(242, 83, 52, 0.3);
}

.program-exec-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-exec-image-wrap:hover .program-exec-img {
    transform: scale(1.1);
}

/* Content Details */
.program-exec-content {
    position: relative;
}

.program-exec-tag {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    background: #f25334;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.program-exec-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1f2235;
    margin-bottom: 20px;
}

.program-exec-divider {
    width: 60px;
    height: 5px;
    background: #f25334;
    border-radius: 3px;
    margin-bottom: 30px;
}

.program-exec-lead {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: #1f2235;
    margin-bottom: 20px;
}

.program-exec-content p:not(.program-exec-lead) {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.program-exec-btn {
    font-weight: 800;
    color: #ffffff;
    background: #f25334;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 12px; /* User requested border-radius design */
    box-shadow: 0 10px 20px rgba(242, 83, 52, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-exec-btn i {
    transition: transform 0.4s ease;
}

.program-exec-btn:hover {
    background: #1f2235;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 34, 53, 0.3);
}

.program-exec-btn:hover i {
    transform: translateX(8px);
}

/* Color Themes for Buttons */
/* Blue Theme */
.exec-color-blue { border-color: #2390ff; box-shadow: 0 10px 30px rgba(35, 144, 255, 0.15); }
.exec-color-blue:hover { box-shadow: 0 30px 60px rgba(35, 144, 255, 0.35); }
.tag-blue { background-color: #2390ff; }
.div-blue { background-color: #2390ff; }
.btn-blue { background-color: #2390ff; box-shadow: 0 10px 20px rgba(35, 144, 255, 0.2); }

/* Teal Theme */
.exec-color-teal { border-color: #38b2ac; box-shadow: 0 10px 30px rgba(56, 178, 172, 0.15); }
.exec-color-teal:hover { box-shadow: 0 30px 60px rgba(56, 178, 172, 0.35); }
.tag-teal { background-color: #38b2ac; }
.div-teal { background-color: #38b2ac; }
.btn-teal { background-color: #38b2ac; box-shadow: 0 10px 20px rgba(56, 178, 172, 0.2); }

/* Orange (UKG) Theme */
.exec-color-orange { border-color: #f6ad55; box-shadow: 0 10px 30px rgba(246, 173, 85, 0.15); }
.exec-color-orange:hover { box-shadow: 0 30px 60px rgba(246, 173, 85, 0.35); }
.tag-orange { background-color: #f6ad55; }
.div-orange { background-color: #f6ad55; }
.btn-orange { background-color: #f6ad55; box-shadow: 0 10px 20px rgba(246, 173, 85, 0.2); }

/* Purple Theme */
.exec-color-purple { border-color: #9f7aea; box-shadow: 0 10px 30px rgba(159, 122, 234, 0.15); }
.exec-color-purple:hover { box-shadow: 0 30px 60px rgba(159, 122, 234, 0.35); }
.tag-purple { background-color: #9f7aea; }
.div-purple { background-color: #9f7aea; }
.btn-purple { background-color: #9f7aea; box-shadow: 0 10px 20px rgba(159, 122, 234, 0.2); }

/* Section Divider */
.exec-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
}

/* Responsive */
@media (max-width: 991px) {
    .program-exec-title { font-size: 38px; }
    .program-exec-content { margin: 40px 0 0 !important; }
    .flex-row-reverse { flex-direction: column !important; }
}

@media (max-width: 767px) {
    .program-exec-title { font-size: 32px; }
    .program-exec-lead { font-size: 18px; }
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .story-main-title { font-size: 48px; }
    .story-title { font-size: 36px; }
    .row-reverse { flex-direction: column !important; }
    .story-content { margin: 40px 0 0 !important; }
    .story-features { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .story-main-title { font-size: 36px; }
    .story-description-box { font-size: 17px; }
    .glass-age-badge { padding: 10px 20px; }
}
