/*=========================================================
JAI GOLJU SOLAR ENERGY
Author : WeDigital India
Version : 1.0
=========================================================*/


/*======================================
ROOT VARIABLES
=======================================*/

:root {

    --primary: #0B5ED7;
    --secondary: #198754;
    --accent: #FFC107;

    --dark: #10243E;

    --text: #5B6575;

    --light: #F7FAFC;

    --white: #ffffff;

    --border: #E8EDF4;

    --radius: 14px;

    --transition: .35s ease;

    --shadow: 0 15px 45px rgba(0, 0, 0, .08);

}


/*======================================
RESET
=======================================*/

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;

    font-size: 16px;

    color: var(--text);

    background: #fff;

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    transition: var(--transition);

}

ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

section {

    position: relative;

}

.section-padding {

    padding: 100px 0;

}

/*======================================
HEADER
=======================================*/

.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: var(--accent);
}

.top-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.top-social a {
    color: #fff;
    font-size: 15px;
}

.top-social a:hover {
    color: var(--accent);
}


/*======================================
NAVBAR
=======================================*/

.site-header {

    position: fixed;

    left: 0;

    top: 40px;

    width: 100%;

    z-index: 999;

    transition: .35s;

}

.site-header.scrolled {

    top: 0;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.navbar-custom {

    padding: 18px 0;

}

.logo img {

    height: 70px;

}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav-menu a {

    color: var(--dark);

    font-weight: 600;

    font-size: 15px;

    position: relative;

}

.nav-menu a:hover {

    color: var(--primary);

}

.nav-menu a.active {

    color: var(--primary);

}

.nav-menu a::after {

    content: "";

    position: absolute;

    bottom: -8px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .35s;

}

.nav-menu a:hover::after,

.nav-menu a.active::after {

    width: 100%;

}


/*======================================
BUTTON
=======================================*/

.theme-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: linear-gradient(135deg,
            var(--accent),
            #ffb703);

    color: #222;

    padding: 14px 30px;

    border-radius: 50px;

    font-weight: 600;

    box-shadow: 0 12px 25px rgba(255, 193, 7, .35);

    transition: .35s;

}

.theme-btn:hover {

    transform: translateY(-4px);

    color: #fff;

    background: var(--primary);

}

/*======================================
MOBILE
=======================================*/

.mobile-toggle {

    font-size: 28px;

    cursor: pointer;

    display: none;

}

@media(max-width:991px) {

    .nav-menu {

        display: none;

    }

    .mobile-toggle {

        display: block;

    }

    .logo img {

        height: 60px;

    }

    .site-header {

        top: 0;

        background: #fff;

    }

    .top-bar {

        display: none;

    }

}

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.mobile-nav a {

    font-size: 18px;

    font-weight: 600;

    color: var(--dark);

}

.mobile-nav a:hover {

    color: var(--primary);

}

.offcanvas {

    width: 320px;

}

.offcanvas-header {

    padding: 25px;

}

.offcanvas-body {

    padding: 25px;

}

/*======================================
HERO SECTION
=======================================*/

.hero-section {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.btn-outline-theme:hover {
    background: var(--primary);
    color: #fff;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}

.hero-rating h3 {
    margin: 0;
    font-size: 32px;
    color: var(--dark);
}

.hero-rating p {
    margin: 0;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
    min-width: 180px;
}

.floating-card h4 {
    margin: 0;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.floating-card p {
    margin: 5px 0 0;
    font-size: 14px;
}

.card-one {
    top: 30px;
    left: -40px;
}

.card-two {
    bottom: 50px;
    right: -30px;
}

@media(max-width:991px) {

    .hero-section {
        padding: 140px 0 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

}
/*==================================================
TRUST SECTION
==================================================*/

.trust-section{

    padding:60px 0;

    background:#ffffff;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.trust-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px 18px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.trust-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.trust-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(11,94,215,.08);

    margin-bottom:18px;

}

.trust-icon i{

    font-size:30px;

    color:var(--primary);

}

.trust-box h6{

    font-size:17px;

    font-weight:600;

    color:var(--dark);

    margin:0;

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    background:var(--light);

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.experience-card{

    position:absolute;

    bottom:-25px;

    right:-25px;

    background:var(--primary);

    color:#fff;

    width:170px;

    height:170px;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    box-shadow:var(--shadow);

}

.experience-card h2{

    font-size:52px;

    font-weight:700;

    margin-bottom:5px;

}

.experience-card p{

    margin:0;

    text-align:center;

}

.section-tag{

    display:inline-block;

    background:#EAF4FF;

    color:var(--primary);

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:var(--dark);

    margin-bottom:20px;

    line-height:1.3;

}

.section-description{

    margin-bottom:30px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.about-list div{

    font-weight:500;

    color:var(--dark);

}

.about-list i{

    color:var(--secondary);

    margin-right:10px;

}

.feature-box{

    display:flex;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:16px;

    box-shadow:var(--shadow);

    height:100%;

}

.feature-box i{

    font-size:40px;

    color:var(--primary);

}

.feature-box h5{

    margin-bottom:8px;

    color:var(--dark);

}

.feature-box p{

    margin:0;

    font-size:15px;

}

@media(max-width:991px){

.section-title{

    font-size:34px;

}

.about-list{

    grid-template-columns:1fr;

}

.experience-card{

    width:130px;

    height:130px;

    right:15px;

    bottom:15px;

}

.experience-card h2{

    font-size:36px;

}

}

/*=========================================
SERVICES
=========================================*/

/* .services-section{
    background:#fff;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:0;
    background:var(--primary);
    transition:.4s;
}

.service-card:hover::before{
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:rgba(11,94,215,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    font-size:36px;
    color:var(--primary);
}

.service-card h4{
    font-size:24px;
    margin-bottom:15px;
    color:var(--dark);
}

.service-card ul{
    margin:25px 0;
}

.service-card ul li{
    padding:7px 0;
    position:relative;
    padding-left:25px;
}

.service-card ul li::before{
    content:"✓";
    color:var(--secondary);
    position:absolute;
    left:0;
    font-weight:700;
}

.service-card a{
    font-weight:600;
    color:var(--primary);
}

.service-card a:hover{
    letter-spacing:.5px;
}

.featured{
    background:linear-gradient(135deg,var(--primary),#1f6fe5);
    color:#fff;
}

.featured h4,
.featured p,
.featured ul li,
.featured a{
    color:#fff;
}

.featured .service-icon{
    background:rgba(255,255,255,.15);
}

.featured .service-icon i{
    color:#fff;
}

.featured ul li::before{
    color:#FFC107;
} */


/*=========================================
SERVICES
=========================================*/

.services{

    background:#fff;

}

.section-heading{

    max-width:760px;

    margin:auto auto 70px;

}

.section-heading h2{

    font-size:46px;

    font-weight:700;

    color:var(--dark);

    margin:18px 0;

}

.section-heading p{

    font-size:17px;

    color:var(--text);

}

.service-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.service-image{

    height:220px;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-icon{

    width:72px;

    height:72px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    position:absolute;

    left:50%;

    top:185px;

    transform:translateX(-50%);

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    border:5px solid #fff;

}

.service-icon i{

    color:var(--secondary);

    font-size:28px;

}

.service-content{

    padding:55px 30px 30px;

    text-align:center;

}

.service-content h4{

    font-size:28px;

    margin-bottom:15px;

    color:var(--dark);

}

.service-content p{

    font-size:16px;

    color:var(--text);

    margin-bottom:22px;

}

.service-content a{

    color:var(--secondary);

    font-weight:600;

    display:inline-flex;

    gap:8px;

    align-items:center;

}

.service-content a:hover{

    color:var(--primary);

}

.service-content a i{

    transition:.3s;

}

.service-content a:hover i{

    transform:translateX(5px);

}

@media(max-width:991px){

.service-image{

height:200px;

}

.section-heading h2{

font-size:36px;

}

}

@media(max-width:767px){

.section-heading{

margin-bottom:45px;

}

.service-content{

padding:55px 22px 25px;

}

.service-content h4{

font-size:24px;

}

}

/*==================================
PROJECTS
==================================*/

.projects{

background:#F8FBFD;

}

.project-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

grid-auto-rows:260px;

gap:22px;

}

.project-item{

position:relative;

overflow:hidden;

border-radius:20px;

display:block;

}

.project-item.large{

grid-row:span 2;

}

.project-item img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.project-item:hover img{

transform:scale(1.08);

}

.overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:25px;

background:linear-gradient(transparent,rgba(0,0,0,.8));

color:#fff;

}

.overlay span{

display:inline-block;

background:rgba(255,255,255,.15);

padding:6px 15px;

border-radius:30px;

font-size:13px;

margin-bottom:10px;

backdrop-filter:blur(5px);

}

.overlay h4{

margin:0;

font-size:24px;

font-weight:600;

}

@media(max-width:991px){

.project-grid{

grid-template-columns:1fr;

grid-auto-rows:300px;

}

.project-item.large{

grid-row:auto;

}

}   

.products{

background:#fff;

}

.product-menu{

margin-top:40px;

display:flex;

flex-direction:column;

gap:18px;

}

.product-item{

padding:18px 24px;

background:#fff;

border-radius:14px;

cursor:pointer;

border:1px solid var(--border);

display:flex;

align-items:center;

gap:18px;

transition:.35s;

}

.product-item i{

font-size:28px;

color:var(--primary);

}

.product-item.active,

.product-item:hover{

background:var(--primary);

color:#fff;

}

.product-item.active i,

.product-item:hover i{

color:#fff;

}

.product-display{

background:#fff;

padding:35px;

border-radius:22px;

box-shadow:var(--shadow);

text-align:center;

}

.product-display img{

height:420px;

object-fit:contain;

margin:auto;

}

.product-content{

margin-top:30px;

}

.product-content h3{

font-size:34px;

margin-bottom:15px;

}

.why-us{
    background:#f8fbfd;
}

.why-gallery{
    position:relative;
    min-height:620px;
}

.big-image img{
    width:75%;
    border-radius:24px;
    object-fit:cover;
    box-shadow:var(--shadow);
}

.small-image{
    position:absolute;
    right:0;
    width:45%;
}

.small-image img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.small-image.top{
    top:30px;
}

.small-image.bottom{
    bottom:20px;
}

.counter-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:18px;
    box-shadow:var(--shadow);
}

.counter-box h3{
    color:var(--secondary);
    font-size:42px;
    margin:0;
}

.why-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.why-list li{
    list-style:none;
    font-weight:500;
}

.why-list i{
    color:var(--secondary);
    margin-right:8px;
}

/*=========================================
SOLAR CALCULATOR
=========================================*/

.solar-calculator{

    background:#0E223C;

}

.calculator-box{

    border-radius:24px;

    overflow:hidden;

    color:#fff;

}

.calculator-content h2{

    font-size:48px;

    margin:20px 0;

    color:#fff;

}

.calculator-content p{

    color:#d7dce5;

}

.calculator-card{

    background:#132C4B;

    border-radius:20px;

    padding:40px;

}

.bill-box label{

    font-weight:600;

    margin-bottom:10px;

}

.bill-box input{

    width:100%;

}

.result-box{

    background:#fff;

    color:#222;

    padding:24px;

    border-radius:16px;

    text-align:center;

    height:100%;

}

.result-box span{

    font-size:14px;

    color:#666;

}

.result-box h4{

    margin-top:10px;

    color:var(--secondary);

    font-size:30px;

}

/*=========================================
PROCESS
=========================================*/

.process-section{

    background:#fff;

}

.subsidy-box{

    background:#F8FBFD;

    padding:30px;

    border-radius:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:35px;

    box-shadow:var(--shadow);

}

.subsidy-box h4{

    font-size:40px;

    color:var(--secondary);

    margin-bottom:5px;

}

.timeline{

    position:relative;

    margin-left:40px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:25px;

    top:0;

    bottom:0;

    width:3px;

    background:#E6EEF6;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:25px;

    margin-bottom:45px;

}

.timeline-number{

    width:52px;

    height:52px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

    position:relative;

    z-index:2;

}

.timeline-content{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:25px;

    flex:1;

    transition:.35s;

}

.timeline-content:hover{

    transform:translateX(8px);

    box-shadow:var(--shadow);

}

.timeline-content h4{

    color:var(--dark);

    margin-bottom:12px;

}

.timeline-content p{

    margin:0;

}

@media(max-width:991px){

.timeline{

margin-top:50px;

margin-left:0;

}

.subsidy-box{

flex-direction:column;

gap:20px;

text-align:center;

}

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{

background:#F8FBFD;

}

.testimonial-feature{

background:#fff;

padding:50px;

border-radius:24px;

box-shadow:var(--shadow);

text-align:center;

height:100%;

}

.google-rating img{

width:60px;

margin:auto auto 20px;

}

.google-rating h2{

font-size:70px;

color:var(--primary);

margin-bottom:5px;

}

.stars{

font-size:22px;

color:#FFC107;

margin-bottom:10px;

letter-spacing:3px;

}

.review-card{

background:#fff;

padding:30px;

border-radius:20px;

height:100%;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.review-card:hover{

transform:translateY(-8px);

}

.review-header{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.review-header img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}

.review-header h5{

margin-bottom:3px;

}

.review-header span{

font-size:14px;

color:#777;

}

/*=========================================
FOOTER
=========================================*/

.footer{

background:#0E223C;

color:#C9D4E3;

padding:80px 0 0;

}

.footer h5{

color:#fff;

margin-bottom:25px;

}

.footer ul{

padding:0;

list-style:none;

}

.footer li{

margin-bottom:12px;

}

.footer a{

color:#C9D4E3;

transition:.3s;

}

.footer a:hover{

color:#FFC107;

padding-left:5px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:42px;

height:42px;

border:1px solid rgba(255,255,255,.2);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}

.footer-contact li{

display:flex;

gap:12px;

}

.footer-contact i{

color:#FFC107;

}

.newsletter input{

height:52px;

}

.footer-bottom{

margin-top:60px;

padding:20px 0;

border-top:1px solid rgba(255,255,255,.1);

font-size:15px;

}