/*=========================================
        CATALOGUE HERO
=========================================*/

.catalogue-hero{

height:70vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

background:
linear-gradient(rgba(5,10,20,.72),rgba(5,10,20,.82)),
url("../images/project1.jpg");

background-size:cover;

background-position:center;

overflow:hidden;

}

.catalogue-hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:radial-gradient(circle,
rgba(0,255,150,.22),
transparent 70%);

filter:blur(70px);

animation:glow 6s infinite;

}

@keyframes glow{

0%{
transform:scale(.9);
}

50%{
transform:scale(1.15);
}

100%{
transform:scale(.9);
}

}

.hero-content{

position:relative;

z-index:5;

max-width:900px;

}

.hero-content h4{

color:#00ff88;

letter-spacing:6px;

font-size:18px;

margin-bottom:25px;

}

.hero-content h1{

font-family:Orbitron;

font-size:75px;

color:#fff;

text-shadow:

0 0 20px #00ff88,

0 0 50px #00ff88;

margin-bottom:20px;

}

.hero-content p{

font-size:22px;

line-height:1.8;

color:#ddd;

margin-bottom:40px;

}

/*=========================================
SECTION TITLE
=========================================*/

.title{

text-align:center;

margin-bottom:60px;

}

.title h2{

font-size:50px;

font-family:Orbitron;

color:#00ff88;

margin-bottom:20px;

}

.title p{

font-size:20px;

color:#ddd;

}

/*=========================================
WHY SOLAR
=========================================*/

.why-solar{

padding:100px 8%;

background:#07111f;

}

.why-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(280px,1fr));

gap:35px;

}

.why-box{

padding:40px;

text-align:center;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.10);

border-radius:25px;

transition:.5s;

}

.why-box:hover{

transform:translateY(-10px);

box-shadow:

0 0 25px rgba(0,255,150,.35),

0 0 50px rgba(0,255,150,.18);

}

.icon{

font-size:60px;

margin-bottom:20px;

}

.why-box h3{

color:#00ff88;

margin-bottom:18px;

font-size:24px;

}

.why-box p{

line-height:1.8;

color:#ddd;

}

/*=========================================
PRODUCTS
=========================================*/

.products{

padding:100px 8%;

background:#0d1827;

}

.product-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.product-card{

background:rgba(255,255,255,.05);

border-radius:25px;

overflow:hidden;

transition:.5s;

backdrop-filter:blur(20px);

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:

0 0 25px #00ff88;

}

.product-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card h3{

padding:20px;

font-size:26px;

font-family:Orbitron;

color:#00ff88;

}

.product-card p{

padding:0 20px 25px;

color:#ddd;

line-height:1.8;

}

/*=========================================
CTA
=========================================*/

.catalogue-cta{

padding:120px 20px;

text-align:center;

background:linear-gradient(135deg,#03111d,#081a2b);

}

.catalogue-cta h2{

font-size:52px;

font-family:Orbitron;

margin-bottom:20px;

color:#fff;

}

.catalogue-cta p{

font-size:22px;

color:#ddd;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*=========================================
BUTTONS
=========================================*/

.btn-primary{

padding:18px 40px;

background:#00ff88;

color:#000;

border-radius:50px;

font-weight:bold;

text-decoration:none;

transition:.4s;

}

.btn-primary:hover{

box-shadow:

0 0 25px #00ff88,

0 0 50px #00ff88;

}

.btn-secondary{

padding:18px 40px;

border:2px solid #00ff88;

border-radius:50px;

color:white;

text-decoration:none;

transition:.4s;

}

.btn-secondary:hover{

background:#00ff88;

color:#000;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.hero-content h1{

font-size:46px;

}

.title h2{

font-size:34px;

}

.catalogue-cta h2{

font-size:34px;

}

.hero-content p{

font-size:18px;

}

}