section {
    padding: 100px 0;
    position: relative;
}

.light-green {
    background-color: #F6FBF6;
}

.district-stat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
    display: flex;
    flex-direction: column;
}

.card-inner {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    border: 1px solid #EBEDF3;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.stat-item h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0px;
    line-height: normal;
}

.stat-item h2 .unit {
    font-size: 20px;
    font-weight: 600;
    color: #5db85d;
    margin-left: 4px;
}

.stat-item p {
    color: #656565;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.urban-rural {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 0px;
    border-top: 1px dashed #d8d8d8;
    padding-top: 12px;
}

.urban-rural-bottom-border {
    padding-top: 0px;
    border-top: 0;
    border-bottom: 1px dashed #d8d8d8;
    padding-bottom: 15px;
    margin-bottom: 18px;
}

.urban-rural-wrapper {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    justify-content: space-between;
    height: 42px;
}

.urban-box {
    background-color: #9B51E0;
    color: white;
}

.ur-values {
    text-align: right;
    padding: 0 0px;
    position: relative;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ur-values .value {
    font-size: 14px;
    font-weight: 600;
    display: block;
    background: #9b51e1;
    padding: 0 8px;
    position: absolute;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px;
    left: 0px;
}

.rural-box {
    background-color: #38A433;
    color: white;
}

.ur-values .percent {
    font-size: 14px;
    padding: 0 10px;
    position: absolute;
    border-radius: 11px;
    font-weight: 600;
    border-top-left-radius: 11px;
    border-bottom-left-radius: 11px;
    right: 0px;
    background: #39a433;
}

.ur-title-wrapper {
    display: flex;
    gap: 20px;
}

.urban-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ur-disc {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.urban-bgcolor {
    background-color: #7E57C2 !important;
}

.ur-label {
    font-size: 14px;
    font-weight: 600;
}

.urban-color {
    color: #7E57C2;
}

.rural-bgcolor {
    background-color: #38A433;
}

.toggle-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-section.urban-rural {
    padding-top: 30px;
}

.year-select {
    padding: 3px 35px 3px 15px;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    font-size: 13px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Bootstrap form-switch customization */
.toggle-container .form-check-input {
    width: 50px;
    height: 26px;
    background-color: #5cb85c;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin: 0;
}

.toggle-container .form-check-input:checked {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.toggle-container .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(92, 184, 92, 0.25);
    border-color: #5cb85c;
}

.toggle-label {
    font-size: 14px;
    color: #201E1E;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.toggle-label.active {
    color: #5cb85c;
}

.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #191919;
    margin-top: 25px;
    letter-spacing: .4px;
}

.stat-item i {
    font-size: 25px;
    color: #5db85d;
}

.chart-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pie-chart {
    width: 280px;
    height: 280px;
    margin-bottom: 20px;
}

.tooltip {
    position: absolute;
    background: #2c2c2c;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    top: 40%;
    right: -20px;
}

.tooltip::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #2c2c2c;
}

.toggle-section.sectoral-gva {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px dashed #d8d8d8;
    padding-top: 30px;
}

#donutChart {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


/* Tamil Nadu at a Glance Section - Bootstrap Grid Layout */
.tn-glance-section {
    background-color: #ffffff;
    padding: 0;
    min-height: 600px;
    position: relative;
}

.tn-glance-section .row {
    min-height: 600px;
}

.tn-text-padding {
    padding: 0px 50px 0px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    background-color: #0C2F25;
}

.tn-header-section {
    margin-bottom: 35px;
}

.tn-subtitle {
    color: #7dd87d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.tn-title-responsive {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tn-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.tn-stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tn-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cus-flex-row {
    display: flex;
    align-items: center;
}

.tn-stat-number {
    color: #4BAF47;
    font-size: 24px;
    font-weight: 700;
}

.tn-stat-subtitle {
    color: rgb(255 255 255);
    font-size: 14px;
    line-height: normal;
    padding-top: 10px;
    padding-left: 10px;
}

.tn-stat-label {
    color: #506962;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: right;
    text-transform: uppercase;
}

.tn-chart-padding {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}



.tamilnadu-section {
    position: relative;
}

.tamilnadu-section:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: #0c2f26;
    left: 0;
    top: 0;
    z-index: 0;
}

.tn-chart-size {
    width: 100%;
    /* height: 350px; */
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.ghg-pie-chart {
    border: 0 !important;
}

.tn-chart-canvas {
    width: 100%;
    height: 100%;
}

.tn-legend-container {
    max-width: 350px;
    margin-bottom: 20px;
}

.tn-legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}

.tn-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.tn-legend-text {
    color: #333;
    line-height: 1.3;
}

.tn-chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    font-family: var(--heading-font);
}

/* Legend Colors */
.tn-legend-forest {
    background-color: #4CAF50;
}

.tn-legend-barren {
    background-color: #8D6E63;
}

.tn-legend-non-agri {
    background-color: #5C6BC0;
}

.tn-legend-waste {
    background-color: #FFB74D;
}

.tn-legend-pastures {
    background-color: #81C784;
}

.tn-legend-misc {
    background-color: #A5D6A7;
}

.tn-legend-fallows {
    background-color: #FFAB40;
}

.tn-legend-other-fallow {
    background-color: #BA68C8;
}

.text-light-green {
    color: #9eaca8;
}

.toggle-section.sectoral-gva.section-and-download-header {
    width: fit-content;
    margin: auto;
    padding: 50px 0 60px;
    border: 0;
}

.section-and-download-header .form-switch {
    padding-left: 0;
}

.section-and-download button {
    padding: 0px 15px;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    font-size: 14px;
    color: #3F4254;
    background-color: white;
}

.tn-chart-padding-two-card .tn-chart-size {
    width: 100%;
    text-align: center;
}

.custom-download {
    padding: 3px 15px;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    font-size: 14px;
    color: #3F4254;
    background-color: white;
}

.dropdown.bigger-dropdown button {
    width: 250px;
}

.bigger-dropdown ul {
    width: 100%;
}


/* State Overview Section Styles */
.state-overview-section {
    background-color: #f8f9f6;
}

.gredient-bg-green-top-bottom {
    background: #F6FBF6;
}

.gredient-bg-green-bottom-top {
    background: linear-gradient(0deg, #f6fbf7, #ffffff), linear-gradient(180deg, #F6FBF6 0%, rgba(246, 251, 246, 0) 100%);
}

.state-overview-header {
    margin-bottom: 50px;
}

.state-overview-header h3 {
    color: #6cb067;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.state-overview-header h1 {
    color: #2a2a2a;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.legend {
    padding-top: 0;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.legend-item.active {
    padding-left: 50px;
}

.legend-item:before {
    content: "";
    position: absolute;
    width: 0px;
    transition: width 0.2s ease;
    height: 10px;
    background: #6cb167;
    border-radius: 10px;
    left: 0;
}

.legend-item.active:before {
    width: 40px;
    transition: width 0.2s ease;
}

.legend-item:hover {
    transform: translateX(5px);
}

.legend-item.active .icon {
    transform: scale(1.1);
}

.legend-item.selected {
    transform: translateX(5px);
}

.legend-item.selected .icon {
    transform: scale(1.15);
}

.legend-item.selected span {
    color: #4BAF47;
    font-weight: 500;
}

.icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    transition: transform 0.2s;
    flex-shrink: 0;
}


.legend-item span {
    color: #0C2F25;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.map-section {
    position: relative;
}

.description {
    color: #4B5675;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.map-container {
    position: relative;
    background-color: #f0f2ea;
}

#tamilnaduMap {
    width: 100%;
    height: 500px;
    border-radius: 8px;
}

#chart {
    background-color: #e8ebe4;
}

.apexcharts-legend {
    overflow: hidden !important;
}



.district-info {
    position: fixed;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    /* display: none; */
    z-index: 1000;
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
}

.energy-snapshot-icon-image {
    width: 40px;
    margin-bottom: 13px;
}

.energy-snapshot-card .stat-item p {
    font-size: 14px;
    line-height: 21px;
    margin-top: 6px;
}

.energy-snapshot-row {
    gap: 50px 0px;
}

.energy-snapshot-card .stat-item h2 .unit {
    font-size: 16px;
}

.download-btn-absolute {
    display: flex;
    justify-content: flex-end;
}

.download-btn {
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    background-color: #fff;
    height: 40px;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 500;
    gap: 8px;
    color: #3F4254;
}

.download-btn img {
    width: 16px;
    margin-left: 4px;
}

sub {
    bottom: -.1em;
    padding-left: 2px;
    padding-right: 2px;
}

.energy-snapshot-card .stat-item p span {
    color: #4BAF47;
}

.district-container .header h4 {
    font-size: 24px;
    font-weight: 400;
    color: #0C2F25;
    margin-bottom: 0px;
}

.district-container .header {
    padding-bottom: 20px;
}

.district-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
}

.overview-container,
.sectorial-container,
.climate-container {
    height: 100%;
}

.overview-container {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(81, 175, 76, 0.2);
}

.sectorial-container {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(81, 175, 76, 0.2);
}

.green-star-image {
    width: 26px;
}

.each-item-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.district-container .body {
    padding: 20px 0px 0;
}

.district-container .body h4 {
    font-size: 24px;
    font-weight: 600;
    color: #38A433;
    text-transform: uppercase;
}

.district-container .body h4 span {
    font-size: 14px;
    font-weight: 500;
    color: #0C2F25;
    margin-left: 7px;
}

.each-item-main-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 12px;
}

.each-item-section .urban {
    font-size: 24px;
    font-weight: 400;
    color: #1B84FF;
}

.each-item-section .urban span {
    font-size: 16px;
    font-weight: 400;
    color: #0C2F25;
}

.each-item-section .rural {
    font-size: 24px;
    font-weight: 400;
    color: #7239EA;
    margin-left: 30px;
}

.each-item-section .rural span {
    font-size: 16px;
    font-weight: 400;
    color: #0C2F25;
}

.key-feature-container {
    margin-top: 40px;

}

.KeyFeaturesList {
    margin-top: 30px;
}

.key-feature-container h4 {
    font-size: 22px;
    font-weight: 700;
    color: #191919;
    margin-bottom: 0px;

}

.key-feature-container img {
    width: 20px;
    position: absolute;
    left: 0px;
    top: 6px;
}

.key-feature-container span {
    font-size: 16px;
    font-weight: 500;
    color: #3A3A3A;
    display: block;
    position: relative;
    padding-left: 8px;
}

.margin-right-20 {
    margin-right: 20px;
}

a.cs_site_branding {
    width: 60px;
}

.cs_sticky_header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Make header white on all pages */
.cs_site_header.cs_style_1 {
    background-color: #ffffff;
}

/* Adjust navigation text color for white background */
.cs_site_header.cs_style_1:not(.cs_heading_color) .cs_nav_list>li>a {
    color: #0C2F25 !important;
}

.cs_site_header.cs_style_1:not(.cs_heading_color) .cs_nav_list>li>a:hover {
    color: #4BAF47 !important;
}

/* Match dropdown menu font size to main menu */
.cs_nav .cs_nav_list ul a {
    font-size: 16px !important;
}

/* Hide basemap/tile layers in GeoViz maps - show only data layer */
.leaflet-tile-pane,
.leaflet-tile-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide all Leaflet controls - zoom, scale, attribution */
.leaflet-control-zoom,
.leaflet-control-scale,
.leaflet-control-scale-line,
.leaflet-control-attribution,
.leaflet-bar,
.leaflet-control-container .leaflet-bottom,
.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-left,
.leaflet-control-container .leaflet-right,
.geoviz-control,
.geoviz-scale-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Set Leaflet container background to light green */
.leaflet-container {
    background: #e8f5e9 !important;
    outline: none !important;
    outline-offset: 0 !important;
}

/* Hide custom cursor animations */
.cs_cursor_lg,
.cs_cursor_sm {
    display: none !important;
}

.link-green {
    color: #4baf47;
}

.year-select.seperate-style {
    padding: 10px 35px 10px 15px;
    margin-top: -4px;
}

.radial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
    padding-top: 10px;
}

.radial-item {
    width: 33.3333333%;
    text-align: center;
}

.card-header-custom {
    display: flex;
    justify-content: flex-end;
}

.section-and-download {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-category-tabs .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    color: #495057;
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgb(255 255 255 / 0%);
    width: 360px;
    height: 60px;
    border-radius: 10px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-category-tabs .nav-tabs .nav-link.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    color: #4baf47 !important;
    font-weight: 500 !important;
}

.custom-category-tabs {
    background-color: #4BAF47;
    padding: 20px 0;
}

.custom-category-tabs .nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 0;
    gap: 20px;
}

.date-box {
    font-size: 18px;
    color: #A4A4A4;
    display: block;
    line-height: 30px;
}

.blue-heading {
    font-size: 21px;
    color: #0075FF;
    font-weight: 500;
    margin-bottom: 0;
}

.calc-height-fix {
    padding: 1px 23px 40px 23px;
    margin-top: 50px;
    height: calc(100% - 50px);
}

.link-blue {
    color: #0075FF;
}

.tn-chart-title span {
    color: #A4A4A4;
    font-size: 22px;
    font-weight: 500;
}

.cus-row-gap {
    row-gap: 40px;
}

.color-change {
    background-color: #f8fbf3 !important;
}

/* Counter Section Styles */
.counter-section {
    background: #FFFFFF;
    padding: 40px 0;
}

.counter-card {
    text-align: center;
}

.counter-number {
    font-size: 44px;
    font-weight: 900;
    color: #4BAF47;
    margin-bottom: 0px;
    line-height: normal;
}

.counter-number .plus-sign {
    font-size: 46px;
    font-weight: 100;
    color: #666666;
}

.counter-title {
    color: #8e8e8e;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

/* Installed Capacity Section Styles */
.installed-capacity-section {
    background: #111111;
    padding: 80px 0;
}

.capacity-left-content {
    padding-right: 50px;
}

.capacity-section-title {
    color: #fff;
    font-size: 51px;
    font-weight: 600;
    margin-bottom: 80px;
}

.capacity-stat-block {
    margin-bottom: 40px;
}

.capacity-main-number {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.capacity-large-number {
    color: #4CAF50;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.9;
}

.capacity-unit {
    color: #4CAF50;
    font-size: 1.8rem;
    font-weight: 500;
}

.capacity-label {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.capacity-percentage {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.capacity-percentage-number {
    color: #4CAF50;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 0.9;
}

.energy-breakdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.energy-block-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.energy-number {
    color: #4CAF50;
    font-size: 70px;
    font-weight: 700;
    line-height: 0.9;
}

.energy-unit {
    color: #4CAF50;
}

.energy-label {
    color: #fff;
    font-size: 1rem;
}

.capacity-chart-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.capacity-download-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
}

.capacity-download-btn img {
    width: 14px;
    margin-left: 5px;
}

.capacity-chart-area {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capacity-chart-title {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
}

.counter-subtitle {
    color: #111111;
    font-size: 18px;
    font-weight: 600;
}

.key-industry-card {
    display: flex;
    align-items: center;
}

.industry-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.industry-title {
    font-size: 20px;
    font-weight: 600;
    color: #191919;
    margin: 0;
}

.industries-img {
    width: 60px;
    margin-right: 15px;
}

.population-perc {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}

.ice-vehicle {
    width: 50px;
}

.tabs-ul {
    background-color: #ffffff;
    width: max-content;
    width: -moz-max-content;
    /* Firefox fallback */
    width: -webkit-max-content;
    /* Webkit fallback */
    padding: 4px;
    border-radius: 40px;
    overflow: hidden;
    margin: 50px auto;

    /* IE 10-11 Flexbox support */
    display: -ms-flexbox;
    /* IE 10 */
    display: -webkit-flex;
    /* Safari */
    display: flex;
    /* Modern browsers */

    /* IE 10-11 flex-wrap support */
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    /* IE 10-11 justify-content support */
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    box-shadow: none;
    border: 0;
}

.tabs-ul button.nav-link.active {
    background: #4baf47 !important;
    color: #ffffff !important;
}

.tabs-ul button.nav-link:hover {
    border-color: transparent !important;

}

.tabs-ul button.nav-link:focus {
    border-color: transparent !important;

}

.tabs-ul button.nav-link {
    background: transparent !important;
    color: #4baf47 !important;
    font-size: 16px;
}

.tabs-ul button {
    width: auto !important;
    border: 0px;
    padding: 6px 25px 4px;
    border-radius: 30px !important;
    text-transform: uppercase;
    height: auto !important;

    /* IE 10-11 flex item support */
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;

    /* IE fallback - inline-block for older IE */
    display: inline-block;
    vertical-align: top;
}

.cus-radio-button-container {
    margin-right: 10px;
}

.cus-radio-button-container .form-check-inline {
    padding: 5px 10px 0;
    font-size: 18px;
}

.form-check-input {
    width: 20px;
    height: 20px;
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url(../img/tick-icon.webp);
    background-size: 11px;
}

.cus-ul-divider-bx {
    gap: 30px;
}

.cus-ul-divider-bx li {
    list-style: none;
}

.cus-ul-divider-bx li:first-child::after {
    width: 6px;
    height: 6px;
    background: #5E5E5E;
    content: "";
    position: absolute;
    right: -17px;
    border-radius: 20px;
    top: 13px;
}

.light-grey-text {
    color: #B2B2B2;
}

.sm-dropdown.year-select {
    height: 40px !important;
    background-position: right 10px center !important;
}

.sm-dropdown.year-select.seperate-style {
    padding: 2px 35px 2px 15px !important;
    margin-top: 0 !important;
}

.demographic-icon {
    width: 30px;
    padding-bottom: 10px;
}

.climate-note-wrapper {
    background-color: #F6FBF6;
    padding: 20px 32px;
    border-radius: 20px;
    border-left: #4BAF47 6px solid;
}

.climate-note {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    font-family: "Roboto";
}

.cs_hero_text.slider-bg-bx ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
    margin-bottom: 0;
}

.cs_hero_text.slider-bg-bx ul li {
    font-size: 22px;
    color: #0C2F25;
    font-weight: 400;
    font-family: var(--heading-font);
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.initiatives-icon {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    background-size: contain;
    left: 0;
    top: 5px;
}


.slider-ul-inner-bx {
    margin-top: 24px;
}

.cs_hero_text.slider-bg-bx {
    margin-left: auto;
    margin-right: auto;
    background-color: #E1F1E0;
    border-radius: 30px;
    padding: 40px;
}

.cs_hero_text.slider-bg-bx ul li:last-child {
    margin-bottom: 0;
}

.slider-ul-inner-bx ul li:last-child {
    margin-bottom: 0 !important;
}

.cs_hero.cs_style_3 .cs_hero_text {
    max-width: max-content;
}

.cus-bold {
    font-weight: 500;
}

.cus-green-txt {
    color: #38A433;
    font-weight: normal;
}

.forcastBx {
    background: #FAFAFA;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    width: fit-content;
    gap: 100px;
    margin: auto;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}

.forcast-title {
    color: #111111;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.forcast-details h4 {
    font-size: 24px;
    color: #38A433;
    margin-bottom: 2px;
}

.forcast-details span {
    color: #A4A4A4;
    font-size: 13px;
}

.forcastInner {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cus-toggle-tab {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 99;
}

.climate-br {
    display: block;
}

.homepage-banner {
    height: 100vh;
    padding: 140px 0 40px !important;
}

.ice-vehicle {
    width: 50px;
}

.progress-bar-wrapper {
    background-color: #4CAF50;
    margin: 0 12px;
    height: 50px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar {
    width: 94.37%;
    height: 50px;
    background-color: #E8E8E8;
}

.ev-vehicle-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

/* Water & Waste Profile Styles - Matching Image Design */
.water-waste-profile-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.profile-image-container {
    height: 272px;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    padding: 30px 25px 40px;
}

.profile-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #191919;
    margin-bottom: 30px;
    font-family: var(--heading-font);
}


.profile-metric-row {
    display: flex;
    gap: 75px;
    margin-bottom: 25px;
}

.profile-metric-single {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.profile-metric-value {
    font-size: 28px;
    font-weight: 500;
    color: #4CAF50;
    margin-bottom: 5px;
    font-family: var(--heading-font);
    flex: 1;
}

.profile-metric-label {
    font-size: 14px;
    color: #555555;
    font-weight: 400;
    font-family: var(--heading-font);
    padding-top: 5px;
}

.profile-metric-single .profile-metric-value {
    margin-bottom: 8px;
}

.home-br {
    display: block;
}

.ghg-video-container img {
    height: -webkit-fill-available;
}

.ghg-video-container {
    height: 100%;
}

.nav-link.GHG-Emissions-btn {
    position: absolute;
    background-color: #fff !important;
    width: auto !important;
    right: -120px;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #4BAF47 !important;
    box-shadow: 6px 6px 0px #046d31;
    height: 54px !important;
    cursor: pointer;
}

.mitigation-table {
    width: 100%;
    border-collapse: collapse;
    /* margin-bottom: 30px; */
    font-size: 12px;
    font-family: var(--heading-font);
}

.mitigation-table th {
    background-color: #4BAF47;
    color: white;
    padding: 15px 15px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #FFFFFF;
    font-size: 16px;
    line-height: 1.5;
    min-width: 80px;
}

.mitigation-table td {
    padding: 20px 20px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    min-width: 180px;
}

.table-section-title {
    color: #4BAF47;
    font-weight: 600;
    padding: 12px 20px !important;
    font-size: 20px !important;
    text-align: left !important;
}

.mitigation-table td.yellow-cell,
.mitigation-table td.merged-cell {
    text-align: center;
}

/* .yellow-cell {
background-color: #FFF085;
} */

.merged-cell {
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
}

.stage-header {
    background-color: #5cb85c;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    margin: 30px 0 20px 0;
    border-radius: 5px;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 100px;
}

.mitigation-activity {
    font-weight: 500 !important;
    font-size: 16px !important;
    color: #707070;
}

.mitigation-number {
    font-weight: 700 !important;
    font-size: 18px !important;
}

.text-left {
    text-align: left !important;
}

.GHG-Emissions-btn {
    display: none !important;
}

.GHG-Emissions-btn img {
    width: 18px;
    margin-right: 6px;
}

/* coming soon page */
.coming-soon-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    background-image: url(/assets/img/coming-soon.webp);
    background-size: cover;
    background-position: center 100px;
    background-repeat: no-repeat;
}

.coming-soon-section-inner {
    padding: 100px 0 0;
    min-height: 750px;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.coming-soon-text {
    position: relative;
    z-index: 3;
}

.construction-text {
    color: #22c55e;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-title {
    color: #1f2937;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.coming-soon-description {
    color: #6b7280;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.slider-heading {
    font-size: 34px;
    font-weight: 700;
    color: #191919;
    font-family: var(--heading-font);
}

.cs_hero_text.slider-bg-bx ul li ul li:before {
    display: none;
}

.cs_hero_text.slider-bg-bx ul li ul {
    margin-left: -10px;
    margin-top: 25px;
}

.cs_hero_text.slider-bg-bx ul li ul li {
    padding-left: 25px;
    position: relative;
    font-weight: 400;
    margin-bottom: 20px;
}

.cs_hero_text.slider-bg-bx ul li ul li:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0C2F25;
    left: 0;
    top: 12px;
    border-radius: 6px;
}

.ul-min-height-fix {
    min-height: 62px;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    column-gap: 8px;
}

/* GHG Emissions Page Specific Styles */
.ghg-emissions-section {
    padding: 0;
    min-height: 600px;
}

.ghg-emissions-section .row {
    min-height: 600px;
}

.ghg-dark-side {
    position: relative;
    background-image: url(/assets/img/dark-bg.png);
    background-position: top;
    background-size: cover;
}

.ghg-light-side {
    background: #111111;
    display: flex;
    padding-right: 30px;
}

.ghg-stats-padding {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ghg-header {
    margin-bottom: 40px;
    width: 100%;
    max-width: 750px;
    text-align: left;
}

.ghg-title {
    color: #FFFFFF;
}

.ghg-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 0px;
    max-width: 750px;
    width: 100%;
}

.ghg-stat-item {
    text-align: left;
}

.ghg-stat-number {
    font-size: 80px;
    font-weight: 900;
    color: #4BAF47;
    margin-bottom: 8px;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.ghg-unit {
    font-size: 18px;
    font-weight: 400;
    color: #4BAF47;
}

.ghg-percentage {
    font-size: 42px;
    font-weight: 700;
    color: #4BAF47;
}

.ghg-stat-label {
    color: #e1e1e1;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

/* New Dark Theme GHG Stats */
.ghg-dark-stats-side {
    display: flex;
    align-items: center;
    background: transparent;
    justify-content: center;
    height: 100%;
}

.ghg-dark-stats-container {
    width: 100%;
    max-width: fit-content;
}

.ghg-dark-stats-card {
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.ghg-stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.ghg-stats-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    font-family: var(--heading-font);
}

.ghg-modern-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: center;
}

.ghg-modern-stat-item {
    text-align: center;
}

.ghg-modern-stat-number {
    margin-bottom: 15px;
    line-height: 1;
}

.ghg-counter {
    font-size: 72px;
    font-weight: 900;
    color: #4BAF47;
    display: inline-block;
    font-family: var(--heading-font);
}

.ghg-modern-unit {
    font-size: 16px;
    font-weight: 400;
    color: #4BAF47;
    margin-left: 8px;
    display: inline-block;
    vertical-align: baseline;
}

.ghg-modern-stat-label {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
    font-family: var(--body-font);
    text-wrap-mode: nowrap;
}

.year-select {
    height: 40px !important;
    background-position: right 10px center !important;
}

.year-select.seperate-style {
    padding: 2px 35px 2px 15px !important;
    margin-top: 0 !important;
}

/* Custom Radio Button Tabs Design */
.custom-radio-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    overflow: hidden;
}

.custom-radio-item {
    flex: 1;
    position: relative;
}

.custom-radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radio-label {
    display: block;
    padding: 12px 20px;
    text-align: center;
    background: transparent;
    color: #6c757d;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-radio-item input[type="radio"]:checked+.custom-radio-label {
    background: #ffffff;
    color: #495057;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.custom-radio-label:hover {
    color: #495057;
    background: rgba(255, 255, 255, 0.5);
}

.custom-radio-item input[type="radio"]:checked+.custom-radio-label:hover {
    color: #495057;
    background: #ffffff;
}

/* Subscript styling for radio buttons */
.custom-radio-label sub {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    bottom: -0.25em;
}

/* Radio Button Tabs that look like Bootstrap Nav Tabs */
.nav-tabs-radio {
    list-style: none;
    background-color: #ffffff;
    width: max-content;
    padding: 4px;
    border-radius: 40px;
    overflow: hidden;
    margin: 50px auto;
    display: flex;
    box-shadow: none;
    justify-content: center;
    border: 0;
}

.nav-tabs-radio .nav-item-radio {
    margin-bottom: -1px;
}

.nav-tabs-radio .nav-item-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.nav-tabs-radio .nav-link-radio {
    display: block;
    margin-left: -1px;
    text-decoration: none;
    background: 0 0;
    margin-bottom: 0;
    width: auto !important;
    border: 0px;
    color: #4BAF47 !important;
    padding: 6px 25px 4px;
    border-radius: 30px !important;
    text-transform: uppercase;
    height: auto !important;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-tabs-radio .nav-link-radio:hover,
.nav-tabs-radio .nav-link-radio:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}

.nav-tabs-radio .nav-item-radio input[type="radio"]:checked+.nav-link-radio {
    background: #4baf47 !important;
    color: #ffffff !important;
}

.nav-tabs-radio .nav-link-radio sub {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    bottom: -0.25em;
}

.leaf-left {
    width: 218px;
    position: absolute;
    left: 0;
    top: 100px;
}

.leaf-right {
    width: 176px;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Loading spinner animation */
@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.privacy-paragraph-text {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #555555;
    text-align: justify;
}

.privacy-heading {
    font-size: 28px;
    font-weight: 600;
    color: #191919;
    text-align: justify;
}

.light-theme {
    background-color: #ffffff !important;
}

.climate-note-heading {
    font-size: 34px;
    font-weight: 600;
    color: #191919;
    font-family: var(--heading-font);
    text-align: left;
}

.contact-us {
    height: 350px;
}

.cs_contact_card {
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #EBEDF3;
    text-align: left;
    padding: 30px;
}

.cs_contact_info i {
    color: #4BAF47;
}

.cs_contact_info {
    position: relative;
}

.cs_contact_info i {
    color: #4BAF47;
    position: absolute;
    top: 6px;
}

.cs_contact_info span {
    padding-left: 30px;
    display: block;
    font-size: 16px;
}

.cs_contact_info a {
    color: #1B84FF;
}

.sds {
    color: #4BAF47;
}

g.apexcharts-datalabels text {
    font-size: 10px;
}

#sectoralEmissionSimpleChart .apexcharts-legend-series {
    margin: 0px !important;
    align-items: flex-start !important;
}

#sectoralEmissionSimpleChart .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center,
#sectoralEmissionSimpleChart .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {
    justify-content: flex-start !important;
    align-items: flex-start;
    gap: 8px;
}

.apexcharts-legend-marker svg {
    border-radius: 50% !important;
}

.apexcharts-legend-marker {
    border-radius: 50% !important;
}

.key-industries-section,
.economy-wide-section {
    position: relative;
}

.key-industries-section:after,
.economy-wide-section:after {
    content: "";
    background-image: url("../img/leftBg2.png");
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-size: 100% 100%;
    z-index: 99;
    width: 84px;
    height: 145px;
}

.key-industries-section:before,
.economy-wide-section:before {
    content: "";
    background-image: url("../img/rightBg2.webp");
    position: absolute;
    right: 0px;
    top: 0px;
    background-size: 100% 100%;
    z-index: 99;
    width: 227px;
    height: 270px;
}

.water-waste-section,
.ecology-land-resources-section,
.energy-section,
.gredient-bg-green-top-bottom,
.proportional-section,
.climate-projection-section,
.faq-section {
    position: relative;
}

.water-waste-section:after,
.tamil-nadu-initiatives:after,
.ecology-land-resources-section:after,
.energy-section:after,
.gredient-bg-green-top-bottom:after,
.proportional-section:after,
.climate-projection-section:after,
.faq-section:after {
    content: "";
    background-image: url(../img/leftBg.png);
    position: absolute;
    left: 0px;
    top: 0px;
    background-size: 100% 100%;
    /* z-index: 99; */
    width: 218px;
    height: 290px;
}

.water-waste-section::before,
.tamil-nadu-initiatives::before,
.ecology-land-resources-section::before,
.energy-section::before,
.gredient-bg-green-top-bottom::before,
.proportional-section::before,
.climate-projection-section::before,
.faq-section::before {
    content: "";
    background-image: url("../img/rightBg.webp");
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-size: 100% 100%;
    /* z-index: 99; */
    width: 139px;
    height: 252px;
}

.cs_site_header.cs_style_1:not(.cs_heading_color) .cs_nav_list>li>a {
    font-size: 16px;
}

.district-stat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.KeyFeaturesList span {
    padding-left: 30px;
}

.cs_footer_inside_col {
    display: flex;
    gap: 0px 70px;
}

.footer-logo {
    width: 500px;
}

.cs_footer_text_widget p {
    font-size: 17px;
    font-weight: 400;
}

.tab-tn-chart {
    background-color: #F8F8F8;
}

.tab-tn-chart-green {
    background-color: #F6FBF6;
}

.tab-tn-chart .leaflet-container {
    background: transparent !important;
}

.monthly-chart-size {
    min-height: 526px;
}

#perCapitaConsumptionChart2025 .apexcharts-legend.apexcharts-align-center.apx-legend-position-bottom {
    top: 455px !important;
}

.solar-pv-chart {
    background-color: #e8f5e9;
}

.apexcharts-datalabels-group text {
    font-size: 20px !important;
}

.radial-label {
    font-size: 13px;
}

.energy-snapshot-card {
    min-height: 515px;
}

.explore-district-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px 20px;
}

.explore-district-inside-wrapper {
    display: flex;
    align-items: center;
    gap: 0px 25px;
}

.section-and-download-header {
    padding-bottom: 10px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.electrical-vehicle-chart {
    min-height: 515px;
}

.gredient-bg-green-power {
    background:
        linear-gradient(0deg, rgba(246, 251, 246, 0) 0%, #F6FBF6 100%);
}

.dropdown {
    width: fit-content;
}

/* Custom Bootstrap dropdown styling to match original year-select */
.dropdown-toggle.year-select {
    padding: 3px 35px 3px 15px;
    border: 1px solid #D8D8D8 !important;
    border-radius: 6px !important;
    font-size: 13px;
    background-color: white !important;
    color: #3F4254 !important;
    text-align: left;
    min-width: auto;
    font-weight: 500;
}

.dropdown-toggle.year-select:focus {
    box-shadow: none !important;
    border-color: #D8D8D8 !important;
}

.dropdown-toggle.year-select:hover {
    background-color: #f8f9fa !important;
    border-color: #D8D8D8 !important;
}

.dropdown-toggle.year-select::after {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    border: none;
    width: 10px;
    height: 6px;
    vertical-align: middle;
    margin-left: auto;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu {
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    padding: 10px 10px;
    max-height: 324px;
    overflow: auto;
}

.dropdown-item {
    padding: 2px 10px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 500;
}

.dropdown-item.active {
    background-color: rgba(75, 175, 71, 0.15);
    color: #4BAF47;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #3F4254;
}

.tamil-nadu-climate-actions {
    color: #4BAF47;
}

.para-text {
    font-size: 18px;
    color: #555555;
}

.government-of-tamil-nadu-image {
    width: 450px;
}

.clickable-header {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clickable-header:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.sustainable-mobility-chart {
    min-height: 137px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.decarbonizationChart {
    margin-top: 30px;
}

.highcharts-axis.highcharts-xaxis .highcharts-axis-line {
    stroke-width: 0;
}

.glossary-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #4BAF47;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(75, 175, 71, 0.3);
    transition: all 0.3s ease;
}

.footer-br {
    display: block;
}

/* Responsive Styles for Dark GHG Stats */
@media (max-width: 1200px) {
    .ghg-dark-stats-card {
        padding: 40px 30px;
    }

    .ghg-stats-title {
        font-size: 42px;
    }

    .ghg-counter {
        font-size: 64px;
    }

    .ghg-modern-stats-grid {
        gap: 35px 50px;
    }

}

@media (max-width: 992px) {
    .ghg-dark-stats-side {
        padding: 40px 20px;
    }

    .ghg-dark-stats-card {
        padding: 35px 25px;
    }

    .ghg-stats-title {
        font-size: 36px;
    }

    .ghg-counter {
        font-size: 56px;
    }

    .ghg-modern-stats-grid {
        gap: 30px 40px;
    }

    .ghg-modern-stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .ghg-dark-stats-side {
        padding: 30px 15px;
    }

    .ghg-dark-stats-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .ghg-stats-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .ghg-modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .ghg-counter {
        font-size: 48px;
    }

    .ghg-modern-unit {
        font-size: 14px;
    }

    .ghg-modern-stat-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ghg-dark-stats-card {
        padding: 25px 15px;
    }

    .ghg-stats-title {
        font-size: 28px;
    }

    .ghg-counter {
        font-size: 40px;
    }

    .ghg-modern-unit {
        font-size: 12px;
    }

    .ghg-modern-stat-label {
        font-size: 13px;
    }

    .ghg-modern-stats-grid {
        gap: 25px;
    }
}

.glossary-section {
    position: fixed;
    background: #4BAF47;
    z-index: 999;
    right: -20px;
    top: 260px;
    width: 131px;
    height: 50px;
    transform: rotate(270deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.glossary-section h2 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.modal-content {
    border-radius: 20px;
}

.modal-header {
    padding: 20px 40px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #191919;
}

.modal-content .btn-close {
    width: 14px;
    height: 14px;
}

.modal-header {
    border-bottom: none;
}

.modal-body {
    background: rgba(75, 175, 71, 0.05);
    padding: 30px 40px 30px 40px;
    max-height: 70vh;
    overflow: auto;
}

.glossary-modal-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #191919;
    margin-bottom: 20px;
}

.glossary-modal-body h5 {
    font-size: 16px;
    font-weight: 600;
    color: #4BAF47;
    margin-bottom: 10px;
}

.glossary-modal-body ul li {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 24px;
}

.glossary-modal-body a {
    color: #1B84FF;
}

.modal-content .sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #4BAF47;
    margin-bottom: 4px;
}

.glossary-modal-body p {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 24px;
}

.glossary-modal-body p a {
    color: #1B84FF;
}

.glossary-modal-body ul {
    list-style: disc outside none;
    font-size: 12px;
    padding-left: 15px;
    margin-bottom: 14px;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.glossary-modal-body .divider {
    border-bottom: 1px dashed #C4CADA;
    margin: 20px 0px;
}

.glossary-modal-body h4 span {
    color: #4BAF47;
}

.ghg-modern-stats-grid-new {
    display: flex;
    gap: 0px 30px;
}

/* ==============================================
BRAND NEW GHG EMISSIONS STATS SECTION CSS
Completely new and independent design
============================================== */

.new-ghg-stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 20px 20px;
    background: transparent;
    height: 100%;
}

.new-ghg-stats-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.new-ghg-stats-card {
    backdrop-filter: blur(5px);
    border-radius: 24px;
    padding: 40px 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.new-ghg-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-ghg-title {
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

.new-ghg-grid {
    display: flex;
    gap: 20px 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.new-ghg-stat-box {
    text-align: center;
    padding: 0px 0px;
    text-wrap-mode: nowrap;
    width: 30%;
}

.new-ghg-number-section {
    margin-bottom: 20px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-flow: nowrap;
    justify-content: center;
}

.new-ghg-number {
    font-size: 72px;
    font-weight: 700;
    color: #4BAF47;
    display: block;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.new-ghg-unit {
    font-size: 18px;
    font-weight: 500;
    color: #4BAF47;
    display: block;
    font-family: var(--body-font);
    opacity: 0.9;
}

.new-ghg-label {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.95;
    font-family: var(--body-font);
    text-wrap: auto;
}

.sector-dropdown-menu .dropdown-header {
    display: block;
    padding: 0px;
    margin-bottom: 0;
    font-size: 14px;
    color: #B2B2B2;
    white-space: nowrap;
    margin-bottom: 6px;
    font-weight: 600;
}

.sector-dropdown-menu .dropdown-item {
    padding: 2px 0px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    color: #3F4254;
    line-height: 23px;
}

.sector-dropdown-menu .dropdown-item.active {
    background-color: transparent;
    color: #4BAF47 !important;
}

/* Animation for counters */
.new-ghg-number {
    transition: all 0.3s ease;
}

.new-ghg-number:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(75, 175, 71, 0.3);
}

.inner-ul li {
    margin-bottom: 5px !important;
    padding-left: 5px !important;
}

.light-green-gradient {
    background: linear-gradient(0deg, rgba(246, 251, 246, 0) 0%, #F6FBF6 100%);
}


.dd-260 {
    min-width: 260px !important;
}

.text-green {
    color: #4BAF47;
    font-size: 16px;
    font-weight: 500;
}

.cus-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.radio-btns span {
    color: #191919;
    font-size: 20px;
    margin-right: 30px;
    font-weight: 500;
}

.radio-btns .form-check-input {
    border-radius: 50px !important;
}

.radio-btns label {
    font-size: 16px;
    color: #3F4254;
    font-weight: 500;
}

.form-check-input:checked[type=checkbox] {
    background-size: 15px;
}

.toggle-container .form-check-input:checked[type=checkbox] {
    background-size: auto;
}

.table-light-green {
    background-color: #f0f6f0;
}

.table-light-grey {
    background-color: #F0F0F0;
}


.text-small {
    text-transform: none !important;
}

.cus-font {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #38A433 !important;
}

.home-mid-slider h2 {
    font-size: 45px;
    margin-bottom: 40px;
}

.home-mid-slider-ul li h3 {
    font-size: 22px;
    font-weight: 600;
}

.home-mid-slider-ul li {
    margin-bottom: 20px !important;
}

.inner-ul li {
    margin-bottom: 0px !important;
    font-size: 18px !important;
}

.cs_footer_bottom {
    border-top: 0px solid var(--body-color);
    background: #226D1F;
}

.cs_footer_bottom_in {
    justify-content: center;
    padding: 21px 0;
}

.cs_footer_widget_menu a {
    color: #B2B2B2;
}

.cs_footer_widget_menu a {
    text-wrap-mode: nowrap;
}

.cs_footer.cs_style_1 {
    margin-top: 0;
}

.cs_footer_widget_menu li:not(:last-child) {
    color: #B2B2B2;
}

.margin-bottom-zero {
    margin-bottom: 0px !important;
}

.cs_footer_widget.address-col {
    min-width: 240px;
}

h4#TotalEmission sub,
#PercentageStateEmission sub {
    font-size: .45em;
    font-weight: 600;
}

.leaf-left-img {
    position: absolute;
    left: 0;
    top: 0;
}

.leaf-right-img {
    position: absolute;
    right: 0;
    top: 0;
}

.iframe-container {
    height: 1200px;
}

.apexcharts-toolbar {
    right: initial;
    left: 0;
}

/* Responsive Design for New GHG Stats */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .new-ghg-stats-card {
        padding: 40px 50px;
        max-width: 900px;
    }

    .new-ghg-title {
        font-size: 48px;
    }

    .new-ghg-grid {
        gap: 19px 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .new-ghg-number {
        font-size: 72px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .new-ghg-stats-card {
        padding: 35px 40px;
    }

    .new-ghg-title {
        font-size: 42px;
    }

    .new-ghg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .cs_footer_col.fullWidth {
        width: 100%;
    }

    .new-ghg-number {
        font-size: 68px;
    }

    .new-ghg-unit {
        font-size: 16px;
    }

    .new-ghg-label {
        font-size: 17px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .new-ghg-stats-wrapper {
        padding: 30px 15px;
        min-height: 350px;
    }

    .new-ghg-stats-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .new-ghg-header {
        margin-bottom: 45px;
    }

    .new-ghg-title {
        font-size: 36px;
    }

    .new-ghg-grid {
        gap: 35px 25px;
    }

    .new-ghg-number {
        font-size: 56px;
    }

    .new-ghg-unit {
        font-size: 15px;
    }

    .new-ghg-label {
        font-size: 16px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .new-ghg-stats-wrapper {
        padding: 25px 10px;
        min-height: 320px;
    }

    .new-ghg-stats-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .new-ghg-header {
        margin-bottom: 35px;
    }

    .new-ghg-title {
        font-size: 28px;
    }

    .new-ghg-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .new-ghg-stat-box {
        padding: 10px 0px;
    }

    .new-ghg-number-section {
        margin-bottom: 15px;
        gap: 6px;
    }

    .new-ghg-number {
        font-size: 48px;
    }

    .new-ghg-unit {
        font-size: 14px;
    }

    .new-ghg-label {
        font-size: 15px;
    }

    .new-ghg-emissions-section .row {
        padding: 0 !important;
    }

    .home-mid-slider h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .home-mid-slider-ul li h3 {
        font-size: 18px;
    }

    .glossary-section h2 {
        font-size: 16px;
    }

    .glossary-section {
        right: -28px;
        top: 260px;
        width: 111px;
        height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .new-ghg-title {
        font-size: 24px;
    }

    .new-ghg-number {
        font-size: 30px;
    }

    .new-ghg-unit {
        font-size: 13px;
    }

    .new-ghg-label {
        font-size: 14px;
    }
}