﻿
/* CSS for section section:impact-glance */
.impact-glance-section {
    padding: 100px 0;
}

.impact-glance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-title {
    font-family: var(--font-secondary);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

    .impact-title i {
        font-style: italic;
    }

.impact-subtitle {
    font-size: 19px;
    color: var(--color-text-gray);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
}

.stat-card {
    text-align: center;
    border-left: 1px solid #b1b1b1;
}

    .stat-card:nth-child(odd) {
        border-left: none;
    }

.stat-number {
    font-size: 62px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom:0;
}

.stat-label {
    font-size: 15px;
    color: #585959;
}

.impact-map-wrapper {
    position: relative;
/*    width: 575px;
    height: 593px;*/
    margin: 0 auto;
}

.map-base {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
}

.map-state {
    font-size: 28px;
    font-weight: 600;
    background: -webkit-linear-gradient(#08BEFF, #47B5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 2px 8px;
    display: inline-block;
}

.map-details {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .impact-glance-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .impact-stats {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }



    .impact-map-wrapper {
        transform: scale(0.8);
        transform-origin: top center;
    }
}

@media (max-width: 576px) {
    .stat-card {
        border-left: none;
    }
}






/* CSS for section section:impact-details */
.impact-details-section {
    padding: 80px 0;
}

.impact-tabs {
    display: flex;
    justify-content: center;

    margin-bottom: 80px;
}

.tab-item {
    padding: 16px 40px;
    font-size: 22px;
    color: var(--color-text-dark);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-align: center;
    flex-grow: 1;
    max-width: 553px;
}

    .tab-item.active {
        border-color: var(--color-primary);
        font-weight: 500;
    }

.impact-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

#impact-stats .success-title {
    font-size: 25px
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-title {
    font-family: var(--font-secondary);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

    .project-title .location {
        font-weight: 400;
    }

.project-description {
    font-size: 17px;
    line-height: 1.5;
    color: #525252;
    margin-bottom: 25px;
    padding-top:10px;
}

.read-more {
    font-size: 15px;
    font-weight: 600;
    color: #7bba61;
}

.project-financials {
    display: flex;
    flex-direction: column;
    /*gap: 40px;*/
}

.financial-item .amount {
    font-size: 24px;
    font-weight: 700;
    background: -webkit-linear-gradient(#08BEFF, #47B5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    padding: 2px 0px;
    display: inline-block;
    
}

.financial-item .year {
    font-size: 14px;
    font-weight: 400;
    color: #696969 !important;
}

.financial-item .description {
    font-size: 14px;
    color: #2D2D2D;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.merged-image {
    position: relative;
}

    .merged-image .img-back {
        position: absolute;
        top: -61px;
        left: -126px;
        width: 794px;
        height: 530px;
        z-index: 1;
    }

    .merged-image .img-front {
        position: relative;
        z-index: 2;
        background-color: #f0f0f0;
        padding: 20px;
        border-radius: 4px;
    }

@media (max-width: 992px) {
    .project-info {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .merged-image .img-back, .merged-image .img-front {
        position: static;
        width: 100%;
        height: auto;
    }
}


.cu-tab {
    /* text-decoration: none !important; */
    margin: 0;
    padding: 0 0 20px !important;
    list-style: none;
    display: table;
     table-layout: fixed; 
    width: 100%;
    border: none;
    color: #000;
}

.cu-item {
    
    display: table-cell;
}
.divider {
    position: relative;
}
    .divider:after {
        content: "";
        position: absolute;
        width: 1px;
        height: 65%;
        right: 0;
        opacity: 0.5;
        top: 5px;
        background-color: #afafaf;
    }


.cu-tab .cu-link {
    border-bottom: solid;
    border-color: #fff #fff #dee2e6 #fff !important;
    font-size:22px;
    font-weight: normal;
    padding: 20px 0;
}
.cu-link:focus-visible {
    outline: 0;
    /*box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);*/
}
    .cu-tab .cu-link.active {

        background: -webkit-linear-gradient(#08BEFF, #47B5FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-color: transparent;
        border-bottom: solid;
        font-weight: bold;
        border-color: #fff #fff #47B5FF #fff !important;
    }
.cu-tab .cu-link:hover {
    background: -webkit-linear-gradient(#08BEFF, #47B5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent;
    border-bottom: solid;
    font-weight: bold;
    border-color: #fff #fff #47B5FF #fff !important;
}
.cu-tab a {
    color: #2D2D2D;
}

.dam-card .card-title {
    color: #2D2D2D !important;
    font-weight:500;
    margin-bottom:1.5rem;
}
.dam-card-img {
    border-radius: 10px;
    width: 100%
}
.image-wrapper{
    position:relative;
}
.play-icon{
    position:absolute;
    left:45%;
    top:45%;
    cursor:pointer;
}
.dam-card-video {
    border-radius: 10px;
    width: 100%;
    height: 200px;
}

.state-list {
    /*box-shadow: 2px 0px #EEEEEE;*/
    display: block;
    position: sticky;
    top: 120px;
}


.state-list p {
    font-size: 18px;
    color: #2D2D2D;
}
.list-item {
    box-shadow: 2px 2px #EEEEEE;
}

    .list-item.active {
        background-color: #F5FCFF;
        border-bottom: 2px solid #2ABAFF;
        box-shadow: 0px 2px #EEEEEE;
        font-weight: 600;
    }
    .list-item:hover {
        background-color: #F5FCFF;
        border-bottom: 2px solid #2ABAFF;
        /*font-weight:600;*/
        cursor:pointer;
    }


.Checkdams h1{
    max-width:800px;
}

.checkdams-table tfoot th {
    background-color: #E5F8FF;
    color: #2D2D2D;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 500;
    position: sticky;
    bottom: -43px;
    z-index: 999;
}
.checkdams-table thead th {
    background-color: #E5F8FF;
    color: #2D2D2D;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index:999;
}
.table-responsive{
    height:80vh;
}
#checkdam-table thead {
    display: table-header-group;
}
    .checkdams-table thead th span {
        color: #767676;
        font-size:14px;
    }
.checkdams-table tbody tr td {
    text-align: left;
    vertical-align: middle;
    font-size:15px;
}

.table td, .table th {
    padding: .75rem;
}
.checkdams-table tbody, .checkdams-table td, .checkdams-table th {
    border-width: 1px !important;
}
.states-tab {
    /* text-decoration: none !important; */
    margin: 0;
    padding: 0 0 20px !important;
    list-style: none;
    display: table;
    table-layout: fixed;
    width: 100%;
    border: none;
    color: #000;
}

.state-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    box-shadow: 2px 2px #EEEEEE;
}



.states-tab .state-link {
    font-size: 22px;
    font-weight: normal;
    padding: 20px 0;
    width: 100%;
}

.state-link:focus-visible {
    outline: 0;
}

.states-tab .state-link.active {
    background-color: #F5FCFF;
    font-weight: 600;
}

.states-tab .state-link:hover {
    background-color: #F5FCFF;
    font-weight: 600;
}

.state-list-item:has(.state-link.active) {
    background-color: #F5FCFF;
    border-bottom: 2px solid #2ABAFF;
    box-shadow: 0px 2px #EEEEEE;
    font-weight: 600;
}

.state-list-item:has(.state-link:hover) {
    background-color: #F5FCFF;
    border-bottom: 2px solid #2ABAFF;
    font-weight: 600;
    cursor: pointer;
}

.state-link {
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
}

.states-tab a {
    color: #2D2D2D;
}

.nav-tabs .state-link:focus, .nav-tabs .state-link:hover {
    border: none !important;
}

.state-link:focus-visible {
    outline: 0;
    box-shadow: none;
}

.state-link.active {
    border: none !important;
}

.slider1 img{
    padding-bottom:10px;
}

#impact-video h4{
    font-size:25px;
}
#impact-video .para-magic-letter{
    border-bottom: 2px solid #47B5FF;
}
.dam-card{
    margin-bottom:20px;
}