/* =========================
   GLOBAL VARIABLES
========================= */

:root {

    /* primary-brand-colors */
    --primary-color: #d97706; /* In Use for section-label-p*/
    --primary-dark: #b45309;

    /* secondary-brand-colors */
    --success-color: #10b981;
    --solar-green-light: #ecfdf5;

    /* Text */
    --heading-color: #102450;
    --text-color: #64748b;

    /* Backgrounds */
    --white: #ffffff;
    --light-bg: #f8fafc; /* In Use for Background on all pages*/
    --dark-bg: #111827;
    --green-bg: #25d366; /* Whatspp button*/
    --green-dark: #16a34a;
    --sky-light-bg: #B4D4FF; /* In Use for Services pag service-card background*/
    --sky-semi-bg: #EEF5FF; /* In Use for Services step card background & nav on scroll */
    --sky-dark-bg: #86B6F6; /* In Use for Services */
    --sky-footer: #b5cbdc; /* use for footer Background */

    --logo-sky-bg: #a9cdfc;
    --logo-high: #0057B8; /* Used for logo shapes*/


    --primary: #003087; /* In Use for h2 On services page */    
    --Deep-Solar-Blue: #0B1F4D; /* In Use for h2 & Navbar a */
    --light-solar-blue: #0e2863; /* In Use for p on all pages */
    --solar-panel-blue: #1E5BC6;
    --sun-yellow-bg: #FFF4CC; /* In Use for section-label-p background*/

    /* Borders */
    --border-color: #e5e7eb;

    /* Typography */
    --h1-size: 56px;
    --h2-size: 32px;
    --h3-size: 25px;
    --body-size: 17px;

}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Ubuntu', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: var(--body-size);

    color: var(--text-color);

    line-height: 1.8;
}

/* =========================
   CONTAINER
========================= */

.container {

    width: 90%;

    max-width: 1280px;

    margin: 0 auto;
}

/* =========================
   TRANSPARENT NAVBAR
========================= */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 50px;
    box-sizing: border-box;

    background: var(--light-bg);

    transition: all 0.35s ease;

    z-index: 9999;

    
}
/*
.main-navbar {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;

    z-index: 1000;

    background: rgba(15,23,42,.20);

    backdrop-filter: blur(10px);

    transition: all .3s ease;
}
    */
/* When Scrolling */
.main-navbar.scrolled {

    background-color: var(--sky-semi-bg);
   /* background: rgba(17, 24, 39, 0.95);  */

    backdrop-filter: blur(10px);

    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/*--Logo--*/ 

.navbar-logo img {
    height: 60px;

    width: auto;

    padding-top: 9px;

    transition: 0.3s ease;
}

/*
.main-navbar.scrolled .navbar-logo img {

    height: 60px;
}
*/

/*Navigation Links- start*/

.navbar-links {

    list-style: none;

    display: flex;

    gap: 35px;

    margin: 0;

    padding: 0;
}

.navbar-links a {

    color: var(--Deep-Solar-Blue);

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    transition: 0.3s ease;

    position: relative;
}
/*Navigation Links -end*/

/*Elegant Hover Effect-start*/

.navbar-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--sky-dark-bg);

    transition: 0.3s ease;
}

.navbar-links a:hover {

    color: var(--light-solar-blue);
    
}

.navbar-links a:hover::after {

    width: 100%;
}

/*Elegant Hover Effect -end*/

/*--  CTA Button in Navbar --start*/
.nav-cta {

    background: #d97706;

    color: #ffffff;

    text-decoration: none;

    padding: 12px 24px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s ease;
}

.nav-cta:hover {

    background: #b45309;

    transform: translateY(-2px);
}

/*--  CTA Button in Navbar --end*/

/*
.navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.navbar-links a:hover {
    color: #ffd700;
} */


/* =========================
   NVBAR - END
========================= */

/* =========================
   HEADINGS
========================= */

h1 {

    font-size: var(--h1-size);

    color: var(--heading-color);

    font-weight: 700;
}

h2 {

    font-size: var(--h2-size);

    color: var(--Deep-Solar-Blue);

    font-weight: 700;
}

h3 {

    font-size: var(--h3-size);

    color: var(--light-solar-blue);

    font-weight: 600;
}

p {

    font-size: var(--body-size);

    color: var(--light-solar-blue);
}

/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.btn-primary {

    background: var(--primary-color);

    color: var(--white);

    padding: 14px 30px;

    border-radius: 50px;

    text-decoration: none;

    display: inline-block;

}

.btn-primary:hover {

    background: var(--primary-color);
}

/* Secondary Button */
.btn-secondary {

    border: 2px solid var(--primary-color);

    color: var(--primary-color);

    padding: 14px 30px;

    border-radius: 50px;

    text-decoration: none;

    display: inline-block;

}

.btn-secondary:hover {

    background: var(--primary-color);

    color: var(--white);
}

/* Common Button Animation */
.btn-primary,
.btn-secondary {

    transition: 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {

    transform: translateY(-2px);
}

/* =========================
   GLOBAL LABEL
========================= */

.section-label-p {

    display: inline-block;

    padding: 8px 18px;

    background: var(--sun-yellow-bg);

   /* background: rgba(217,119,6,0.12); */

    color: var(--primary-color);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border-radius: 50px;

    margin-bottom: 9px;

    margin-top: 40px;
}

.section-label-s {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

    background: rgba(22, 163, 74, 0.12);

    color: var(--green-dark);
}

/* =========================
   FOOTER
========================= */

.footer {
   /* background: #111827; */
    background: var(--sky-semi-bg);
   /* color: var(--white); */
    padding-top: 70px;
}

/* Grid Layout */
.footer-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    padding-bottom: 50px;
}

/* Headings */
.footer-col h3 {

   /* color: var(--primary-color); */

    margin-bottom: 20px;

    font-size: 22px;
}

/* Text */
.footer-col p {

    line-height: 1.8;

    color: var(--light-solar-blue);
}

/* Links */
.footer-col ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-col ul li {

    margin-bottom: 12px;

    color: var(--light-solar-blue);
}

.footer-col ul li a {

    color: var(--light-solar-blue);

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-col ul li a:hover {

   /* color: var(--primary-color); */

    padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    padding: 20px 0;

    font-size: 15px;

    color: #9ca3af;
}

/* =========================
   FOOTER END
========================= */

@media (max-width: 768px) {

    :root {

        --h1-size: 40px;
        --h2-size: 32px;
        --h3-size: 24px;
        --body-size: 16px;
    }

}

@media (max-width: 992px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;
    }
}