/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 20 2025 | 13:57:33 */
/* Center of Excellence - Page Styles */
/* All classes prefixed with 'coe-page-' to avoid conflicts */

/* CSS Variables */
:root {
    /* Brand Colors */
    --excellence-blue: #1B358A;
    --excellence-yellow: #FECA0A;
    --dark-blue: #112657;
    --light-blue: #D1D9F0;
    --light-gray: #F5F5F5;
    --medium-gray: #767676;
    --corner-radius: 18px;
    --shadow-light: 0 4px 14px rgba(27, 53, 138, 0.12);
    --shadow-medium: 0 6px 20px rgba(27, 53, 138, 0.15);
    --shadow-strong: 0 8px 28px rgba(27, 53, 138, 0.18);
}

/* Base Styles */
.coe-page-wrapper {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
}

.coe-page-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Hero Section */
.coe-page-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
    padding: 100px 0 120px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.coe-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--excellence-yellow) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.coe-page-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.coe-page-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--excellence-blue);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.coe-page-subtitle {
    font-size: 1.375rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* Content Sections */
.coe-page-section {
    padding: 15px 0;
}

/* Specific sections with reduced padding */
#coe-page-references-section {
    padding: 7px 0 !important;
}

#coe-page-cta-section {
    padding: 7px 0 !important;
}

#coe-page-discover-section {
    padding: 7px 0 !important;
}

.coe-page-content-box {
    background: #ffffff;
    border-radius: var(--corner-radius);
    padding: 50px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.coe-page-content-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.coe-page-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    position: relative;
}

.coe-page-section-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 45px;
    background: linear-gradient(180deg, var(--excellence-yellow) 0%, var(--excellence-blue) 100%);
    margin-right: 20px;
    border-radius: 3px;
}

.coe-page-section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--excellence-blue);
    margin-bottom: 25px;
}

/* Card Grid System */
.coe-page-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.coe-page-card {
    background: #ffffff;
    border-radius: var(--corner-radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(209, 217, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.coe-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--excellence-yellow) 0%, var(--excellence-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coe-page-card:hover::before {
    opacity: 1;
}

.coe-page-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--light-blue);
    transform: translateY(-5px);
}

.coe-page-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--excellence-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(27, 53, 138, 0.25);
}

.coe-page-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.coe-page-card-content {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Quote Section */
.coe-page-quote-box {
    background: linear-gradient(135deg, #e8f2fc 0%, #f5f8ff 100%);
    border-radius: var(--corner-radius);
    padding: 40px;
    margin: 30px 0;
    border-left: 6px solid var(--excellence-blue);
    position: relative;
}

.coe-page-quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--excellence-yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.coe-page-quote-text {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coe-page-quote-author {
    font-size: 0.95rem;
    color: var(--excellence-blue);
    font-weight: 600;
    text-align: right;
}

/* Feature Grid */
.coe-page-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coe-page-feature-card {
    background: linear-gradient(135deg, var(--excellence-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border-radius: var(--corner-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coe-page-feature-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--excellence-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.coe-page-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 53, 138, 0.3);
}

.coe-page-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.coe-page-feature-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Important Notice Box */
.coe-page-notice {
    background-color: #fff9e6;
    border: 2px solid var(--excellence-yellow);
    color: var(--dark-blue);
    padding: 25px;
    border-radius: var(--corner-radius);
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.coe-page-notice-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--excellence-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-blue);
}

.coe-page-notice-content {
    flex: 1;
}

.coe-page-notice strong {
    color: var(--excellence-blue);
}

/* References Section */
.coe-page-references {
    background: #ffffff;
    border-radius: var(--corner-radius);
    padding: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.coe-page-references-list {
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    list-style-type: none;
    counter-reset: ref-counter;
}

.coe-page-references-list li {
    margin-bottom: 1.25rem;
    color: var(--dark-blue);
    padding-left: 3em;
    position: relative;
}

.coe-page-references-list li::before {
    content: counter(ref-counter) ".";
    counter-increment: ref-counter;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--excellence-blue);
    width: 2.5em;
    text-align: left;
}

.coe-page-references-list a {
    color: var(--excellence-blue);
    text-decoration: none;
    word-break: break-word;
    transition: all 0.2s ease;
}

.coe-page-references-list a:hover {
    text-decoration: underline;
    color: var(--dark-blue);
}

.coe-page-hidden-reference {
    display: none;
}

.coe-page-load-more-container {
    text-align: center;
    margin: 3rem 0 1rem 0;
}

#coe-page-load-more-references {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--excellence-blue);
    color: var(--excellence-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

#coe-page-load-more-references:hover {
    background-color: var(--excellence-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 53, 138, 0.2);
}

#coe-page-load-more-references.coe-page-hidden {
    display: none;
}

/* CTA Section */
.coe-page-cta {
    background: linear-gradient(135deg, var(--excellence-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0;
    border-radius: var(--corner-radius);
    margin: 15px auto;
    text-align: center;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.coe-page-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--excellence-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.coe-page-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    z-index: 1;
}

.coe-page-cta-text {
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.coe-page-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 1;
}

.coe-page-btn-primary {
    background: var(--excellence-yellow);
    color: var(--dark-blue);
}

.coe-page-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254, 202, 10, 0.3);
    background: #ffd633;
}

.coe-page-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.coe-page-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--excellence-yellow);
    color: var(--excellence-yellow);
}

/* Discover Cards */
.coe-page-discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.coe-page-discover-card {
    background: #ffffff;
    border-radius: var(--corner-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 217, 240, 0.3);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.coe-page-discover-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--light-blue);
    transform: translateY(-8px);
}

.coe-page-discover-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.coe-page-discover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coe-page-discover-card:hover .coe-page-discover-image img {
    transform: scale(1.08);
}

.coe-page-discover-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.coe-page-discover-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.coe-page-discover-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.coe-page-learn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--excellence-blue);
    align-self: flex-start;
    gap: 8px;
}

.coe-page-learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.coe-page-discover-card:hover .coe-page-learn-more {
    background: var(--excellence-blue);
    color: white;
}

.coe-page-discover-card:hover .coe-page-learn-more::after {
    transform: translateX(5px);
}

/* Styled Lists */
.coe-page-styled-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.coe-page-styled-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.7;
}

.coe-page-styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--excellence-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--excellence-blue);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coe-page-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .coe-page-main-title {
        font-size: 2.5rem;
    }
    
    .coe-page-content-box {
        padding: 35px 25px;
    }
    
    .coe-page-section-title {
        font-size: 1.75rem;
    }
    
    .coe-page-card-grid,
    .coe-page-discover-grid {
        grid-template-columns: 1fr;
    }
    
    .coe-page-cta-title {
        font-size: 2rem;
    }
    
    .coe-page-cta {
        padding: 60px 20px;
    }
    
    .coe-page-cta .coe-page-btn {
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .coe-page-container {
        padding: 0 15px;
    }
    
    .coe-page-main-title {
        font-size: 2rem;
    }
    
    .coe-page-content-box {
        padding: 25px 20px;
    }
    
    .coe-page-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        margin: 8px 5px;
        display: block;
        width: calc(100% - 10px);
        text-align: center;
    }
    
    .coe-page-cta .coe-page-btn {
        margin-top: 20px !important;
    }
}

/* UIkit Compatibility Styles */
.coe-page-wrapper .uk-grid {
    margin-left: -17.5px;
    margin-right: -17.5px;
}

.coe-page-wrapper .uk-grid > * {
    padding-left: 17.5px;
    padding-right: 17.5px;
}

/* Animations */
@keyframes coe-page-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coe-page-animate-on-scroll {
    animation: coe-page-fadeInUp 0.8s ease-out;
}