
/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    overflow-x:hidden;
    width:100%;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', 'Segoe UI', sans-serif;
    color:#111827;
    background:#fff;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* =========================
   LOADER
========================= */

#loader{
    position:fixed;
    inset:0;
    background:#08120c;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
    color:white;
}

.loader-content h1{
    margin-top:25px;
    font-size:2rem;
    letter-spacing:1px;
}

.loader-content p{
    margin-top:10px;
    color:#b8b8b8;
}

.ring-wrapper{
    position:relative;
    width:90px;
    height:90px;
    margin:auto;
}

.ring-logo{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:80px;
    height:auto;
    border-radius:50%;
}

.energy-ring{
    width:90px;
    height:90px;
    border:5px solid rgba(255, 255, 255, 0.15);
    border-top:5px solid #3cff00;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:auto;
    box-shadow:0 0 15px #3cff00, 0 0 30px #3cff00;
}

@keyframes spin {
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* =========================
   NAVBAR
========================= */

.logo-img{
    width:100px;
    display:block;
    
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-around;
    align-items:center;
    background-color: #fff;
    transition: all 0.3s ease;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    z-index:1000;
    box-shadow:0 2px 15px rgba(0, 0, 0, 0.05);
}

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:#111827;
}

.nav-links{
    list-style:none;
    display:flex;   
    gap:30px;
}

.nav-links a{
    color:#111827;
    font-size:18px;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#2dbb00;
}
/* =========================
   DROPDOWN MENU
========================= */

.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    background: rgb(207, 207, 207);
    border-radius: 8px;
    margin: 8px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    top: 120%;
    left: 0;
    
    min-width: 220px;
    
    
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;

    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 18px;
    color: #111827;
    font-size: 15px;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #f3f4f6;
    color: #2dbb00;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   MOBILE DROPDOWN FIX
========================= */
@media (max-width: 768px) {
    .dropbtn {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown-menu li a {
        color: black;
        padding: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropbtn i {
        margin-left: auto;
    }
}
@media (max-width: 768px) {

    .navbar{
        padding:5px 20px;
        justify-content:space-between;
        align-items:center;
    }

    .logo{
        font-size:1.5rem;
        max-width:220px;
    }
    
    .logo img{
        width: 80px;
    }

    .menu-toggle{
        margin-left: auto;
        display:block;
        color:#111827;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#0f172a;
        display:flex;
        flex-direction:column;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
        gap:0;
        z-index:999;
    }

    .nav-links.active{
        max-height:500px;
        box-shadow:0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .nav-links li{
        width:100%;
        text-align:center;
        list-style:none;
        padding:25px 0;
    }

    .nav-links a{
        color:white;
        font-size:.8rem;
        display:block;
        width:100%;
    }

    .nav-links a:hover{
        color:#2dbb00;
    }
}

/* =========================
   BACKGROUND IMAGE (fixed)
========================= */

#bg-image{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:url('../../assets/resources/main-bg.webp') center center / cover no-repeat;
    z-index:-1;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height: 95vh;
    height: auto;
    padding: 120px 0 60px;
    overflow:hidden;
    color:white;
    
}
@media (max-width: 1100px) and (max-height: 700px) {

  /* NAVBAR FIX */
  .navbar {
    padding: 10px 25px;
    justify-content: space-between;
  }

  .menu-toggle {
    margin-left: auto;
  }

  /* HERO FIX */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 120px 20px 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .content h1 {
    font-size: 2.4rem;
  }

  .content p {
    font-size: 1rem;
  }

  /* GRID FIX (VERY IMPORTANT) */
  .why-grid,
  .offer-grid,
  .benefits-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SERVICE ROW FIX */
  .service-row {
    flex-direction: column;
    gap: 40px;
  }

  /* ABOUT SECTION */
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* REMOVE OVERFLOW ISSUES */
  body, html {
    overflow-x: hidden;
  }
}
/* dark overlay */
.overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../../assets/resources/main-bg.png') center center / cover no-repeat;

    z-index: 1;
}
.description {
    font-size: 17px;
    margin: 20px 0;
    color: white;
    max-width: 500px;
}

/* highlight bullets */
.highlight {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
}

.highlight span {
    font-size: 15px;
    color: white;
    background: rgba(34,197,94,0.1);
    padding: 8px 12px;
    border-radius: 8px;
    width: fit-content;
}
/* NEW container */
.hero-container{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8%;
    gap:40px;
}

/* LEFT / TEXT SIDE */
.content{
    flex:1;
    max-width:600px;
    text-align:left;
}

.content h1{
    font-size:clamp(2.5rem, 6vw, 4.5rem);
    line-height:1.1;
    margin-bottom:20px;
}

.content p{
    font-size:1.3rem;
    color:#e7e7e7;
    margin-bottom:35px;
}

.world-image img{
    width:100%;
    max-width:800px;
    animation: float 6s ease-in-out infinite;
    transform-origin:center;
}

/* @keyframes indiaHero{
    0%{
        transform: translateY(20px) rotate(-1deg) scale(1);
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) brightness(1);
    }
    50%{
        transform: translateY(-15px) rotate(1.5deg) scale(1.04);
        filter: drop-shadow(0 0 50px rgba(0,255,120,0.25)) brightness(1.1);
    }
    100%{
        transform: translateY(20px) rotate(-1deg) scale(1);
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) brightness(1);
    }
} */


/* BUTTON */
.btn{
    display:inline-block;
    text-decoration:none;
    color:white;
    background:#2dbb00;
    padding:14px 32px;
    margin-bottom: 20px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#38e000;
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(56,224,0,0.4);
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 1024px){

    .hero{
        height:auto;
        padding:80px 0;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        gap:50px;
    }

    .content{
        max-width:100%;
    }

    .content h1{
        font-size:clamp(2rem, 5vw, 3rem);
    }

    .content p{
        font-size:1.1rem;
    }

    .highlight{
        align-items:center;
    }

    .highlight span{
        margin:0 auto;
    }

    .world-image img{
        max-width:500px;
    }
}


/* Mobile Devices */
@media (max-width: 768px){

    .hero{
        padding:60px 0;
    }

    .hero-container{
        padding:0 5%;
        gap:40px;
    }

    .content h1{
        font-size:2rem;
        line-height:1.2;
    }

    .content p{
        font-size:1rem;
        margin-bottom:25px;
    }

    .description{
        font-size:15px;
        max-width:100%;
    }

    .highlight span{
        font-size:14px;
        padding:6px 10px;
    }

    .btn{
        padding:12px 26px;
        font-size:14px;
    }

    .world-image img{
        max-width:380px;
    }
}


/* Small Phones */
@media (max-width: 480px){

    .hero-container{
        padding: 70px;
    }

    .content h1{
        font-size:1.7rem;
    }

    .content p{
        font-size:0.95rem;
    }

    .highlight{
        gap:8px;
    }

    .highlight span{
        font-size:13px;
    }

    .btn{
        width:100%;
        margin-bottom: 20px;
        text-align:center;
    }

    .world-image img{
        max-width:700px;
    }
}
/* =========================
   SECTION HEADER (common)
========================= */

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-tag{
    color:#2dbb00;
    font-family:'Libre Baskerville', serif;
    font-style:italic;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:3rem;
    color:black;
}

.section-header p{
    color:#64748b;
    line-height:1.8;
}

/* =========================
   ABOUT BANNER
========================= */

.about-banner{
    height:60vh;
    position:relative;
    overflow:hidden;
}

.about-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.55);
    display:flex;
    justify-content:center;
    align-items:center;
}

.banner-overlay h1{
    color:white;
    font-size:5rem;
    font-weight:700;
    letter-spacing:4px;
}

/* =========================
   ABOUT SECTION
========================= */

.about{
    padding:120px 8%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-tag{
    color:#2dbb00;
    font-family:'Libre Baskerville', serif;
    font-style:italic;
    font-weight:600;
}

.about-content h2{
    font-size:3rem;
    line-height:1.2;
    margin:15px 0 25px;
}

.about-description{
    color:#64748b;
    line-height:1.9;
    margin-bottom:35px;
}

.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.mv-card{
    background:#f8fafc;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #2dbb00;
    transition:0.4s;
}

.mv-card:hover{
    transform:translateY(-8px);
}

.mv-card h3{
    margin-bottom:10px;
}

/* =========================
   VISION SECTION
========================= */

.vision-section{
    position:relative;
    background:#f3f3f3;
    min-height:500px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:80px 100px;
}

.bg-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    font-size:12rem;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:2px #d6dbe5;
    white-space:nowrap;
    z-index:1;
}

.vision-content{
    position:relative;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:2;
}

.vision-left{
    max-width:500px;
}

.vision-left h2{
    font-size:4rem;
    font-weight:300;
    color:#005f9e;
    line-height:1.1;
    margin-bottom:25px;
}

.vision-left p{
    font-size:1.2rem;
    color:#005f9e;
    line-height:1.8;
}

.vision-right img{
    width:400px;
    object-fit:contain;
}

@media (max-width: 1200px) and (max-height: 700px) {

    .vision-section{
        padding: 60px 40px;
    }

    .bg-text{
        font-size: 8rem;
        -webkit-text-stroke: 1.5px #d6dbe5;
    }

    .vision-content{
        gap: 40px;
    }

    .vision-left h2{
        font-size: 3rem;
    }

    .vision-left p{
        font-size: 1.05rem;
    }

    .vision-right img{
        width: 380px;
    }
}

.why-us{
    padding:120px 8%;
    background:#f8fafc;
}

.why-header,
.why-top{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.why-header h2,
.why-top h2{
    font-size:3rem;
    color:#111827;
    margin-bottom:20px;
}

.why-tag{
    font-family:'Libre Baskerville', serif;
    font-style:italic;
    color:#2dbb00;
    margin-bottom:15px;
}

.why-top p{
    color:#64748b;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:50px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.08);
    border:1px solid #e5e7eb;
    transition:0.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card i{
    font-size:3rem;
    color:#2dbb00;
    margin-bottom:20px;
}

.why-card h3{
    color:#111827;
    margin-bottom:10px;
}

.why-card p{
    color:#64748b;
    line-height:1.7;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose{
    padding:120px 8%;
    background:#ffffff;
}

.why-choose .why-grid{
    grid-template-columns:repeat(3, 1fr);
}

/* =========================
   STATS
========================= */

.stats,
.stats-section{
    padding:100px 8%;
    background:#0f172a;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.stat-card,
.stat{
    text-align:center;
}

.stat-card h2,
.stat h2{
    color:#2dbb00;
    font-size:3.5rem;
    margin-bottom:10px;
}

.stat-card p,
.stat p{
    color:white;
    font-size:1.1rem;
}

/* =========================
   PROCESS
========================= */

.process,
.process-section{
    padding:120px 8%;
    background:#f8fafc;
}

.process-header{
    text-align:center;
    margin-bottom:80px;
}

.process-header p{
    color:#2dbb00;
    font-weight:600;
    margin-bottom:10px;
}

.process-header h2{
    font-size:3rem;
    color:#111827;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.process-card{
    padding:35px;
    border-radius:20px;
    background:white;
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.08);
    transition:0.4s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-card > span{
    font-size:2rem;
    font-weight:700;
    color:#2dbb00;
}

.process-card h3{
    margin:15px 0;
}

.process-card p{
    color:#64748b;
    line-height:1.7;
}


.hero-timeline{
    display:grid;
    grid-template-columns:repeat(3  , 1fr);
    gap:30px;
}
.timeline{
    display:grid;
    grid-template-columns:repeat(5  , 1fr);
    gap:30px;
}

.step{
    background:white;
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.06);
    transition:0.4s ease;
}

.step:hover{
    transform:translateY(-10px);
}

.step span{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
    background-color: #2dbb00;
    color:white;
    font-size:1.4rem;
    font-weight:700;
}

.step h3{
    color:#111827;
    font-size:1.2rem;
}

/* =========================
   SERVICES HERO
========================= */

.services-hero{
    position:relative;
    height:70vh;
    background:url('../../assets/resources/services-banner.webp') center center / cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.services-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.6);
}

.services-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.services-content p{
    color:#2dbb00;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:15px;
}

.services-content h1{
    color:white;
    font-size:4rem;
    margin-bottom:20px;
}

.services-content span{
    color:#e2e8f0;
    font-size:1.2rem;
    line-height:1.8;
}

/* =========================
   SERVICE BLOCKS
========================= */

.service-block{
    padding:120px 8%;
    background:white;
}

.service-row{
    display:flex;
    align-items:center;
    gap:80px;
    margin-bottom:120px;
}

.service-row.reverse{
    flex-direction:row-reverse;
}

.service-image{
    flex:1;
}

.service-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0, 0, 0, 0.12);
    transition:0.5s ease;
}

.service-image img:hover{
    transform:scale(1.03);
}

.service-text{
    flex:1;
}

.service-text > span{
    font-size:4rem;
    font-weight:700;
    color:#2dbb00;
    opacity:0.2;
}

.service-text h2{
    font-size:2.8rem;
    color:#111827;
    margin:15px 0;
}

.service-text p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:25px;
}

.service-text ul{
    list-style:none;
}

.service-text ul li{
    padding:12px 0;
    color:#334155;
    border-bottom:1px solid #e5e7eb;
}

/* =========================
   OFFER / SERVICES GRID
========================= */

.offer{
    padding:120px 8%;
    background:#f8fafc;
    position:relative;
}

.offer-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.offer-tag{
    font-family:'Libre Baskerville', serif;
    font-size:1rem;
    font-weight:600;
    font-style:italic;
    color:#2dbb00;
    margin-bottom:15px;
}

.offer-header h2{
    font-size:3rem;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
    line-height:1.2;
}

.offer-desc{
    font-size:1.1rem;
    color:#64748b;
    line-height:1.8;
}

.offer-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.offer-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
    transition:0.4s ease;
    position:relative;
}

.offer-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0, 0, 0, 0.12);
}

.offer-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform 0.8s ease;
}

.offer-card:hover img{
    transform:scale(1.15);
}



.offer-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:220px;
    background:rgba(0, 0, 0, 0.15);
    z-index:1;
    transition:0.4s ease;
}

.offer-card:hover::before{
    background:rgba(0, 0, 0, 0.05);
}

.offer-card::after{
    content:'';
    position:absolute;
    top:-100%;
    left:-100%;
    width:50%;
    height:300%;
    background:rgba(255, 255, 255, 0.15);
    transform:rotate(25deg);
    transition:0.8s;
}

.offer-card:hover::after{
    left:150%;
}

.offer-card h3{
    padding:25px 25px 10px;
    font-size:1.3rem;
    color:#111827;
}

.offer-card p{
    padding:0 25px 25px;
    color:#64748b;
    line-height:1.7;
}

/* Float animation per card child */
.offer-card:nth-child(odd){
    animation:float 6s ease-in-out infinite;
}
.offer-card:nth-child(even){
    animation:float 7s ease-in-out infinite;
}
.offer-card:nth-child(3n){
    animation:float 5s ease-in-out infinite;
}

/* =========================
   SOLAR BENEFITS
========================= */

.solar-benefits{
    padding:120px 8%;
    background:#fff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.benefit-card{
    background:#f8fafc;
    padding:40px;
    text-align:center;
    border-radius:20px;
    transition:0.4s;
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card i{
    font-size:3rem;
    color:#2dbb00;
    margin-bottom:20px;
}

.benefit-card h3{
    margin-bottom:15px;
}

/* =========================
   WHY SOLAR NOW
========================= */

.solar-now{
    padding:120px 8%;
    background:#0f172a;
}

.solar-now-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.solar-now-left h2{
    color:white;
    font-size:3rem;
    margin-bottom:20px;
}

.solar-now-left p{
    color:#cbd5e1;
    line-height:1.8;
}

.reason-card{
    background:#1e293b;
    padding:30px;
    margin-bottom:20px;
    border-radius:16px;
    color:white;
    transition:0.4s;
}

.reason-card:hover{
    transform:translateX(10px);
}

.reason-card span{
    color:#2dbb00;
    font-size:2rem;
    font-weight:bold;
}

/* =========================
   SOLAR CALCULATOR
========================= */
.input-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.input-group select:hover {
    border-color: #2dbb00;
}

.input-group select:focus {
    border-color: #2dbb00;
    box-shadow: 0 0 0 3px rgba(45, 187, 0, 0.15);
}
.solar-section{
    max-width:1400px;
    margin:auto;
    padding:100px 40px;
    display:flex;
    align-items:center;
    gap:80px;
}

.solar-info{
    flex:1;
}

.solar-tag{
    color:#2dbb00;
    font-weight:600;
    font-size:1.1rem;
    margin-bottom:15px;
}

.solar-info h2{
    font-size:3rem;
    margin-bottom:20px;
    color:#111;
}

.solar-desc{
    color:#555;
    line-height:1.9;
    font-size:1.1rem;
}

.solar-features{
    margin-top:30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.solar-features div{
    padding:15px;
    background:#f5f5f5;
    border-left:4px solid #38ff00;
    border-radius:10px;
    font-weight:500;
    transition:0.4s;
}

.solar-features div:hover{
    transform:translateY(-8px);
    background:#38ff00;
    color:white;
}

.calculator-card{
    flex:1;
    margin-top:40px;
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
    animation:floatCard 5s ease-in-out infinite;
    transition:0.4s;
}

.calculator-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(56, 255, 0, 0.25);
    animation:none;
}

.calculator-card h3{
    text-align:center;
    margin-bottom:30px;
    color:#2dbb00;
}

.input-group{
    margin-bottom:25px;
}

.input-group label{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-weight:600;
}

#billValue{
    color:#2dbb00;
}

input[type="range"]{
    width:100%;
    height:8px;
    appearance:none;
    border-radius:20px;
    background:#ddd;
}

input[type="range"]::-webkit-slider-thumb{
    appearance:none;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#2dbb00;
    cursor:pointer;
}

.calculator-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#2dbb00;
    color:white;
    font-size:1rem;
    cursor:pointer;
}

.results{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;
}

.result-box{
    background:#f7f7f7;
    padding:20px;
    border-radius:12px;
    text-align:center;
    transition:0.4s;
}

.result-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0, 0, 0, 0.12);
}

.result-box h4{
    margin-bottom:10px;
    color:#666;
    font-size:0.9rem;
}

.result-box span{
    color:#2dbb00;
    font-size:1.4rem;
    font-weight:700;
}
.solar-hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    padding:40px;
}

.solar-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(56,255,0,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(45,187,0,0.2), transparent 40%),
        #ffffff;
    z-index:-1;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:120px 8%;
    background:#f8fafc;
}

.contact-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-info{
    background-color: #2dbb00;
    color:#fff;
    padding:70px 60px;
    position:relative;
    box-sizing:border-box;
}

.contact-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255, 255, 255, 0.15);
    margin-bottom:20px;
    letter-spacing:1px;
    font-size:0.85rem;
}

.contact-info h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    opacity:0.95;
    margin-bottom:40px;
}

.contact-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature i{
    font-size:20px;
}

.contact-form-box{
    padding:70px;
    box-sizing:border-box;
}

.contact-form-box h3{
    font-size:2rem;
    color:#222;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:2px solid #e5e7eb;
    border-radius:12px;
    font-size:15px;
    transition:0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#2dbb00;
    box-shadow:0 0 20px rgba(255, 107, 0, 0.15);
}

.contact-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background-color: #2dbb00;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}



/* =========================
   CTA
========================= */

.about-cta,
.services-cta{
    padding:120px 8%;
    text-align:center;
    background-color: white;
    color:black;
}

.about-cta h2,
.cta-content h2{
    font-size:3rem;
    margin-bottom:20px;
}

.about-cta p,
.cta-content p{
    margin-bottom:40px;
    opacity:0.95;
    font-size:1.1rem;
}

.cta-content{
    max-width:900px;
    margin:auto;
}

.cta-btn{
    display:inline-block;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    background:white;
    color:#2dbb00;
    font-weight:700;
    transition:0.4s ease;
}

.cta-btn:hover{
    transform:translateY(-5px);
}

/* =========================
   CONTACT BUTTON (standalone)
========================= */

.Contact-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background-color: #2dbb00;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* =========================
   TRUST SECTION
========================= */

.trust-section{
    padding:80px 10%;
    background:#07140e;
    color:white;
    text-align:center;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:25px;
    margin-top:40px;
}

.trust-card{
    background:#0f2418;
    padding:25px;
    border-radius:12px;
    transition:0.3s;
}

.trust-card i{
    font-size:28px;
    color:#2dbb00;
    margin-bottom:10px;
}

.trust-card:hover{
    transform:translateY(-6px);
}

/* =========================
   LG ABOUT / MAP SECTION
========================= */

.lg-about-section{
    width:100%;
    padding:120px 8%;
    background:#f8fafc;
    overflow:hidden;
}

.lg-about-wrapper{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.lg-about-map{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
}

.lg-about-map::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#22c55e;
    border-radius:50%;
    filter:blur(100px);
    opacity:0.18;
    z-index:0;
}

.lg-about-map img{
    position:relative;
    z-index:2;
    width:100%;
    animation:lgFloat 6s ease-in-out infinite;
}

.lg-about-text{
    flex:1;
}

.lg-about-subtitle{
    color:#4ade80;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.lg-about-title{
    color:#111827;
    font-size:3rem;
    line-height:1.2;
    margin:15px 0 25px;
}

.lg-about-description{
    color:#64748b;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:18px;
}

.lg-about-stats{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.lg-stat-card{
    min-width:130px;
    padding:20px;
    border:1px solid rgba(255, 255, 255, 0.08);
    border-radius:15px;
    background:rgba(255, 255, 255, 0.03);
    transition:0.4s;
}

.lg-stat-card:hover{
    transform:translateY(-8px);
}

.lg-stat-card h3{
    color:#4ade80;
    font-size:2rem;
    margin-bottom:5px;
}

.lg-stat-card span{
    color:black;
    font-size:0.9rem;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding:80px 10%;
    background:#ffffff;
    color:#1a1a1a;
}

.faq-item{
    background:#f9f9f9;
    padding:20px 25px;
    border-radius:12px;
    border-left:4px solid #2dbb00;
    transition:0.3s ease;
    margin-bottom:15px;
}

.faq-item h3{
    color:#1a1a1a;
}

.faq-item p{
    color:#555;
}

.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255, 122, 24, 0.15);
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#1C2D37;
    color:white;
    padding:80px 8% 0;
}

.footer-logo{
    width:250px;
    flex-shrink:0;
    background:#fff;
    padding:12px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-logo img{
    width:100%;
    height:auto;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    max-width:1400px;
    margin:auto;
}

.footer-col h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#2dbb00;
}

.footer-col h4{
    margin-bottom:20px;
    color:white;
}

.footer-col p{
    color:white;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
    color:white;
    transition:0.3s;
}

.footer-col ul li a{
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.footer-col ul li:hover,
.footer-col ul li a:hover{
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255, 255, 255, 0.08);
    border-radius:50%;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255, 255, 255, 0.1);
    text-align:center;
    margin-top:50px;
    padding:25px 0;
}

.footer-bottom p{
    color:#94a3b8;  
}

@media (max-width: 768px) {
  .footer-logo{
    width:340px;
    flex-shrink:0;
    background:#fff;
    padding:12px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}
}
/* =========================
   ANIMATIONS
========================= */



.animate,
.scroll-animate{
    opacity:0;
    transform:translateY(60px);
}

.animate.show,
.scroll-animate.show{
    animation:fadeUp 1s ease forwards;
}

/* Delay utilities */
.delay1{
    animation-delay:0.2s;
}
.delay2{
    animation-delay:0.5s;
}
.delay3{
    animation-delay:0.8s;
}
.delay4{
    animation-delay:1.1s;
}
.delay5{
    animation-delay:1.4s;
}

.animate-left{
    opacity:0;
    transform:translateX(-100px);
}

.animate-left.show{
    animation:slideLeft 1.2s ease forwards;
}

.animate-right{
    opacity:0;
    transform:translateX(100px);
}

.animate-right.show{
    animation:slideRight 1.2s ease forwards;
}

/* Scroll-triggered reveal variants */

.reveal-up{
    opacity:0;
    transform:translateY(60px);
}

.reveal-up.active{
    animation:fadeUp 1s ease forwards;
}

.reveal-left{
    opacity:0;
    transform:translateX(-80px);
}

.reveal-left.active{
    opacity:1;
    transform:translateX(0);
    transition:1s ease;
}

.reveal-right{
    opacity:0;
    transform:translateX(80px);
}

.reveal-right.active{
    opacity:1;
    transform:translateX(0);
    transition:1s ease;
}

/* --- Keyframes --- */

@keyframes fadeUp {
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideLeft {
    from{
        opacity:0;
        transform:translateX(-120px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight {
    from{
        opacity:0;
        transform:translateX(120px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float {
    0%, 100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes floatCard {
    0%, 100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes lgFloat {
    0%, 100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}








.team-title {
  text-align: center;
  padding: 70px 5vw 20px;
}

.team-title h2 {
  font-size: 40px;
  font-weight: 900;
}

.team-title p {
  color: var(--soft);
  margin-top: 10px;
}.team-title {
  text-align: center;
  padding: 70px 5vw 20px;
}

.team-title h2 {
  font-size: 40px;
  font-weight: 900;
}

.team-title p {
  color: var(--soft);
  margin-top: 10px;
}


/* GRID */
.grid {
  max-width: 1200px;
  margin: auto;
  padding: 40px 5vw 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-timeline{
    display:grid;
    grid-template-columns:repeat(1  , 1fr);
    gap:30px;
}
}

/* Mobile */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 5vw 60px;
  }
}

/* CARD */
.card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* INFO BOX */
.info {
  position: absolute;
  bottom: 0;
  padding: 18px;
  color: white;
  z-index: 2;
}

.info h3 {
  font-size: 18px;
  font-weight: 800;
}

.info p {
  font-size: 13px;
  opacity: 0.9;
}

/* ROLE TAG */
.tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 6px;
}
/* ================= MODAL ================= */


.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 80px;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
}

/* MAIN BOX */
.modal-inner {
  width: 100%;
  max-width: 1000px;
  background: white;
  border-radius: 18px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* IMAGE SIDE */
.photo-side {
  position: relative;
  width: 100%;
  height: 100%;
}

.photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* ✅ important fix */
}

/* CONTENT SIDE */
.main {
  padding: 50px;
  overflow-y: auto;
  max-height: 90vh;
}

/* BACK BUTTON */
.back {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .modal-inner {
    grid-template-columns: 1fr;
    max-height: 90vh;
    margin-top: 110px;
  }

  .photo-side {
    height: 300px;
  }

  .main {
    padding: 25px;
    max-height: none;
  }
}

.main h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 5px;
}

.role {
  color: var(--#2dbb00);
  font-weight: 700;
  margin-bottom: 20px;
}

.bio {
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--ink);
}

/* FACTS */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.fact {
  background: #f7f7f7;
  padding: 12px;
  border-radius: 10px;
}
.fact strong {
  font-size: 12px;
  color: var(--soft);
  display: block;
  text-transform: uppercase;
}
.fact span {
  font-weight: 600;
}

/* SKILLS */
.skills span {
  display: inline-block;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin: 4px;
}


.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 60px 5vw;
  background: #fff;
  justify-content: space-between;
}

.stat {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f7f7f7;
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.stat h2 {
  font-size: 40px;
  color: var(--#2dbb00);
}
.stat p {
    color: black;
    font-weight: bold;
}

.values {
  padding: 80px 5vw;
  background: #f4f3ee;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.team-hero {
  position: relative;
  margin-top: 100px;
  width: 100%;

  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;

  color: black;

  background: url("../resources/Our-team-banner.webp") center/cover no-repeat;
  overflow: hidden;
}
.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.team-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/connected.png");
  opacity: 0.15;
}

.team-hero-content {
  position: relative;
  max-width: 900px;
}

.team-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
}

.team-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}





.wa-expand {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  border-radius: 50px;

  display: flex;
  align-items: center;
  overflow: hidden;

  transition: 0.4s;
  z-index: 999;
}

.wa-expand img {
  width: 30px;
  margin-left: 15px;
}

.wa-expand span {
  color: white;
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0;
  transition: 0.3s;
}

/* expand on hover */
.wa-expand:hover {
  width: 170px;
}

.wa-expand:hover span {
  opacity: 1;
}











.faq-pro {
    padding: 100px 5%;
    background: #f8fafc;
}

.faq-pro h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.faq-question:hover {
    color: #2dbb00;
}

.faq-question span {
    font-size: 24px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* MOBILE */
@media(max-width:768px){
    .faq-question {
        font-size: 16px;
    }
}








.fr-hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(../resources/Business-franchise.webp);
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:20px;
}

.fr-hero-inner{
    max-width:800px;
}

.fr-hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.fr-hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.fr-btn-main{
    background:#2dbb00;
    color:white;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
}

/* ABOUT */
.fr-about{
    padding:100px 10%;
    text-align:center;
}

.fr-about h2{
    font-size:2.8rem;
    margin-bottom:25px;
}

.fr-about p{
    max-width:900px;
    margin:auto;
    margin-bottom:20px;
    line-height:1.8;
}

/* BENEFITS */
.fr-benefits{
    padding:100px 10%;
    background:#f4f4f4;
    text-align:center;
}

.fr-benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.fr-benefit-box{
    background:white;
    padding:30px;
    border-radius:15px;
}

/* PLANS */
.fr-plans{
    padding:100px 10%;
    text-align:center;
}

.fr-plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.fr-plan-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.fr-plan-card h3{
    font-size:1.8rem;
}

.fr-plan-card h4{
    font-size:2rem;
    margin:10px 0 20px;
    color:#2dbb00;
}

.fr-plan-card ul{
    list-style:none;
    margin-bottom:20px;
}

.fr-plan-card ul li{
    padding:8px 0;
}

.fr-card-btn{
    display:inline-block;
    background:#111;
    color:white;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
}

.fr-highlight{
    transform:scale(1.05);
    border:2px solid #2dbb00;
}

.fr-badge{
    background:#2dbb00;
    color:white;
    padding:5px 10px;
    font-size:12px;
    border-radius:20px;
}

/* PROCESS */
.fr-process{
    padding:100px 10%;
    background:#f9f9f9;
    text-align:center;
}

.fr-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:40px;
}

.fr-step-box{
    background:white;
    padding:25px;
    border-radius:15px;
}
.gst {
    display: block;
    font-size: 15px;
    color: #666; 
    
    margin-top: 4px;
}
/* =========================
   TABLET (<= 1024px)
========================= */
@media (max-width: 1024px) {

    .fr-hero h1 {
        font-size: 2.8rem;
    }

    .fr-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fr-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fr-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fr-highlight {
        transform: scale(1.03);
    }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

    .fr-hero {
        height: auto;
        padding: 80px 20px;
        margin-top: 100px;
    }

    .fr-hero h1 {
        font-size: 2.2rem;
    }

    .fr-hero p {
        font-size: 1rem;
    }

    .fr-about,
    .fr-benefits,
    .fr-plans,
    .fr-process {
        padding: 70px 20px;
    }

    .fr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .fr-plan-grid {
        grid-template-columns: 1fr;
    }

    .fr-process-grid {
        grid-template-columns: 1fr;
    }

    .fr-plan-card {
        padding: 25px;
    }

    .fr-highlight {
        transform: none;
    }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {

    .fr-hero h1 {
        font-size: 1.8rem;
    }

    .fr-hero p {
        font-size: 0.95rem;
    }

    .fr-btn-main {
        padding: 12px 22px;
        font-size: 14px;
    }

    .fr-about h2 {
        font-size: 2rem;
    }

    .fr-plan-card h3 {
        font-size: 1.4rem;
    }

    .fr-plan-card h4 {
        font-size: 1.6rem;
    }

    .fr-card-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}






.mission {
  padding: 90px 5vw;
  background: #ffffff;
}

.mission-inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.mission h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
}

.mission p {
  color: var(--soft);
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mission-box {
  background: var(--bg);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid var(--border);
}

.mission-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}


.culture {
  padding: 90px 5vw;
  background: var(--bg);
  text-align: center;
}

.culture h2 {
  font-size: 40px;
  font-weight: 900;
}

.culture p {
  color: var(--soft);
  margin-top: 10px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.culture-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}



.contact-strip {
  padding: 40px 5vw;
  text-align: center;
  background: #111;
  color: white;
}

.contact-strip a {
  color: var(--#2dbb00);
  font-weight: 700;
  text-decoration: none;
}

.contact-strip a:hover {
  text-decoration: underline;
}






.decision-section {
  padding: 100px 8%;
  background: white;
  color: black;
  text-align: center;
}

.decision-container {
  max-width: 1000px;
  margin: auto;
}

.tag {
  color: #22c55e;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

h2 {
  font-size: 42px;
  line-height: 1.3;
}

.desc {
  margin: 20px 0 40px;
  color: black;
}

/* CARDS */
.decision-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  border-radius: 16px;
  background: white;
  text-align: left;
}

.card h3 {
  margin-bottom: 15px;
}

/* NEGATIVE */
.negative {
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* POSITIVE */
.positive {
  border: 1px solid rgba(34, 197, 94, 0.4);
}

/* LIST */
.card ul {
  padding-left: 18px;
}

.card li {
  margin-bottom: 10px;
  color: black;
}

/* DIVIDER */
.divider {
  font-weight: bold;
  opacity: 0.6;
}

/* BUTTON */
.cta-btn {
  margin-top: 40px;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  background: #22c55e;
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .decision-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .divider {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}




/* =========================
   PARTNER PAGE (ISOLATED)
========================= */

.partner-page {
  --green: #2dbb00;
  --dark: #0f172a;
  --text: #111827;
  --soft: #64748b;
  --bg: #f8fafc;

  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: white;
}

/* =========================
   HERO
========================= */

.partner-page .partner-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;

  background: url("../resources/partner-banner.webp") center/cover no-repeat;
}

.partner-page .partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.partner-page .partner-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
}

.partner-page .partner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

.partner-page .partner-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #e5e7eb;
}

/* =========================
   SECTION HEADER
========================= */

.partner-page .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.partner-page .section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.partner-page .section-header p {
  color: var(--soft);
  margin-top: 10px;
  line-height: 1.7;
}

/* =========================
   LOGO GRID (PARTNERS)
========================= */

.partner-page .partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 80px 8%;
}

.partner-page .partner-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.partner-page .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-page .partner-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-page .partner-card:hover img {
  filter: grayscale(0%);
}

.partner-page .partner-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.partner-page .partner-card p {
  font-size: 0.9rem;
  color: var(--soft);
}

/* =========================
   DETAILS SECTION (NEW ADDITION)
========================= */

.partner-page .partner-details {
  padding: 100px 8%;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-page .partner-details h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.partner-page .partner-details p {
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 15px;
}

.partner-page .detail-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.partner-page .detail-box {
  background: white;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid var(--green);
  transition: 0.3s;
}

.partner-page .detail-box:hover {
  transform: translateY(-6px);
}

/* =========================
   CTA SECTION
========================= */

.partner-page .partner-cta {
  padding: 100px 8%;
  text-align: center;
  background: var(--dark);
  color: white;
}

.partner-page .partner-cta h2 {
  font-size: 2.8rem;
}

.partner-page .partner-cta p {
  margin: 15px 0 30px;
  color: #cbd5e1;
}

.partner-page .partner-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--green);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.partner-page .partner-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45,187,0,0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .partner-page .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-page .partner-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .partner-page .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-page .detail-boxes {
    grid-template-columns: 1fr;
  }

  .partner-page .partner-hero {
    height: 50vh;
  }
}




/* =========================
   HEADER
========================= */

.page-header{
    text-align:center;
    padding:90px 20px 60px;
    width: 100%;
    height: 60vh;
        background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../../assets/resources/bg.png') center center / cover no-repeat;
}

.page-header h1{
    font-size:clamp(30px,4vw,52px);
    color:white;
    margin-top: 100px;
}

.page-header p{
    color:white;
    max-width:600px;
    margin:12px auto 0;
    line-height:1.6;
}

/* =========================
   INFO
========================= */

.info{
    max-width:1000px;
    margin:60px auto;
    text-align:center;
    padding:0 20px;
}

.info h2{
    color:#0b3d2e;
    margin-bottom:10px;
}

/* =========================
   MARQUEE
========================= */

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, #f6faf7, transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  #f6faf7, transparent); }

.track {
  display: flex;
  will-change: transform;
}
.group {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  padding: 0 8px;
}

/* ── CARD ── */
.part-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 160px;
  height: 110px;
  padding: 12px;

  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 6px 16px rgba(0,0,0,0.06);

  font-weight: 600;
  font-size: 13px;
  color: #0b3d2e;

  flex-shrink: 0;
  transition: 0.3s ease;
}

.part-card:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #22c55e;
  box-shadow: 0 12px 28px rgba(34,197,94,0.15);
}

/* ── LOGO IMAGE inside card ── */
.part-card img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.part-card:hover img {
  transform: scale(1.05);
}
/* =========================
   RESPONSIVE FIX (BIGGER LOGOS)
========================= */
/* =========================
   RESPONSIVE FIX (LARGE LOGOS)
========================= */

@media (max-width: 768px) {
  .part-card {
    width: 130px;
    height: 100px;
    font-size: 12px;
    padding: 10px;
  }

  /* BIG LOGO */
  .part-card img {
    width: 75px;
    height: 55px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .part-card {
    width: 120px;
    height: 95px;
    font-size: 11px;
    padding: 8px;
  }

  /* EVEN BIGGER LOGO */
  .part-card img {
    width: 70px;
    height: 50px;
    object-fit: contain;
  }
}


/* ── FALLBACK ICON (shown when no img src) ── */
.part-card .logo-placeholder {
  width: 52px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 20px;
}

/* ── SECTION ── */
.section {
  padding: 0 0 30px;
}


/* ── RESPONSIVE CARD SIZES ── */
@media (max-width: 768px) {
  .part-card {
    width: 130px;
    height: 95px;
    font-size: 12px;
    gap: 8px;
  }
  .part-card img,
  .part-card .logo-placeholder {
    width: 42px;
    height: 30px;
  }
  .group { gap: 12px; }
  .marquee::before,
  .marquee::after { width: 60px; }
}

@media (max-width: 480px) {
  .part-card {
    width: 110px;
    height: 85px;
    font-size: 11px;
    padding: 8px 6px;
    gap: 6px;
  }
  .part-card img,
  .part-card .logo-placeholder {
    width: 36px;
    height: 26px;
  }
  .group { gap: 10px; }
  .marquee::before,
  .marquee::after { width: 40px; }
}

/* =========================
   CARD
========================= */

.part-card{
    width:160px;
    height:80px;
    margin:0 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:white;
    border-radius:14px;
    border:1px solid #e5e7eb;

    font-weight:600;
    color:#0b3d2e;

    box-shadow:0 6px 16px rgba(0,0,0,0.06);

    transition:0.3s;
}

.part-card:hover{
    transform:translateY(-6px) scale(1.05);
    border-color:#22c55e;
}
/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin:60px 0 15px;
    color:#0b3d2e;
}

/* =========================
   GRID INFO
========================= */

.grid-info{
    max-width:1000px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
    padding:0 20px;
}

.box{
    background:white;
    padding:20px;
    border-radius:16px;
    border:1px solid #e5e7eb;
    transition:0.3s;
}

.box:hover{
    transform:translateY(-6px);
    border-color:#22c55e;
}

.box h3{
    color:#0b3d2e;
    margin-bottom:8px;
}

.box p{
    color:#4b5563;
    font-size:14px;
    line-height:1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:600px){
    .card{
        width:120px;
        height:70px;
        font-size:13px;
    }
}




.solar-note { 
    padding: 40px 20px; 
    background: #f8fafc; 
    text-align: center; 
} 
.solar-note-container { 
    max-width: 700px; 
    margin: auto; 
} 
.solar-note-text { 
    font-size: 15px; 
    color: #555; 
    line-height: 1.6; 
    margin-bottom: 20px; 
} 
.solar-note-btn { 
    display: inline-block; 
    padding: 12px 28px; 
    background: #22c55e; 
    color: #fff; 
    font-weight: 600; 
    border-radius: 30px; 
    text-decoration: none; 
    transition: 0.3s ease; 
} 
.solar-note-btn:hover { 
    background: #16a34a; 
    transform: translateY(-2px); 
}






































































/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1200px) {
    .offer-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .trust-section{
        padding:60px 6%;
    }

    .trust-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Large tablet */
@media (max-width: 992px) {

    .about-container,
    .mission-vision,
    .why-grid,
    .stats,
    .stats-section,
    .process-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

    .banner-overlay h1{
        font-size:3rem;
    }

    .about-content h2,
    .section-header h2,
    .about-cta h2{
        font-size:2.2rem;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
    }

    .service-row,
    .service-row.reverse{
        flex-direction:column;
    }

    .timeline{
        grid-template-columns:repeat(2, 1fr);
    }

    .why-choose .why-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .services-content h1{
        font-size:3rem;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-info,
    .contact-form-box{
        padding:50px 30px;
    }

    .contact-info h2{
        font-size:2.2rem;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .lg-about-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .lg-about-title{
        font-size:2.2rem;
    }

    .lg-about-stats{
        justify-content:center;
    }

    .lg-about-map img{
        max-width:350px;
    }

    .solar-now-content{
        grid-template-columns:1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {

    body{
        overflow-x:hidden;
    }

    /* Hero */
    .hero{
        padding:20px;
        min-height:100vh;
    }
    .content h1{
        font-size:2.3rem;
        line-height:1.2;
    }
    .content p{
        font-size:1rem;
    }

    /* Vision */
    .vision-section{
        padding:60px 20px;
    }
    .vision-content{
        flex-direction:column-reverse;
        text-align:center;
        gap:40px;
    }
    .vision-left h2{
        font-size:2.2rem;
    }
    .vision-left p{
        font-size:1rem;
    }
    .vision-right img{
        width:100%;
        max-width:280px;
        padding-bottom:200px;
    }
    .bg-text{
        font-size:clamp(2rem, 13vw, 12rem);
        -webkit-text-stroke:1px #d6dbe5;
    }

    /* About */
    .about-image img{
        width:100%;
        height:280px;
        object-fit:cover;
    }
    .about-content h2{
        font-size:1.8rem !important;
        text-align:center;
    }

    /* Services */
    .services-content h1{
        font-size:2.3rem;
    }
    .service-text h2{
        font-size:2rem;
    }
    .process-header h2,
    .why-header h2,
    .cta-content h2{
        font-size:2rem;
    }

    /* Stats */
    .stats,
    .stats-section{
        grid-template-columns:1fr;
    }
    .stat h2,
    .stat-card h2{
        font-size:3rem;
    }

    /* Timeline / process */
    .timeline{
        grid-template-columns:1fr;
    }
    .why-grid,
    .why-choose .why-grid{
        grid-template-columns:1fr;
    }
    .why-top h2{
        font-size:2.2rem;
    }

    /* Offer */
    .offer{
        padding:80px 6%;
    }
    .offer-header h2{
        font-size:2.2rem;
    }
    .offer-grid{
        grid-template-columns:1fr;
    }

    /* Benefits */
    .benefits-grid{
        grid-template-columns:1fr;
    }

    /* Solar calculator */
    .solar-section{
        flex-direction:column;
        padding:50px 20px;
        margin-top:80px;
        gap:40px;
    }
    .solar-info{
        width:100%;
        text-align:center;
    }
    .solar-info h2{
        font-size:2rem;
        line-height:1.3;
    }
    .solar-desc{
        font-size:1rem;
        line-height:1.7;
    }
    .solar-features{
        grid-template-columns:1fr;
        margin-top:25px;
    }
    .calculator-card{
        width:100%;
        padding:25px 18px;
        border-radius:15px;
    }
    .calculator-card h3{
        font-size:1.4rem;
    }
    .input-group label{
        flex-direction:column;
        gap:8px;
        align-items:flex-start;
        font-size:0.95rem;
    }
    .results{
        grid-template-columns:1fr;
        gap:12px;
    }
    .result-box{
        padding:18px;
    }
    .result-box span{
        font-size:1.3rem;
    }

    /* Section header */
    .section-header h2{
        font-size:26px;
    }
    .section-header p{
        font-size:12px;
    }

    /* Trust */
    .trust-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    .trust-card{
        padding:20px;
    }
    .trust-card i{
        font-size:24px;
    }

    /* Contact btn */
    a.Contact-btn,
    a.Contact-btn:visited,
    a.Contact-btn:hover,
    a.Contact-btn:active{
        width:80%;
        margin:15px auto;
        display:block;
        padding:12px;
        font-size:16px;
        border-radius:8px;
        text-decoration:none !important;
        color:inherit;
    }
    .Contact-btn{
        margin-left:15px;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .trust-section{
        padding:50px 5%;
    }
    .section-header p{
        font-size:12px;
    }
    .section-header h2{
        font-size:22px;
    }
    .trust-card p{
        font-size:14px;
    }
}