/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Container for the entire section */
.renewable-energy-hero-section {
    display: flex;
    width: 100%;
    max-width: 1200px; /* Optional: Sets a maximum width for the content */
    margin: 0 auto;
    background-color: #388e3c; /* Deep forest green */
    color: white;
    font-family: Arial, sans-serif;
    padding: 60px 20px;
    align-items: center;
}

/* --- Left Section (Text) --- */
.re-text-section {
    flex: 2; /* Takes up more space */
    padding-right: 40px;
}
section.renewable-energy-hero-section {
    margin-top: 80px;
}


.re-sub-heading {
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    /* Line under the 'Renewable Energy' text */
    border-bottom: 3px solid white;
    display: inline-block;
}

.renewable-energy-hero-section h1 {
    font-size: 3.5em;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.re-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.re-contact-button {
    background-color: rgba(0, 0, 0, 0.4); /* Dark/semi-transparent background */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.re-contact-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* --- Right Section (Stats Grid) --- */
.re-stats-section {
    flex: 1; /* Takes up less space */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 5px; /* Minimal gap between boxes */
}

.re-stat-box {
    background-color: rgba(0, 0, 0, 0.4); /* Dark background for the boxes */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px 20px;
    text-align: left;
}

.re-number {
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 5px;
}

.re-label {
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .renewable-energy-hero-section {
        flex-direction: column; /* Stack sections vertically */
        padding: 40px 20px;
    }

    .re-text-section {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .renewable-energy-hero-section h1 {
        font-size: 2.5em;
    }
}
.ni-hero-section {
    padding: 70px 0;
    position: relative;
    width: 100%;
    background-color: #388e3c; /* Deep forest green */
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Wrapper */
.ni-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Text Section */
.ni-hero-text {
    flex: 1 1 45%;
    min-width: 260px;
}

.ni-hero-sub-heading {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid #ffffff;
    opacity: 0.85;
    display: inline-block;
    color: #ffffff;
}

.ni-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 16px;
}

.ni-hero-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 0;
    color: #ffffff;
}

/* Right Stats Section */
.ni-hero-stats {
    flex: 1 1 45%;
    min-width: 260px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ni-hero-stat-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 18px 20px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.ni-hero-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.ni-hero-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e5e7eb;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .ni-hero-section {
        padding: 40px 20px;
    }

    .ni-hero-wrapper {
        flex-direction: column;
    }

    .ni-hero-text {
        margin-bottom: 30px;
    }

    .ni-hero-title {
        font-size: 2.2rem;
    }
}
