﻿:root {
    --orange: #f7931e;
    --blue: #0a4fa3;
    --green: #2e7d32;
    --dark: #1f2933;
    --light: #f9fafb;
    --gray: #6b7280;
    --radius: 10px;
}

/* ----------------- Global ----------------- */
body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--blue);
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-weight: 700;
        color: var(--blue);
    }

    .section-title p {
        color: var(--gray);
    }

/* ----------------- Buttons ----------------- */
.btn-primary {
    background: var(--orange);
    border: none;
    border-radius: var(--radius);
    padding: 12px 26px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #e5830d;
    }

.btn-outline {
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: var(--radius);
    padding: 10px 24px;
}

    .btn-outline:hover {
        background: var(--green);
        color: #fff;
    }

/* ----------------- Navbar ----------------- */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 700;
    color: var(--green);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--orange);
    }

/* ----------------- Hero ----------------- */
.hero {
    background: linear-gradient( rgba(10,79,163,0.85), rgba(46,125,50,0.85) ), url('solar-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
}

    .hero h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .hero p {
        font-size: 18px;
        margin: 20px 0;
    }

/* ----------------- Cards ----------------- */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: transform .3s;
}

    .card:hover {
        transform: translateY(-8px);
    }

.card-icon {
    font-size: 42px;
    color: var(--orange);
    margin-bottom: 15px;
}

/* ----------------- Stats ----------------- */
.stats {
    background: var(--blue);
    color: #fff;
}

.stat-box h3 {
    font-size: 36px;
    color: var(--orange);
}

/* ----------------- CTA ----------------- */
.cta {
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: #fff;
    text-align: center;
}

/* ----------------- Footer ----------------- */
.footer {
    background: #0f172a;
    color: #cbd5e1;
}

    .footer h5 {
        color: var(--orange);
    }

    .footer a {
        color: #cbd5e1;
    }

        .footer a:hover {
            color: var(--orange);
        }
