/*=========================================
PAGE HERO
=========================================*/

.page-hero{

    position:relative;
    background:#ffffff;
    padding:120px 20px 90px;
    overflow:hidden;
    text-align:center;

}

/*=========================================
BACKGROUND
=========================================*/

.page-hero::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(220,38,38,.05);

    border-radius:50%;

    top:-180px;
    left:-150px;

}

.page-hero::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    background:rgba(220,38,38,.04);

    border-radius:50%;

    bottom:-170px;
    right:-120px;

}

/*=========================================
CONTAINER
=========================================*/

.page-hero .container{

    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;

}

/*=========================================
BREADCRUMB
=========================================*/

.breadcrumb{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:30px;

    font-size:15px;

}

.breadcrumb a{

    color:#20c05c;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.breadcrumb a:hover{

    color:#000;

}

.breadcrumb span{

    color:#999;

}

.breadcrumb strong{

    color:#111;
    font-weight:700;

}

/*=========================================
TITLE
=========================================*/

.page-hero h1{

    font-size:58px;
    line-height:1.15;
    color:#111;
    font-weight:800;
    margin-bottom:25px;

}

.page-hero h1 span{

    display:block;
    color:#20c05c;

}

/*=========================================
DESCRIPTION
=========================================*/

.page-hero p{

    max-width:760px;
    margin:auto;

    font-size:19px;

    line-height:1.9;

    color:#666;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.page-hero{

padding:100px 20px 70px;

}

.page-hero h1{

font-size:44px;

}

.page-hero p{

font-size:17px;

}

}

@media(max-width:768px){

.page-hero{

padding:90px 20px 60px;

}

.page-hero h1{

font-size:34px;

}

.page-hero p{

font-size:16px;
line-height:1.8;

}

.breadcrumb{

font-size:14px;
gap:6px;

}

}

@media(max-width:480px){

.page-hero{

padding:80px 15px 50px;

}

.page-hero h1{

font-size:28px;
line-height:1.3;

}

.page-hero p{

font-size:15px;

}

.breadcrumb{

font-size:13px;

}

}


/* =========================================
   MW SCALE SOLAR PROJECTS
========================================= */

.mw-solar-about-section{
    padding:100px 20px;
    background:#ffffff;
}

.mw-solar-about-section .container{
    max-width:1300px;
    margin:auto;
}

.about-wrapper{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:60px;
    align-items:center;
}

/* IMAGE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
}

.capacity-badge{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#20c05c;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.capacity-badge h3{
    font-size:48px;
    margin:0;
}

.capacity-badge span{
    font-size:14px;
}

/* CONTENT */

.section-tag{
    display:inline-block;
    padding:10px 24px;
    background:#20c05c15;
    color:#20c05c;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
}

.about-content p{
    color:#64748b;
    font-size:18px;
    line-height:32px;
    margin-bottom:20px;
}

/* FEATURES */

.project-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.feature-item i{
    color:#20c05c;
    margin-top:5px;
}

.feature-item span{
    color:#334155;
    line-height:28px;
}

/* STATS */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.stat-card{
    background:#f8fafc;
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.stat-card h3{
    color:#20c05c;
    font-size:42px;
    margin-bottom:10px;
}

.stat-card span{
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:450px;
    }

}

@media(max-width:768px){

    .mw-solar-about-section{
        padding:80px 15px;
    }

    .about-content h2{
        font-size:34px;
    }

    .project-features{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

}





/* =========================================
   MW BENEFITS SECTION
========================================= */

.mw-benefits-section{
    padding:100px 20px;
    background:#f8fafc;
}

.mw-benefits-section .container{
    max-width:1300px;
    margin:auto;
}

/* HEADER */

.section-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:10px 24px;
    background:#20c05c15;
    color:#20c05c;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.section-header h2{
    font-size:50px;
    color:#111827;
    margin-bottom:20px;
}

.section-header p{
    color:#64748b;
    line-height:32px;
}

/* WRAPPER */

.benefits-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* CARD */

.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-icon{
    width:70px;
    height:70px;
    min-width:70px;
    background:#20c05c15;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    color:#20c05c;
    font-size:30px;
}

.benefit-text h3{
    color:#111827;
    margin-bottom:10px;
    font-size:22px;
}

.benefit-text p{
    color:#64748b;
    line-height:30px;
}

/* FEATURED CARD */

.featured-card{
    background:linear-gradient(135deg,#20c05c,#15803d);
    color:#fff;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.featured-content h2{
    margin-bottom:15px;
}

.featured-content p{
    color:#fff;
    line-height:30px;
}

/* BANNER */

.highlight-banner{
    margin-top:50px;
    background:#111827;
    border-radius:25px;
    padding:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.highlight-item{
    text-align:center;
}

.highlight-item h3{
    color:#20c05c;
    font-size:42px;
    margin-bottom:10px;
}

.highlight-item span{
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

    .benefits-wrapper{
        grid-template-columns:1fr;
    }

    .highlight-banner{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .mw-benefits-section{
        padding:80px 15px;
    }

    .section-header h2{
        font-size:34px;
    }

    .benefit-card{
        flex-direction:column;
        text-align:center;
    }

    .benefit-icon{
        margin:auto;
    }

    .highlight-banner{
        grid-template-columns:1fr;
    }

}



/* =========================================
   SOLAR EPC & O&M SERVICES
========================================= */

.solar-services-section{
    padding:100px 20px;
    background:#f8fafc;
}

.solar-services-section .container{
    max-width:1300px;
    margin:auto;
}

/* HEADER */

.section-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:10px 24px;
    background:#20c05c15;
    color:#20c05c;
    border-radius:50px;
    font-weight:700;
    margin-bottom:15px;
}

.section-header h2{
    font-size:48px;
    color:#111827;
    margin-bottom:20px;
}

.section-header p{
    color:#64748b;
    line-height:32px;
}

/* SPLIT LAYOUT */

.services-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.service-column{
    background:#fff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.epc-column{
    border-top:6px solid #20c05c;
}

.om-column{
    border-top:6px solid #111827;
}

/* HEADER */

.column-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.column-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#20c05c15;
    display:flex;
    align-items:center;
    justify-content:center;
}

.column-icon i{
    font-size:30px;
    color:#20c05c;
}

.column-header h3{
    font-size:32px;
    color:#111827;
}

.column-description{
    color:#64748b;
    line-height:30px;
    margin-bottom:35px;
}

/* ITEMS */

.service-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    padding-bottom:25px;
    border-bottom:1px solid #e5e7eb;
}

.service-item:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.number{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#20c05c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.service-item h4{
    color:#111827;
    margin-bottom:8px;
}

.service-item p{
    color:#64748b;
    line-height:28px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .services-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .solar-services-section{
        padding:80px 15px;
    }

    .section-header h2{
        font-size:34px;
    }

    .service-column{
        padding:25px;
    }

    .column-header{
        flex-direction:column;
        text-align:center;
    }

    .column-header h3{
        font-size:26px;
    }

}



/*==============================
SOLAR GALLERY
==============================*/

.solar-gallery{

    padding:100px 0;
    background:#ffffff;

}

.section-title{

    text-align:center;
    max-width:750px;
    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;
    color:#e63946;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;

}

.section-title h2{

    font-size:46px;
    color:#111;
    margin-bottom:20px;
    font-weight:700;

}

.section-title p{

    color:#666;
    font-size:17px;
    line-height:30px;

}

/*==============================
GRID
==============================*/

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.gallery-item{

    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item img{

height:260px;

}

.section-title h2{

font-size:38px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:767px){

.solar-gallery{

padding:70px 0;

}

.gallery-grid{

grid-template-columns:1fr;
gap:20px;

}

.gallery-item img{

height:240px;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:15px;
line-height:28px;

}

}