/* ==========================================
   GREEN ENERGY PORTAL
   style.css
========================================== *
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Segoe UI',sans-serif;
    background:#F5F7FB;
    overflow-x:hidden;
}
/*==========================
    MOBILE MENU BUTTON
===========================*/
.menu-toggle{
    display:none;
    position:fixed;
    left:15px;
    top:15px;
    width:48px;
    height:48px;
    border:none;
    border-radius:12px;
    background:#2E7D32;
    color:#fff;
    font-size:22px;
    z-index:1200;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
/*==========================
        SIDEBAR
===========================*/
.sidebar{
    position:fixed;
    left:0;
    top:0;
    width:270px;
    height:100vh;
    background:#ffffff;
    box-shadow:5px 0 25px rgba(0,0,0,.08);
    padding:30px 20px;
    transition:.35s;
    z-index:1000;
}
.logo{
    font-size:23px;
    font-weight:700;
    color:#2E7D32;
    margin-bottom:35px;
}
.logo i{
    margin-right:5px;
}
.sidebar ul{
    list-style:none;
    padding:0;
}
.sidebar li{
    padding:16px 18px;
    margin-bottom:12px;
    border-radius:15px;
    cursor:pointer;
    transition:.3s;
    color:#444;
    font-size:17px;
    font-weight:600;
}
.sidebar li:hover{
    background:#E8F5E9;
    color:#2E7D32;
}
.sidebar li.active{
    background:linear-gradient(135deg,#43A047,#2E7D32);
    color:#fff;
}
.sidebar li i{
    width:30px;
}
/*==========================
      MAIN CONTENT
===========================*/
.main-content{
    margin-left:270px;
    padding:30px;
    transition:.35s;
}
/*==========================
        HERO
===========================*/
.hero{
    color:#2E7D32;
    margin-bottom:35px;
	
    border-radius:25px;
    padding:5px;
	padding-left:20px;

    margin-bottom:10px;
    box-shadow:0 12px 30px rgba(46,125,50,.30);
}
.hero h1{
	font-size:28px;
}
.hero p{
    font-size:20px;
    font-weight:700;
    opacity:.95;
}
/*==========================
      SECTION TITLE
===========================*/
.section-title{
    font-weight:700;
    margin-bottom:25px;
    color:#333;
}
/*==========================
      SERVICE CARDS
===========================*/
.service-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    padding:28px;
    color:#fff;
    height:200px;
    transition:.35s;
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}
.service-card i{
    position:absolute;
    right:20px;
    bottom:20px;
    font-size:65px;
    opacity:.18;
}
.service-card h4{
    margin-bottom:15px;
    font-weight:700;
}
.service-card p{
    font-size:15px;
    opacity:.95;
}
/*==========================
        GRADIENTS
===========================*/
.green{
background:linear-gradient(135deg,#81C784,#2E7D32);
}
.blue{
background:linear-gradient(135deg,#64B5F6,#1976D2);
}
.orange{
background:linear-gradient(135deg,#FFCC80,#F57C00);
}
.purple{
background:linear-gradient(135deg,#CE93D8,#8E24AA);
}
.teal{
background:linear-gradient(135deg,#80DEEA,#00838F);
}
.red{
background:linear-gradient(135deg,#EF9A9A,#D32F2F);
}
/*==========================
      MOBILE
===========================*/
@media(max-width:991px){
.menu-toggle{
display:block;
}
.sidebar{
left:-280px;
}
.sidebar.show{
left:0;
}
.main-content{
margin-left:0;
padding:80px 20px 20px;
}
.hero{
padding:35px 25px;
}
.hero h1{
font-size:30px;
}
.hero p{
font-size:16px;
}
.service-card{
height:180px;
}
}
/*==========================
      SMALL MOBILE
===========================*/
@media(max-width:576px){
.hero h1{
font-size:26px;
}
.hero{
text-align:center;
}
.service-card{
height:auto;
min-height:170px;
}
}