/* ==========================================
   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:30px;
    font-weight:700;
    color:#2E7D32;
	padding-top:20px;
	padding-bottom:20px;
    margin-bottom:20px;
}
.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 */
.green{
    background:linear-gradient(135deg,#66BB6A,#2E7D32);
}
/* Blue */
.blue{
    background:linear-gradient(135deg,#42A5F5,#1565C0);
}
/* Orange */
.orange{
    background:linear-gradient(135deg,#FFB74D,#EF6C00);
}
/* Purple */
.purple{
    background:linear-gradient(135deg,#AB47BC,#6A1B9A);
}
/* Teal */
.teal{
    background:linear-gradient(135deg,#26C6DA,#00796B);
}
/* Red */
.red{
    background:linear-gradient(135deg,#EF5350,#C62828);
}
/* Cyan */
.cyan{
    background:linear-gradient(135deg,#4DD0E1,#0288D1);
}
/* Indigo */
.indigo{
    background:linear-gradient(135deg,#7986CB,#3949AB);
}
/* Lime */
.lime{
    background:linear-gradient(135deg,#C0CA33,#827717);
}
/* Brown */
.brown{
    background:linear-gradient(135deg,#A1887F,#5D4037);
}
/* Pink */
.pink{
    background:linear-gradient(135deg,#F06292,#C2185B);
}
/* Emerald */
.emerald{
    background:linear-gradient(135deg,#2ECC71,#0B8457);
}
/* Ocean */
.ocean{
    background:linear-gradient(135deg,#00BCD4,#006064);
}
/* Sky */
.sky{
    background:linear-gradient(135deg,#81D4FA,#0288D1);
}
/* Violet */
.violet{
    background:linear-gradient(135deg,#9575CD,#512DA8);
}
/* Gold */
.gold{
    background:linear-gradient(135deg,#FFD54F,#F9A825);
}
/* Olive */
.olive{
    background:linear-gradient(135deg,#9CCC65,#558B2F);
}
/* Slate */
.slate{
    background:linear-gradient(135deg,#90A4AE,#455A64);
}
/* Coral */
.coral{
    background:linear-gradient(135deg,#FF8A65,#D84315);
}
/* Navy */
.navy{
    background:linear-gradient(135deg,#5C6BC0,#1A237E);
}
/*==========================
      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;
}
}
/* Hero */
.hero{
    background:linear-gradient(135deg,#2E7D32,#66BB6A);
    color:#fff;
    border-radius:25px;
    padding:10px;
    margin-bottom:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.hero-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.hero-text h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:8px;
}
.hero-text p{
    margin:0;
    font-size:18px;
    opacity:.95;
}









/* Profile Button */
.profile-btn{
    background:#ffffff;
    border:none;
    border-radius:50px;
    padding:10px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;
}
.profile-btn:hover{
    background:#f8f9fa;
    transform:translateY(-2px);
}
.profile-icon{
    font-size:42px;
    color:#2E7D32;
}
.user-info{
    text-align:left;
    line-height:1.2;
}
.user-name{
    display:block;
    font-weight:600;
    color:#333;
}
.user-info small{
    color:#777;
    font-size:12px;
}