/* Global Background Fix */
main, body {
    background-color: #ffffff !important;
}

/* Hero Zoom Fix */
.scholarships-page-hero .hero-photo {
    background-size: 100%;
    background-position: center top;
}

.sh-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.sh-breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.sh-breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* Hero Bottom Bar */
.sh-bottom-bar {
    position: relative;
    z-index: 10;
    margin-top: -25px; /* Slight overlap with the hero section */
    padding: 0 0 40px; 
}

.sh-bar-grid {
    background: #01233c;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.sh-bar-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 30px;
    position: relative;
}

/* Vertical Dividers */
.sh-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.sh-bar-icon {
    width: 64px;
    height: 64px;
    border: 1.5px solid #b8956a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8956a;
    flex-shrink: 0;
    padding: 14px;
}

.sh-bar-icon svg {
    width: 100%;
    height: 100%;
}

.sh-bar-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sh-bar-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.sh-bar-info p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 300;
}

/* Responsive Bar */
@media (max-width: 1100px) {
    .sh-bar-grid { padding: 30px 15px; }
    .sh-bar-item { padding: 0 15px; }
}

@media (max-width: 992px) {
    .sh-bottom-bar { margin-top: 0; padding: 40px 0; }
    .sh-bar-grid { flex-direction: column; align-items: flex-start; gap: 30px; }
    .sh-bar-item { width: 100%; padding: 0; }
    .sh-bar-item:not(:last-child)::after { display: none; }
}

/* Programs Section */
.scholarship-programs-section {
    background: #fff;
    text-align: center;
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b8956a;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.scholarship-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 50px 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scholarship-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(1, 35, 60, 0.08);
    border-color: #b8956a;
}

.sc-icon {
    width: 80px;
    height: 80px;
    background: #faf6ef;
    color: #b8956a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.scholarship-card:hover .sc-icon {
    background: #b8956a;
    color: #fff;
}

.sc-icon svg { width: 36px; height: 36px; }

.scholarship-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #01233c;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.scholarship-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sc-coverage {
    background: #fdfaf5;
    border: 1px solid rgba(184, 149, 106, 0.1);
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.scholarship-card:hover .sc-coverage {
    background: #01233c;
    border-color: #01233c;
}

.sc-coverage span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #b8956a;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.sc-coverage strong {
    display: block;
    font-size: 2.2rem;
    color: #01233c;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.scholarship-card:hover .sc-coverage strong {
    color: #fff;
}

.sc-coverage small {
    font-size: 0.9rem;
    color: #888;
    transition: color 0.3s;
}

.scholarship-card:hover .sc-coverage small {
    color: rgba(255,255,255,0.7);
}

.sc-footer {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.btn-view-eligibility {
    background: #01233c;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-view-eligibility:hover {
    background: #0d1b2a;
    transform: translateY(-2px);
}

/* Info Section */
.scholarship-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.scholarship-programs-section .container,
.scholarship-info-section .container,
.scholarship-cta-banner .container,
.sh-help-section-container .container {
    max-width: 1220px;
    padding: 0 48px;
    margin: 0 auto;
}

.info-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: 20px;
}

.info-col {
    background: #fff;
    padding: 0 60px 0 0; /* Align first column to the left edge */
    border: none;
    border-right: 1px solid #eee;
}

.info-col:nth-child(2) {
    padding: 0 60px;
}

.info-col:last-child {
    padding: 0 0 0 60px; /* Align last column to the right edge */
    border-right: none;
}

.info-col:hover {
    box-shadow: none;
}

.info-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 12px;
}

.info-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #b8956a;
}
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: #1a1a1a;
}

/* List Styles */
.premium-list { list-style: none; padding: 0; }
.premium-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.check-icon { 
    color: #b8956a; 
    flex-shrink: 0;
    margin-top: 3px;
}

.check-circle {
    width: 24px;
    height: 24px;
    background: #b8956a; /* Solid gold from screenshot */
    color: #fff; /* White check */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-circle svg { width: 14px; height: 14px; }

.eligibility-list li {
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background: #01233c; /* Dark/Black circle from screenshot */
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.apply-steps li {
    gap: 20px;
    margin-bottom: 30px;
}

.apply-steps::before {
    left: 14px;
}

.date-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: transparent;
    padding: 0;
    border: none;
}

.date-icon {
    width: auto;
    height: auto;
    background: transparent;
    color: #b8956a;
}

.date-info strong {
    font-size: 0.95rem;
    font-family: var(--sans);
    font-weight: 700;
    color: #1a1a1a;
}

.date-info span {
    font-size: 0.85rem;
    color: #666;
}

.info-box {
    background: #ebf3f9; /* Light blue from screenshot */
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
    border-left: none; /* Removed accent border */
}

.info-box-icon {
    color: #01233c;
    flex-shrink: 0;
}

.link-apply-now {
    color: #b8956a;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #b8956a; /* Underlined in screenshot */
    padding-bottom: 2px;
}

.date-item:hover {
    border-color: #b8956a;
    transform: translateX(5px);
}

.date-icon { 
    color: #b8956a; 
    flex-shrink: 0;
    background: #fdfaf5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.date-info strong { 
    display: block; 
    font-size: 1rem; 
    color: #01233c;
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}
.date-info span { font-size: 0.9rem; color: #666; font-weight: 500; }

.info-box {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    border-left: 4px solid #01233c;
}

.info-box-icon { color: #01233c; flex-shrink: 0; }

.link-apply-now {
    color: #b8956a;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 1.05rem;
}

.link-apply-now:hover {
    text-decoration: underline;
}

/* CTA Banner Boxed */
.scholarship-cta-banner {
    padding: 40px 0 80px;
}

.cta-box {
    background: #01233c;
    padding: 50px 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-text {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 700px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(184, 149, 106, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8956a;
    flex-shrink: 0;
}

.cta-text p { font-size: 1.2rem; margin: 0; opacity: 0.9; }

.btn-cta-gold {
    background: #b8956a;
    color: #fff;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-cta-gold:hover {
    background: #a3845d;
    transform: translateY(-3px);
}

/* Need Help Bar (Scholarship Variant) */
.sh-help-bar {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sh-help-left {
    max-width: 300px;
}

.sh-help-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.sh-help-left p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.sh-help-contacts {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}

.sh-help-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
    white-space: nowrap; /* Prevent phone and timing from wrapping */
    flex-shrink: 0;
}

.sh-help-contact svg { color: #b8956a; }

.btn-sh-contact {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap; /* Prevent button text from wrapping */
    flex-shrink: 0;
}

.btn-sh-contact:hover {
    background: #01233c;
    color: #fff;
    border-color: #01233c;
}

/* Responsive */
@media (max-width: 1200px) {
    .sh-title { font-size: 3rem; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .info-cols { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .scholarships-hero-inner { flex-direction: column; text-align: center; }
    .sh-desc { margin: 0 auto 25px; }
    .sh-image { width: 100%; }
    .sh-image img { border-radius: 12px; }
    .sh-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; gap: 30px; text-align: center; }
    .cta-text { flex-direction: column; }
    .sh-help-bar { flex-direction: column; text-align: center; }
    .sh-help-contacts { flex-direction: column; gap: 15px; }
}

@media (max-width: 600px) {
    .sh-bar-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
}
