

li {
    color: #444444;
}

li {
    font-size: 1em;
    color: #444444;
}

.btn-primary {
    background-color: #FF9900;
}

.card-custom-border {
  border-color: #FF9900;
  border-width: 2px;
}

.border-bottom-custom-orange {
  border-bottom-color: #FF9900 !important; /* Use !important to override Bootstrap's default */
  border-width: 5px;
}
        
/* ################################## FOUNDER SECTION ####################################### */

/* ... your other styles ...
   (ensure .border-bottom-custom-orange and .review-card-custom-border are defined if used elsewhere)
*/

.founder-section {
  background-color: #f8f9fa; /* A very light grey, or keep white if preferred */
  overflow: hidden; /* Important if using elements that might peek out */
}

.founder-image-wrapper {
  position: relative; /* For absolute positioning of overlay */
  display: inline-block; /* To contain the image and overlay properly */
  padding: 10px; /* Creates a bit of space if we add a wrapper border */
  /* background-color: white; */ /* Optional white bg behind image */
  /* border: 1px solid #e0e0e0; */ /* Optional subtle border for the wrapper */
}

.founder-image {
  max-width: 100%; /* Responsive within its column */
  height: auto;
  border-radius: 8px; /* Softly rounded corners */
  /* filter: grayscale(20%) contrast(110%); */ /* Example: Subtle enhancement */
  display: block; /* Remove extra space below image */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Softer, more spread out shadow */
}

.founder-name-overlay {
  position: absolute;
  bottom: 20px; /* Position from bottom */
  left: 20px;  /* Position from left */
  background-color: rgba(0, 0, 0, 0.65); /* Semi-transparent dark overlay */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: left;
  /* Optional: if you want it to span width */
  /* right: 20px; */
  /* text-align: center; */
}

.founder-name-overlay-title {
  font-size: 1.4rem; /* Adjust as needed */
  font-weight: 600; /* Bold but not overly so */
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.founder-name-overlay-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.9;
}

.founder-statement {
  font-size: 1.5rem; /* Larger for impact */
  font-weight: 300; /* Light for elegance */
  line-height: 1.5;
  color: #333;
  font-style: italic;
  text-align: center; /* Center the quote block */
  margin-bottom: 2rem;
  padding: 0 1rem; /* Padding on sides for quote marks */
  position: relative;
}

.quote-icon {
  font-family: Georgia, serif; /* Or a similar serif for quotes */
  font-size: 3rem; /* Large quote marks */
  color: #FF9900; /* Brand orange for emphasis */
  line-height: 0; /* Prevent extra spacing */
  display: inline-block;
}

.quote-icon.end-quote {
  vertical-align: text-bottom; /* Aligns the bottom of the quote mark */
}

.founder-bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: #454545; /* Readable dark grey */
  margin-bottom: 1.25rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for the image/text stacking */
@media (max-width: 1199.98px) { /* Breakpoint for XL */
  .founder-image-wrapper {
    max-width: 450px; / * Limit size when stacked */
    margin-left: auto;
    margin-right: auto;
  }
  }

/* ################ FEATURETTE STYLING  ###################### */

/* static/css/styles.css */

.service-title-link {
  color: #FF9900 !important; /* Your brand orange */
  text-decoration: none;
  font-weight: 500; /* Or Bootstrap's .fw-semibold */
}

.service-title-link:hover,
.service-title-link:focus {
  color: #e68a00 !important; /* A slightly darker shade for hover/focus */
  text-decoration: underline;
}

/* New styles for this layout */
.service-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  overflow: hidden; /* Important for image zoom effect if added */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important; /* Slightly larger shadow on hover */
}

.service-card-img-container {
  height: 250px; /* Adjust as needed, controls the image height */
  overflow: hidden; /* Ensures image parts outside this don't show */
  position: relative; /* For potential absolute positioning of text overlay */
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Optional: Zoom image on card hover */

.service-card:hover .service-card-img {
  transform: scale(1.05);
}
*/

.service-card-body {
  /* Optional: if you want text overlay on image */
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
  /* background: rgba(0,0,0,0.5); */ /* Dark overlay for text readability */
  /* color: white; */
  /* padding: 1rem; */
}

/* Make sure heading inside overlay is readable */
/*
.service-card-body .service-title-link {
  color: #FF9900 !important; / * Keep orange, or white if on dark overlay * /
}
.service-card-body .service-title-link:hover {
  color: #e68a00 !important; / * Keep orange, or light grey if on dark overlay * /
}
.service-card-body .text-body-secondary {
  color: rgba(255,255,255,0.85) !important; / * Light color for tagline on dark overlay * /
}
*/

/* ############################################# Pricing Page ###########################################################################  */

  /* SPM Electrical Color Palette Variables */
  :root {
    --spm-industrial-gray: #444444;
    --spm-burnt-orange: #FF9900;
    --spm-deep-blue: #212121;
    --spm-white: #FFFFFF;
    --spm-light-gray-bg: #f8f9fa;
    --whatsapp-green: #25D366;
  }

  .pricing-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--spm-light-gray-bg);
  }

  .pricing-heading {
    color: var(--spm-deep-blue);
  }

  .pricing-lead {
    color: var(--spm-industrial-gray);
  }

  .pricing-card {
    position: relative; /* For the ::before pseudo-element overlay */
    background-size: cover;
    background-position: center;
    color: var(--spm-white); /* Default text color for overlay content */
    border-radius: 0.65rem; /* Slightly more prominent rounding */
    overflow: hidden; /* To contain pseudo-element and rounded corners */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-height: 400px; /* Give cards a consistent minimum height - adjust as needed */
    border: none; /* Remove default card border as image is the background */
  }

  .pricing-card::before { /* Darkening overlay for text readability */
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%); /* Gradient overlay */
    z-index: 1; /* Just above the background image */
    transition: background-color 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced hover effect */
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
  }
   .pricing-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%); /* Slightly lighter on hover */
  }


  /* This is now the main content wrapper INSIDE the card */
  .pricing-card .card-body-overlay {
    position: relative; /* To sit on top of the ::before pseudo-element */
    z-index: 2; /* Above the ::before pseudo-element */
    /* padding applied directly here if not using BS .card-body defaults correctly */
  }

  .pricing-card-icon-wrapper {
    font-size: 2.8rem; /* Adjusted icon size */
    color: var(--spm-burnt-orange); /* Orange icon stands out */
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.9;
  }

  .pricing-card .card-title {
    color: var(--spm-white); /* White title */
    font-weight: 600;
    font-size: 1.4rem; /* Make title slightly larger */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Text shadow for readability */
  }

  .pricing-card .card-text.price {
    font-size: 2.2rem; /* Larger price */
    font-weight: 700;
    color: var(--spm-white); /* White price */
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }

  .pricing-card .card-text.price .from-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85); /* Light text for "From" */
    display: block;
    margin-bottom: -0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  }

  .pricing-card .details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9); /* Light text for details */
    line-height: 1.6;
    min-height: 40px; /* Adjust if needed, ensures space for short/no details */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  }

  .btn-whatsapp-quote {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--spm-white);
    font-weight: 500;
    padding: 0.75rem 1.2rem;
    width: 100%;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .btn-whatsapp-quote:hover,
  .btn-whatsapp-quote:focus {
    background-color: #1EBE57;
    border-color: #1EBE57;
    color: var(--spm-white);
    transform: translateY(-2px);
  }

  .btn-whatsapp-quote i {
    font-size: 1.1em;
    vertical-align: middle;
  }

  .consultation-note {
    background-color: var(--spm-white); /* White background for the note for contrast */
    border-left: 5px solid var(--spm-burnt-orange);
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin-top: 3rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
  }

  .consultation-note p {
    color: var(--spm-deep-blue);
  }

  .consultation-note strong {
    color: var(--spm-deep-blue);
  }

  .consultation-note .bi-info-circle-fill {
    color: var(--spm-burnt-orange);
  }

/* ############################## WhatsApp Floating Action Button (FAB)#################################### */

/* styles.css */
#whatsappFabButton.whatsapp-fab, /* Targeting by ID and class */
/* OR just #whatsappFabButton if you prefer to rely solely on the ID for primary styling */
/* #whatsappFabButton { ... } */
.whatsapp-fab { /* Keep this as a fallback or for general FAB patterns if you have others */
  position: fixed !important; /* Adding !important to key properties */
  bottom: 55px !important;
  right: 25px !important;
  left: auto !important; /* Explicitly set left to auto if it's being pushed left */
  background-color: #25D366;
  color: white;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  display: flex !important; /* Ensure flex properties aren't overridden */
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 1000 !important; /* High z-index */
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#whatsappFabButton.whatsapp-fab:hover,
.whatsapp-fab:hover {
  background-color: #1EBE57;
  color: white;
  transform: scale(1.1);
}


/* Media query might also need !important if its styles are overridden */
@media (max-width: 768px) {
  #whatsappFabButton.whatsapp-fab,
  .whatsapp-fab {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
}

/* ############################## Call Floating Action Button (FAB) #################################### */

.call-fab {
  position: fixed !important;
  bottom: 55px !important; /* Align with WhatsApp FAB's bottom */
  left: 25px !important;   /* Position on the left side */
  right: auto !important;  /* Ensure it doesn't conflict with right */
  background-color: #FF9900; /* Naledi AI Orange for call button */
  color: white;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 1000 !important;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.call-fab:hover {
  background-color: #e68a00; /* Darker orange on hover */
  color: white;
  transform: scale(1.1);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .call-fab {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    bottom: 20px !important;
    left: 20px !important; /* Adjust for mobile */
  }
}

/* Ensure the WhatsApp FAB also has its z-index set high */
.whatsapp-fab {
    /* ... existing styles ... */
    z-index: 1000 !important; /* Make sure it's also high */
}

/* Adjustments if both FABs are too close on very small screens, or if another element overlaps */
@media (max-width: 576px) { /* Extra small devices */
    .call-fab {
        bottom: 80px !important; /* Move call button up if needed to avoid overlap with bottom nav or other elements */
    }
    .whatsapp-fab {
        bottom: 20px !important; /* Keep WhatsApp FAB lower */
    }
}

/* Custom styles for embedded service page contact forms */
.service-contact-form {
  background-color: #f8f9fa; /* Light background for contrast */
  border-top: 1px solid #e9ecef;
}

.service-contact-form .contact-form-container {
  /* Inherit general contact form styling or customize for embedded context */
  background-color: #fff; /* White background for the form itself */
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08); /* Softer shadow */
}

.service-contact-form .contact-form-title {
  color: #FF9900; /* Use brand orange for titles */
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-contact-form .contact-form-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Ensure form-floating elements work well within these forms */
.service-contact-form .form-floating > label {
    padding-left: 1rem;
    padding-right: 1rem;
}
.service-contact-form .form-floating > .form-control,
.service-contact-form .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

