/* DARK OVERLAY */
.energy-hero .overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.30);
}

/* CONTENT */
.hero-content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: auto;
    padding: 0 100px;
}

.hero-content h1{
    color: #fff;

    font-size: 95px;
    font-weight: 800;
    line-height: 1.05;

    text-transform: uppercase;

    max-width: 850px;
}

/* CONTACT STRIP */

.contact-strip{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    z-index: 5;
    border-radius: 12px 0 0 12px;
}

.contact-strip span{
    color: #000;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 1px;
}

.whatsapp-icon{
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i{
    color: #fff;
    font-size: 22px;
}

/* BREADCRUMB */

.breadcrumb-section{
    background: #f4f4f4;

    padding: 40px 0;
}

.breadcrumb-section .container{
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;
}

.breadcrumb-section a{
    text-decoration: none;

    color: #9b9b9b;

    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-section .active{
    color: #4d71d9;
    font-weight: 700;
}

.breadcrumb-section span{
    color: #bdbdbd;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .hero-content{
        padding: 0 70px;
    }

    .hero-content h1{
        font-size: 75px;
    }

}

@media(max-width:768px){

    .energy-hero{
        min-height: 550px;
    }

    .hero-content{
        padding: 0 30px;
    }

    .hero-content h1{
        font-size: 52px;
        line-height: 1.1;
    }

    .contact-strip{
        padding: 14px 8px;
        gap: 10px;
    }

    .contact-strip span{
        font-size: 14px;
    }

    .whatsapp-icon{
        width: 34px;
        height: 34px;
    }

    .whatsapp-icon i{
        font-size: 18px;
    }

    .breadcrumb-section{
        padding: 25px 0;
    }

    .breadcrumb-section a{
        font-size: 15px;
    }

}

@media(max-width:480px){

    .energy-hero{
        min-height: 450px;
    }

    .hero-content h1{
        font-size: 38px;
    }

}
/* =========================
   ENERGY CONTENT SECTION
========================= */

.energy-content-section{
    padding: 80px 0;
    background: #f7f7f7;
}

.energy-content-section .container{
    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    gap: 70px;
}

/* =========================
   SIDEBAR
========================= */

/* SIDEBAR */

.energy-sidebar{
    width: 320px;
}

.sidebar-item{
    border-top: 1px solid #ddd;
}

.sidebar-title{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 0;
    cursor: pointer;
}

.sidebar-title span{
    font-size: 17px;
    font-weight: 700;
    color: #00713d;
}

.sidebar-title i{
    font-size: 14px;
    color: #00713d;

    transition: 0.3s;
}

/* DROPDOWN */

.sidebar-dropdown{
    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
}

.sidebar-dropdown ul{
    list-style: none;
    padding-bottom: 20px;
}

.sidebar-dropdown ul li{
    margin-bottom: 15px;
}

.sidebar-dropdown ul li a{
    text-decoration: none;
    color: #666;
    font-size: 16px;
}

.sidebar-dropdown ul li a:hover{
    color: #00713d;
}

/* ACTIVE */

.sidebar-item.active .sidebar-dropdown{
    max-height: 500px;
}

.sidebar-item.active .sidebar-title i{
    transform: rotate(45deg);
}

/* =========================
   MAIN CONTENT
========================= */

.energy-main-content{
    flex: 1;
}

.energy-main-content h2{
    font-size: 70px;
    color: #3559a8;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.energy-main-content p{
    font-size: 20px;
    line-height: 1.8;

    color: #222;

    margin-bottom: 50px;
}

/* =========================
   CARDS
========================= */

.energy-cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.energy-card{
    position: relative;
    overflow: hidden;
}

.energy-card img{
    width: 100%;
    height: 370px;
    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.energy-card:hover img{
    transform: scale(1.08);
}

.card-overlay{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.2),
        transparent
    );
}

.card-overlay h4{
    line-height:1.2;
    max-width:90% ;
    font-size: 25px;
    margin-bottom: 12px;
    color: #fff;
}

.card-overlay p{
    color: #f7f7f7;
    font-size: 20px;
    line-height: 1.7;
    max-width: 90%;
}


/*RESPONSIVE */

@media(max-width:1100px){

    .energy-content-section .container{
        flex-direction: column;
    }

    .energy-sidebar{
        width: 100%;
    }

    .energy-main-content h2{
        font-size: 55px;
    }

}

@media(max-width:768px){

    .energy-main-content h2{
        font-size: 42px;
    }

    .energy-main-content p{
        font-size: 17px;
    }

    .energy-cards{
        grid-template-columns: 1fr;
    }

    .energy-card img{
        height: 300px;
    }

}