/* -------------------------------------------------------------
   Custom Theme Styles for National Champions of Change Awards
   ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
:root {
    --bsi-ncca-primary-green: #004E1A;
    --bsi-ncca-bg-green: #004E1A;
    --bsi-ncca-bg-gradient: linear-gradient(135deg, #004E1A 0%, #003612 100%);
    --bsi-ncca-white: #ffffff;
    --bsi-ncca-black: #000000;
    --bsi-ncca-light-text: #e2f1e6;

    --bsi-ncca-btn-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    --bsi-ncca-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bsi-ncca-font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-oswal: "Oswald", system-ui;
    --bsi-ncca-transition-speed: 0.3s;
    --bsi-ncca-transition-curve: cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bsi24-wrapper {
	max-width: 1300px;
	width: 100%;
	margin-inline: auto;
}
.bsi24-backtondtv a, .bsi24-backtondtv a:visited{
    color: #fff;
}

.bsi-ncca {
    position: relative;
    background: var(--bsi-ncca-bg-gradient);
    color: var(--bsi-ncca-white);
    font-family: var(--bsi-ncca-font-primary);
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}


.bsi-ncca-hero {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.bsi-ncca-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.bsi-ncca-hero-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.1fr;
    gap: 30px;
    align-items: center;

    position: relative;
}

.bsi-ncca-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.bsi-ncca-col-badge {
    align-items: center;
}

.bsi-ncca-badge-wrapper {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bsi-ncca-badge-img {
    width: 100%;
    max-height: 420px;
    height: auto;
    object-fit: contain;
}

.bsi-ncca-col-info {
    justify-content: center;
}

.bsi-ncca-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 580px;
}

.bsi-ncca-description {
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 23px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--bsi-ncca-light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bsi-ncca-action-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bsi-ncca-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bsi-ncca-white);
    color: var(--bsi-ncca-primary-green);
    font-family: var(--bsi-ncca-font-primary);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 10px;

    transition: all var(--bsi-ncca-transition-speed) var(--bsi-ncca-transition-curve);
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
}

.bsi-ncca-apply-btn span {
    position: relative;
    z-index: 2;
}

.bsi-ncca-apply-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
    background-color: #f7fff9;
    color: #004E1A;
}

.bsi-ncca-apply-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.bsi-ncca-tc-link {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.bsi-ncca-tc-link:hover {
    color: var(--bsi-ncca-white);
    text-decoration: underline;
} 
.bsi-ncca-col-image {
    align-self: end;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 50px;
}

.bsi-ncca-image-wrapper {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
}

.bsi-ncca-hero-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}



/* -------------------------------------------------------------
   Responsive Styles for IPad & Mobile Viewports
   ------------------------------------------------------------- */

/* Desktop / Laptop Screen Adaptations */
@media (max-width: 1200px) {

    /* -------------------------------------------------------------
   Common Layout Container
   ------------------------------------------------------------- */
    .bsi-ncca-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .bsi-ncca-hero-container {
        padding: 0 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bsi-ncca-description {
        font-size: 20px;
    }

    .bsi-ncca-badge-wrapper {
        max-width: 100%;
    }
    .bsi-ncca-info-wrapper{
        max-width: 100%;
        text-align: center;
    }
    .bsi-ncca-action-block{
        align-items: center;
    }
    .bsi-ncca-image-wrapper{
        justify-content: center;
    }
}

/* Mobile Viewports (max-width: 767px) */
@media (max-width: 767px) {
    .bsi-ncca-section {
        padding: 40px 0;
    }
    .bsi-ncca-container {
        padding: 0 24px;
    }

    .bsi-ncca-faq-question {
        font-size: 16px;
        padding-right: 16px;
    }

    .bsi-ncca-faq-header {
        padding: 16px 0;
    }

    .bsi-ncca-faq-answer {
        padding-bottom: 16px;
        font-size: 13.5px;
        line-height: 1.5;
    }

    .bsi-ncca-winners-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
    }

    .bsi-ncca-section-title {
        font-size: 32px;
        margin-bottom: 24px;
        text-align: center;
    }

    .bsi-ncca-winner-name {
        font-size: 15px;
    }

    .bsi-ncca-winner-role {
        font-size: 11px;
    }

    .bsi-ncca-winners-banner {
        padding: 20px 20px 0px 20px;
    }

    .bsi-ncca-winners-banner .bsi-ncca-section-title {
        font-size: 38px;
        color: var(--bsi-ncca-white);
    }

    .bsi-ncca-winners-text {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .bsi-ncca-winners-img-wrapper {
        top: -50px;
        max-width: 280px;
        height: 140px;
    }

    /* -------------------------------------------------------------
   Common Layout Container
   ------------------------------------------------------------- */
    .bsi-ncca-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .bsi-ncca-hero-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 10px;
    }

    .bsi-ncca-col-badge {
        margin-bottom: 10px;
    }

    .bsi-ncca-badge-wrapper {
        max-width: 180px;
    }

    .bsi-ncca-col-info {
        padding-bottom: 20px;
    }

    .bsi-ncca-info-wrapper {
        gap: 24px;
        text-align: center;
    }

    .bsi-ncca-action-block {
        align-items: center;
    }

    .bsi-ncca-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .bsi-ncca-apply-btn {
        font-size: 17px;
        padding: 12px 36px;
        border-radius: 8px;
    }

    .bsi-ncca-tc-link {
        font-size: 12px;
    }

    .bsi-ncca-image-wrapper {

        align-items: center;
        justify-content: center;
    }

    .bsi-ncca-col-image {
        display:none
    }

  

}

/* Extra Small Screen Optimization */
@media (max-width: 360px) {
    .bsi-ncca-badge-wrapper {
        max-width: 150px;
    }

    .bsi-ncca-description {
        font-size: 15px;
    }

    .bsi-ncca-hero-img {
        max-height: 240px;
    }
}

/* -------------------------------------------------------------
   Winners List Section Styles
   ------------------------------------------------------------- */
.bsi-ncca-winners-list {
    background-color: var(--bsi-ncca-white);
}

.bsi-ncca-section-title {
    font-family: var(--bsi-ncca-font-primary);
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.bsi-ncca-winners-list-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 28px 20px;
    width: 100%;
}

.bsi-ncca-winner-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bsi-ncca-winner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bsi-ncca-winner-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.bsi-ncca-winner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--bsi-ncca-transition-curve);
}

.bsi-ncca-winner-card:hover .bsi-ncca-winner-img {
    transform: scale(1.06);
}

.bsi-ncca-winner-name {
    font-family: var(--bsi-ncca-font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--bsi-ncca-black);
    line-height: 1.3;
}

.bsi-ncca-winner-role {
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #666666;
}

/* -------------------------------------------------------------
   Winners Section Styles
   ------------------------------------------------------------- */
.bsi-ncca-winners {
    background-color: var(--bsi-ncca-white);
}

.bsi-ncca-winners-banner {
    background-color: var(--bsi-ncca-primary-green);
    border-radius: 20px;
    padding: 15px 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bsi-ncca-winners-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    z-index: 5;
    gap: 5px;
}

.bsi-ncca-winners-banner .bsi-ncca-section-title {
    font-size: 32px;
    color: var(--bsi-ncca-white);
    margin-bottom: 0;
}

.bsi-ncca-winners-text {
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 16px;
    line-height: 1.4;
    color: var(--bsi-ncca-light-text);
    font-weight: 300;
}

.bsi-ncca-winners-img-wrapper {
    position: absolute;
    right: 0px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    z-index: 10;
}

.bsi-ncca-winners-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* -------------------------------------------------------------
   Common Layout Section
   ------------------------------------------------------------- */
.bsi-ncca-section {
    padding: 40px 0;
    width: 100%;
}

/* -------------------------------------------------------------
   Jury Section Styles
   ------------------------------------------------------------- */
.bsi-ncca-jury {
    background-color: var(--bsi-ncca-white);
    color: #333333;
}

.bsi-ncca-jury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
}

.bsi-ncca-jury-card {
    position: relative;
    border-radius: 20px;
  
    overflow: hidden;
    transition: transform 0.4s var(--bsi-ncca-transition-speed) var(--bsi-ncca-transition-curve);

}

.bsi-ncca-jury-img-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
      background: linear-gradient(180deg, #A9A9A9 0%, #E2E0E0 100%);
    justify-content: center;
    overflow: hidden;
}

.bsi-ncca-jury-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    transition: transform 0.4s var(--bsi-ncca-transition-curve);
}

.bsi-ncca-jury-card:hover .bsi-ncca-jury-img {
    transform: scale(1.05);
}

.bsi-ncca-grayscale {
    filter: grayscale(100%);
}

.bsi-ncca-jury-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px 20px;
    background: linear-gradient(180deg, rgba(0, 54, 18, 0) 0%, rgba(0, 54, 18, 0.7) 40%, rgba(0, 40, 12, 0.95) 100%);
    color: var(--bsi-ncca-white);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.bsi-ncca-jury-name {
    font-family: var(--bsi-ncca-font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--bsi-ncca-white);

}

.bsi-ncca-jury-role {
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--bsi-ncca-white);
    margin: 0;
}

/* -------------------------------------------------------------
   FAQ Section Styles
   ------------------------------------------------------------- */
.bsi-ncca-faq {
    background-color: var(--bsi-ncca-white);
}

.bsi-ncca-faq-list {
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

.bsi-ncca-faq-item {
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.bsi-ncca-faq-header {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.bsi-ncca-faq-question {
    font-family: var(--bsi-ncca-font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.bsi-ncca-faq-header:hover .bsi-ncca-faq-question {
    color: var(--bsi-ncca-primary-green);
}

.bsi-ncca-faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #555555;
    transition: transform 0.3s var(--bsi-ncca-transition-curve);
}

.bsi-ncca-faq-icon {
    width: 18px;
    height: 18px;
}

/* Rotate plus icon by 45deg to create X shape when checked */
.bsi-ncca-faq-item.bsi-ncca-active .bsi-ncca-faq-icon-wrapper {
    transform: rotate(45deg);
    color: var(--bsi-ncca-primary-green);
}

.bsi-ncca-faq-answer {
    display:grid;
    grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    color: #444444;
    font-family: var(--bsi-ncca-font-secondary);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    
}
.bsi-ncca-faq-ans-inner {
    padding: 0 0 24px 0;
    overflow: hidden;
  transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bsi-ncca-faq-item.bsi-ncca-active .bsi-ncca-faq-answer {
    grid-template-rows: 1fr;
    animation: bsiNccaFaqFadeInUp 0.4s var(--bsi-ncca-transition-curve) forwards;
}

@keyframes bsiNccaFaqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet & iPad Portrait Adaptations */
@media (max-width: 1024px) {
    .bsi-ncca-section {
        padding: 30px 0;
    }
    .bsi-ncca-container {
        padding: 0 40px;
    }

    .bsi-ncca-faq-question {
        font-size: 18px;
    }

    .bsi-ncca-faq-header {
        padding: 20px 0;
    }

    .bsi-ncca-faq-answer {
        padding-bottom: 20px;
        font-size: 14.5px;
    }

    .bsi-ncca-winners-list-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 18px;
    }

    .bsi-ncca-section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .bsi-ncca-winners-banner {
        flex-direction: column;
        padding: 20px 20px 0px 20px;
        text-align: center;
        align-items: center;
    }

    .bsi-ncca-winners-content {
        width: 100%;
        align-items: center;
    }

    .bsi-ncca-winners-banner .bsi-ncca-section-title {
        font-size: 26px;
        color: var(--bsi-ncca-white);
        margin-bottom: 8px;
    }

    .bsi-ncca-winners-text {
        font-size: 14px;
        text-align:left;
    }

    .bsi-ncca-winners-img-wrapper {
        position: relative;
        top: auto;
        bottom: 0;

    }

    .bsi-ncca-winners-img {
        object-position: bottom center;
    }

    .bsi-ncca-jury-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
   
}

/* Mobile Screen Adaptations */
@media (max-width: 767px) {
    .bsi-ncca-section {
        padding: 20px 0;
    }
    .bsi-ncca-container {
        padding: 0 24px;
    }

    .bsi-ncca-faq-question {
        font-size: 16px;
        padding-right: 16px;
    }

    .bsi-ncca-faq-header {
        padding: 16px 0;
    }

    .bsi-ncca-faq-answer {
        padding-bottom: 16px;
        font-size: 13.5px;
        line-height: 1.5;
    }

    .bsi-ncca-winners-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 14px;
    }

    .bsi-ncca-section-title {
        font-size: 26px;
        margin-bottom: 16px;

    }

    .bsi-ncca-winner-name {
        font-size: 15px;
    }

    .bsi-ncca-winner-role {
        font-size: 11px;
    }

    .bsi-ncca-jury-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        width:calc(100% + 45px);
        margin: 0 -20px;
        padding: 0 20px 12px 20px;
        scrollbar-width: none;
    }

    .bsi-ncca-jury-grid::-webkit-scrollbar {
        display: none;
    }

    .bsi-ncca-jury-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    .bsi-ncca-jury-name {
        font-size: 16px;
    }

    .bsi-ncca-jury-role {
        font-size: 13px;
    }
    .bsi_spl-tmp header{
    padding: 0;
}
}