/* ============================================================
   COLOR PALETTE
============================================================ */
:root {
  --brand-blue: #0066ff;
  --brand-yellow: #ffd500;
  --text-dark: #000000;
  --text-light: #ffffff;
}

/* ============================================================
   GLOBAL FONT + COLORS
============================================================ */
/*body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6,
p {
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-dark);
}*/

body {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6,
p {
    font-family: 'Manrope', Arial, sans-serif;
    color: var(--text-dark);
}


/* ============================================================
   HEADER CSS
============================================================ */

/* ============================================================
   HEADER — WHITE BACKGROUND + BRAND COLORS
============================================================ */

/* Header background */
header.site-header,
nav.navbar {
    background-color: #ffffff !important; /* white for contrast */
}

/* Logo */
img.custom-logo {
    width: 113px !important;
}

/* Small navbar logo (if used) */
nav.navbar.navbar-expand-lg.navbar-light.bg-light img {
    width: 50px;
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #000000 !important; /* black links on white header */
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0066ff !important; /* blue on hover/active */
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #ffffff; /* white dropdown */
    border: 1px solid #0066ff; /* blue border */
}

.dropdown-menu .dropdown-item {
    color: #000000 !important; /* readable black text */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #0066ff; /* blue hover */
    color: #ffffff !important;  /* white text on hover */
}

/* Donate button */
button.btn.btn-outline-success.donate_btn {
    background-color: #ffd500;   /* yellow button */
    border: 2px solid #ffd500;
    color: #000000;               /* black text */
    padding: 15px 60px;
    border-radius: 28px;
    transition: 0.3s ease;
}

button.btn.btn-outline-success.donate_btn:hover {
    background-color: #0066ff;   /* blue hover */
    border-color: #0066ff;
    color: #ffffff;               /* white text */
}

/* Align nav items to right */
.navbar-nav {
  margin-left: auto;
}

/* Offcanvas menu (mobile) */
.offcanvas {
  width: 80%;
  max-width: 320px;
  background-color: #0066ff; /* blue for contrast */
}

.offcanvas a {
  color: #ffffff; /* white text */
  font-size: 1.25rem;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease-in-out;
}

.offcanvas a:hover {
  color: #ffd500; /* yellow hover */
}

/* Hamburger toggle */
#menuToggleBtn svg,
#menuToggleBtn i {
  color: #000000; /* black icon on white header */
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.offcanvas.show ~ header #menuToggleBtn svg,
.offcanvas.show ~ header #menuToggleBtn i {
  transform: rotate(180deg);
  color: #ffffff; /* white when menu open on blue offcanvas */
}

/* Branding Logo Scaling */
.site-branding img {
  max-height: 60px;
  height: auto;
}

/* Offcanvas spacing */
.offcanvas-body ul li {
  margin: 0.75rem 0;
}

/* Toggle button alignment */
#menuToggleBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas-title h5 {
 color: #fff !important;
}

/* Mobile padding fix */
@media (max-width: 576px) {
  .site-header .container-fluid {
    padding: 0 1rem;
  }
}

/* Space under fixed navbar */
main#content {
  margin-top: 4.5rem;
}


/*===================
global button css
==================*/

/* ============================================================
   BUTTON STYLING — YELLOW BG + WHITE TEXT
============================================================ */

/* All buttons */
button.btn,
button.btn-outline-success,
.btn {
    background-color: #ffd500; /* yellow background */
    color: #ffffff !important;  /* white text */
    border: 2px solid #ffd500;  /* optional border to match bg */
    border-radius: 28px;
    padding: 15px 60px;
    transition: 0.3s ease;
}

/* Button hover */
button.btn:hover,
button.btn-outline-success:hover,
.btn:hover {
    background-color: #0066ff;  /* blue hover */
    border-color: #0066ff;
    color: #ffffff !important;   /* keep text white */
}

/* Small buttons / variations */
.btn-sm {
    padding: 8px 20px;
}

/* Ensure links styled as buttons match */
a.btn {
    font-weight: 600;
    background-color: #ffd500;
    color: #000 !important;
    border: 2px solid #ffd500;
    transition: 0.3s ease;
}

a.btn:hover {
    background-color: #0066ff;
    border-color: #0066ff;
    color: #ffffff !important;
}


/*===================
end global button css
==================*/

/*===================
start banner tick marks
================== */

/* ================================
   SVG Container & Utility Classes
   ================================ */

.tick-icon-container {
    display: inline-flex;          /* inline with other elements */
    align-items: center;           /* vertically center the SVG */
    justify-content: center;       /* horizontally center */
    position: relative;            /* relative positioning for adjustments */
    width: 1.25rem;                /* 20px */
    height: 1.25rem;               /* 20px */
    margin-top: 0.125rem;         /* small top margin */
    gap: 0.5rem;
}

/* Ensure SVG fills the container */
.tick-icon-container svg {
    width: 100%;
    height: 100%;
    display: block;                /* removes inline spacing issues */
}

/* Circle background */
.tick-icon-container svg .tick-circle {
    fill: #90ee90;                /* light green circle */
}

/* Tick mark */
.tick-icon-container svg .tick-mark {
    fill: #006600;                /* darker green tick */
}

.tick-para {
    padding-left: 10px;
}

.custombanner_overlay h1 {
    padding-left: 48px;
   
}

.custombanner_section a {
    margin-left: 40px;
    /* padding-left: 52px; */
}

/*================
end banner tick 

============== */




/* ==========
start contact us section

=========== */

section.contact_us {
    margin-top: 50px;
    border-radius: 40px;

}


/* ===========
end contact us section 

===================== */



/*=================
start Gravity form design
============*/

/* -----------------------
   Form Wrapper
------------------------- */




/* ---------- FORM WRAPPER ---------- */
.contact_us_label {
    display: flex;
    justify-content: center;
    height: 200px;
    align-items: center;
    background: rgb(0 102 255);
    color: #fff;
}

.contact_us_label h4 {
    color: #fff;
    font-size: 33px;
}

.contact_us_form {
    background: #ffffff;
    padding: 15px 15px;
    max-width: 800px;
    margin: 50px auto;
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 0px;
    padding-top: 15px;
}



/* ---------- HEADINGS ---------- */
.contact_us_form h2,
.contact_us_form h3 {
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

/* ---------- FORM GROUPS ---------- */
.gfield {
    margin-bottom: 25px;
}

/* ---------- INPUTS, TEXTAREAS, SELECTS ---------- */
.gf-input input,
.gf-input textarea,
.gf-input select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
      border: 2px solid #0D6EFE !important;
    border-color: #0d6efd;
    background-color: #f1f7ff;
    border-radius: 8px !important;
}

.ginput_container_email input[type="email"] {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px !important;
    border: 2px solid #0D6EFE !important;
    border-color: #0d6efd;
    background-color: #f1f7ff;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.contact_us_label h4 {
    padding-left: 10px;
    padding-right: 10px;
}

.gf-input input:focus,
.gf-input textarea:focus,
.gf-input select:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(13,110,253,0.1);
}

/* ---------- LABELS ---------- */
.gfield_label {
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    display: block;
    color: #222 !important;
    font-size: 18px !important;
}

/* ---------- ERROR MESSAGES ---------- */
body .gform_wrapper .gfield_error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ---------- GCHOICE (RADIO & CHECKBOX RECTANGLES) ---------- */
.gfield_radio,
.gfield_checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two options per row */
    gap: 15px;
}

/* Each choice rectangle */
/*.gchoice {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #000;
    border-radius: 6px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}*/

.gchoice {
    border: 2px solid #0D6EFE !important;
    border-color: #0d6efd;
    background-color: #f1f7ff;
    border-radius: 10px !important;
    padding: 13px !important;
}

/* Hover effect */
.gchoice:hover {
    border-color: #0d6efd;
    background-color: #f1f7ff;
}

/* Label inside rectangle */
.gchoice label {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1; /* take remaining space */
    cursor: pointer;
}

/* Input aligned to right */
.gchoice input.gfield-choice-input {
    order: 2; /* move input visually to right */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #0d6efd;
    margin-left: 20px !important;
}

/* Checked state (changes rectangle) */
.gchoice input.gfield-choice-input:checked + label {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

/* ---------- SUBMIT BUTTON ---------- */
.gform_wrapper .gform_footer input[type="submit"] {
    display: inline-block;
    width: 100%;
    padding: 1.1rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #fff;
    background: #0d6efd !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
    background-color: #0b5ed7;
}

h2.gform_title {
    display: none;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 767px) {
    .gfield_radio,
    .gfield_checkbox {
        grid-template-columns: 1fr; /* stack on mobile */
    }
}



/*=================
end Gravity form design
============*/








/* ============================================================
   BANNER SECTION
============================================================ */

/*.custombanner_section {
  background-image: url('https://letstalksavings.com/wp-content/uploads/2025/11/Cover-Picture_final.png');
  background-size: cover;
  background-position: center;
  min-height: 445px;
  overflow: hidden;
}*/

/*.custombanner_overlay {
  left: 10%;
  max-width: 672px;
  width: 85%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 0.5rem;
}*/

.custombanner_cta {
  transition: all 0.3s ease-in-out;
  background-color: #ffd500 !important;   /* yellow */
  color: #ffffff !important;   /* white text */
  border: 2px solid #ffffff;  /* yellow border */
  border-radius: 28px;
  padding: 15px 60px;
}

.custombanner_cta:hover {
  background-color: #0066ff;   /* blue on hover */
  border-color: #0066ff;
  color: #ffffff !important;   /* keep text white */
  transform: translateY(-2px);
}

.custombanner_gradient {
  height: 10px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
}

/* ============================================================
   COMPLETE ENERGY SECTION
============================================================ */

.rounded-4 {
  border-radius: 30px;
}

.fill-divisional-energy,
.fill-divisional-ev {
    fill: var(--brand-yellow);
}

.weexpert {
    padding-top: 7px !important;
}

/* ============================================================
   PARTNER SECTION
============================================================ */

.partners-track {
    animation: scroll-logos 25s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-track img {
  margin-right: 3rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partners-track img:hover {
  transform: scale(1.1);
}

.bg-gradient-energy {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow));
  height: .625rem;
}

@media (max-width: 768px) {
  .partners-track img {
    max-height: 45px;
    margin-right: 2rem;
  }
}

/* ============================================================
   TIMELINE (HOW IT WORKS)
============================================================ */

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 3%;
  width: 94%;
  height: 5px;
  background-color: goldenrod;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-light);
  border: 4px solid #fff;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-gold{
  background-color: #ffd500 !important;
}

.timeline-content {
  max-width: 90%;
}

@media (max-width: 767.98px) {
  .timeline-line {
    width: 5px;
    height: calc(100% - 25px);
    left: 2px;
    top: 25px;
  }

  .timeline-dot {
    margin-right: 16rem;
  }
}

/* ============================================================
   FAQ
============================================================ */

.bg-light {
  background-color: #f5f5f5 !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-blue);
}

/* ============================================================
   WHY CHOOSE RADIUS
============================================================ */

.round_corner {
  border-radius: 30px !important;
}

/* ============================================================
   HOME BANNER UPDATED CSS
============================================================ */

.custombanner_section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 445px;
}

.custombanner_bg {
  background-image: url('https://letstalksavings.com/wp-content/uploads/2025/11/Cover-Picture_final.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 630px;
}

.custombanner_overlay {
  position: absolute;
  top: 38%;
  left: 4%;
  transform: translateY(-50%);
  width: 672px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 0.5rem;
  z-index: 2;
}





@media (max-width: 768px) {
    .custombanner_overlay {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        row-gap: 0.625rem; /* gap-y-2.5 */
        border-radius: 0.25rem; /* rounded */
        background-color: #ffffff; /* bg-brand-white */
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 1rem; /* py-inner-spacing placeholder */
        padding-bottom: 1rem;
        backdrop-filter: blur(5px);
/*        top: 55%;*/
        left: 0;
        -webkit-backdrop-filter: blur(5px);
    }

    /* nested list styling */
    .custombanner_overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .custombanner_overlay li {
        display: flex;
        align-items: flex-start;
        position: relative;
        margin-bottom: 0.625rem; /* gap between items */
    }

    .custombanner_overlay li svg {
        position: absolute;
        top: 0.125rem; /* mt-0.5 */
        left: 0;
        width: 1.25rem; /* size-5 */
        height: 1.25rem;
        fill: #00aa00; /* brand-green */
    }

    .custombanner_overlay li p {
        margin-left: 1.875rem; /* ml-30 */
    }

    .custombanner_overlay h1 {
        font-size: 28px;
        line-height: 38px;
        font-weight: 600;
        padding-left: 0px;
    }

    .custombanner_overlay a {
        text-decoration: underline;
        transition: all 0.3s ease-in-out;
    }

    .custombanner_overlay a:hover {
        text-decoration: none;
    }



     .custombanner_bg {
        
        background-size: cover; /* Keep background cover */
        background-position: center; /* Ensure the background stays centered */
    }

    /* You can adjust the overlay if necessary for mobile as well */
    .custombanner_overlay {
        height: 100%; /* Ensure it takes the full height */
    }

 
}

/**================
 * start home page contact form section
 ================= **/
 /* -------------------------
   CONTACT SECTION
-------------------------- */
/* Overall section spacing */
.contact_us {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Left side (form) */
.contactus_section {
    padding: 30px;
    border-radius: 8px;
    background-color: #0066ff; /* Your blue */
    color: white;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Right side info card */
.contactus_info_card {
    background: white;
    padding: 30px 25px; /* slightly reduced padding */
    border-radius: 8px;
    border-left: 6px solid #ffd500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Logo */
.contact_logo_wrapper img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}


/* List styling */
.contact_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_list li {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Icons */
.contact_list i {
    font-size: 20px;
    color: #0066ff; /* Blue icons */
/*    margin-top: 3px;*/
}

/* Links */
.contact_list a {
    text-decoration: none;
    color: #000;
/*    font-weight: 600;*/
    transition: color 0.3s ease;
}

.contact_list a:hover {
    color: #0066ff;
}

p.footer_text_arch {
    text-align: justify;
}

/*div#footer-sidebar5 p {
    text-align: justify;
}*/

/* Mobile spacing */
@media (max-width: 767px) {
    .contactus_section,
    .contactus_info_card {
        margin-bottom: 20px;
    }
}




/**===========
 * end contact us home page 
 ===================== */






  



