/* ================================================================= */
/* ================================================================= */
/*          CAREERS PAGE MASTER OVERRIDE STYLESHEET                  */
/* ================================================================= */
/* ================================================================= */
/*  NOTE: This is the definitive manual control fix. It provides     */
/*  total, forceful, and stable responsive control for all sections. */
/* ================================================================= */

/* ================================================================= */
/* 1. Banner Section - REBUILT FOR MANUAL POSITIONING & STYLING      */
/* ================================================================= */

/* --- This is the main container for the entire banner --- */
section.banner__section-override {
  /* --- Background Image & Sizing --- */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.082)), url('../img/careers/banner.png') !important; /* Sets the background image with a semi-transparent dark overlay: rgba(0, 0, 0, 0.5) to rgba(0, 0, 0, 0) */
  background-size: cover !important;           /* Forces the image to cover the entire banner area */
  background-position: center center !important; /* Centers the background image */
  background-repeat: no-repeat !important;      /* Prevents the background image from repeating */

  /* --- Positioning Context --- */
  position: relative !important;                /* Anchor for the content block inside */
  width: 100% !important;                      /* Spans the full width of the screen */
  height: auto !important;                     /* Flexible height */
  min-height: 80vh !important;                 /* Minimum height of 80% of viewport for dynamic look */
  padding: 0 !important;                       /* Removes padding as content is positioned manually */
  /* Console log for debugging banner section rendering */
  /* console.log("Banner section rendered with background image and overlay"); */
}

/* --- This is the content block that holds your text and buttons --- */
section.banner__section-override .banner__content-override {
  /* --- Brute-Force Manual Positioning --- */
  position: absolute !important;                /* Removes content from normal flow for manual positioning */

/* ===================================================== */
/* == ADJUST THESE VALUES TO MANUALLY MOVE THE CONTENT == */
/* ===================================================== */
top: 50% !important;                          /* Sets vertical starting point to middle of banner */
left: 12% !important;                         /* Sets distance from left edge */

/* Pulls content block up by half its height to center vertically */
transform: translateY(-50%) !important;

/* --- Sizing and Alignment --- */
width: auto !important;                       /* Width determined by content */
max-width: 900px !important;                  /* Maximum width to prevent overly wide text block */
text-align: left !important;                  /* Aligns all text to the left */
  /* Console log for debugging content block positioning */
  /* console.log("Banner content block positioned at top: 50%, left: 12%"); */
}

/* --- This styles the main H1 header --- */
section.banner__section-override .banner__content-override h1 {
  color: #ffffff !important;                   /* Color: White (#ffffff) */
  font-size: 58px !important;                  /* Font size of header */
  font-weight: 900 !important;                 /* Font weight (boldness) of header */
  line-height: 1.2 !important;                 /* Spacing between lines of text in header */
  /* Console log for debugging H1 rendering */
  /* console.log("H1 header rendered with color: #ffffff"); */
}

/* --- This styles the paragraph text --- */
section.banner__section-override .banner__content-override p {
  color: #facc15 !important;                   /* Color: Grenier's Yellow (#facc15) */
  font-size: 18px !important;                  /* Font size of paragraph text */
  font-weight: 800 !important;                 /* Font weight of paragraph text */
  margin-top: 20px !important;                 /* Space above paragraph */
  /* Console log for debugging paragraph rendering */
  /* console.log("Paragraph text rendered with color: #facc15"); */
}

/* --- This styles the container for the buttons --- */
section.banner__section-override .banner__button-override {
  display: flex !important;                    /* Activates flexbox for button alignment */
  justify-content: flex-start !important;      /* Aligns buttons to the left */
  align-items: center !important;              /* Aligns buttons vertically */
  gap: 20px !important;                        /* Space between buttons */
  flex-wrap: wrap !important;                  /* Allows buttons to stack on small screens */
  /* Console log for debugging button container rendering */
  /* console.log("Button container rendered with flexbox layout"); */
}

/* --- This styles both buttons --- */
section.banner__section-override .banner__button-override a.cmn--btn,
section.banner__section-override .banner__button-override a.cmn--btn2 {
  padding: 16px 35px !important;               /* Padding inside buttons */
  font-size: 16px !important;                  /* Font size of button text */
  font-weight: 700 !important;                 /* Font weight of button text */
  border-radius: 50px !important;              /* Rounded corners for buttons */
  /* Console log for debugging button styling */
  /* console.log("Buttons styled with padding: 16px 35px, font-size: 16px"); */
}

/* --- Styles for the primary button --- */
section.banner__section-override .banner__button-override a.cmn--btn {
  background-color: #facc15 !important;        /* Background Color: Grenier's Yellow (#facc15) */
  /* Console log for debugging primary button rendering */
  /* console.log("Primary button rendered with background: #facc15"); */
}
section.banner__section-override .banner__button-override a.cmn--btn:hover {
  background-color: #ffffff !important;        /* Background Color on Hover: White (#ffffff) */
  /* Console log for debugging primary button hover */
  /* console.log("Primary button hover state with background: #ffffff"); */
}
section.banner__section-override .banner__button-override a.cmn--btn span {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  /* Console log for debugging primary button text */
  /* console.log("Primary button text rendered with color: #222222"); */
}

/* --- Styles for the secondary button --- */
section.banner__section-override .banner__button-override a.cmn--btn2 {
  background-color: transparent !important;    /* Background Color: Transparent */
  border: 2px solid #ffffff !important;       /* Border Color: White (#ffffff) */
  /* Console log for debugging secondary button rendering */
  /* console.log("Secondary button rendered with transparent background and border: #ffffff"); */
}
section.banner__section-override .banner__button-override a.cmn--btn2:hover {
  background-color: #ffffff !important;        /* Background Color on Hover: White (#ffffff) */
  /* Console log for debugging secondary button hover */
  /* console.log("Secondary button hover state with background: #ffffff"); */
}
section.banner__section-override .banner__button-override a.cmn--btn2 span {
  color: #ffffff !important;                  /* Text Color: White (#ffffff) */
  /* Console log for debugging secondary button text */
  /* console.log("Secondary button text rendered with color: #ffffff"); */
}
section.banner__section-override .banner__button-override a.cmn--btn2:hover span {
  color: #222222 !important;                  /* Text Color on Hover: Rich Black (#222222) */
  /* Console log for debugging secondary button hover text */
  /* console.log("Secondary button text hover state with color: #222222"); */
}

/* ================================================================= */
/* 2. Careers      */
/* ================================================================= */

/* --- Main container for the capabilities section --- */
section.shop__details {
  background-color: #ffffff !important;        /* Background Color: White (#ffffff) */
  padding-top: 130px !important;               /* Top spacing for section */
  padding-bottom: 130px !important;            /* Bottom spacing for section */
  /* Console log for debugging capabilities section rendering */
  /* console.log("Capabilities section rendered with background: #ffffff"); */
}
/* --- Main heading in the capabilities section --- */
section.shop__details .content h3 {
  color: #facc15 !important;                  /* Text Color: Grenier's Yellow (#facc15) */
  font-size: 32px !important;                 /* Font size of heading */
  font-weight: 600 !important;                /* Font weight of heading */
  /* Console log for debugging heading rendering */
  /* console.log("Capabilities heading rendered with color: #facc15"); */
}
/* --- Subheading in the capabilities section --- */
section.shop__details .content h6 {
  color: #2e0c5e !important;                  /* Text Color: Primary Purple (#2e0c5e) */
  font-size: 20px !important;                 /* Font size of subheading */
  font-weight: 600 !important;                /* Font weight of subheading */
  /* Console log for debugging subheading rendering */
  /* console.log("Capabilities subheading rendered with color: #2e0c5e"); */
}
/* --- Paragraph text in the capabilities section --- */
section.shop__details .content p {
  color: #000000 !important;                  /* Text Color: Black (#000000) */
  font-size: 18px !important;                 /* Font size of paragraph text */
  /* Console log for debugging paragraph rendering */
  /* console.log("Capabilities paragraph rendered with color: #000000"); */
}

/* ================================================================= */
/* 3. Comprehensive Solutions Section (`service__section`)         */
/* ================================================================= */

/* --- Main container for the services section --- */
section.service__section {
  background-color: #f5f0ea !important;        /* Background Color: Light Beige (#f5f0ea) */
  padding-top: 130px !important;               /* Top spacing for section */
  padding-bottom: 130px !important;            /* Bottom spacing for section */
  /* Console log for debugging services section rendering */
  /* console.log("Services section rendered with background: #f5f0ea"); */
}
/* --- Subtitle for the services section --- */
section.service__section .section__title h6 {
  color: #275c53 !important;                  /* Text Color: Dark Green (#275c53) */
  font-size: 14px !important;                 /* Font size of subtitle */
  /* Console log for debugging subtitle rendering */
  /* console.log("Services subtitle rendered with color: #275c53"); */
}
/* --- Main header for the services section --- */
section.service__section .section__title h2 {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 42px !important;                 /* Font size of main header */
  /* Console log for debugging main header rendering */
  /* console.log("Services main header rendered with color: #222222"); */
}
/* --- Individual service cards --- */
section.service__section .service__items {
  background-color: #ffffff !important;        /* Background Color: White (#ffffff) */
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1) !important; /* Drop shadow for cards */
  /* Console log for debugging service cards rendering */
  /* console.log("Service cards rendered with background: #ffffff"); */
}
/* --- Title inside the service cards --- */
section.service__section .service__items .service__content h4 a {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 24px !important;                 /* Font size of card title */
  /* Console log for debugging service card title rendering */
  /* console.log("Service card title rendered with color: #222222"); */
}
section.service__section .service__items .service__content h4 a:hover {
  color: #facc15 !important;                  /* Text Color on Hover: Grenier's Yellow (#facc15) */
  /* Console log for debugging service card title hover */
  /* console.log("Service card title hover state with color: #facc15"); */
}
/* --- Paragraph text inside the service cards --- */
section.service__section .service__items .service__content p {
  color: #888888 !important;                  /* Text Color: Gray (#888888) */
  font-size: 16px !important;                 /* Font size of paragraph text */
  /* Console log for debugging service card paragraph rendering */
  /* console.log("Service card paragraph rendered with color: #888888"); */
}

/* ================================================================= */
/* 4. Testimonials Section                                           */
/* ================================================================= */

/* --- Main container for the testimonials section --- */
section.testimonial__section {
  background-color: #ffffff !important;        /* Background Color: White (#ffffff) */
  padding-top: 130px !important;               /* Top spacing for section */
  padding-bottom: 130px !important;            /* Bottom spacing for section */
  /* Console log for debugging testimonials section rendering */
  /* console.log("Testimonials section rendered with background: #ffffff"); */
}
/* --- Subtitle for the testimonials section --- */
section.testimonial__section .section__title h6 {
  color: #275c53 !important;                  /* Text Color: Dark Green (#275c53) */
  font-size: 14px !important;                 /* Font size of subtitle */
  /* Console log for debugging subtitle rendering */
  /* console.log("Testimonials subtitle rendered with color: #275c53"); */
}
/* --- Main header for the testimonials section --- */
section.testimonial__section .section__title h2 {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 42px !important;                 /* Font size of main header */
  /* Console log for debugging main header rendering */
  /* console.log("Testimonials main header rendered with color: #222222"); */
}
/* --- Individual testimonial cards --- */
section.testimonial__section .testi__items {
  background-color: #ffffff !important;        /* Background Color: White (#ffffff) */
  box-shadow: 0 0 8px 0 rgba(136, 136, 136, .1) !important; /* Drop shadow for cards */
  /* Console log for debugging testimonial cards rendering */
  /* console.log("Testimonial cards rendered with background: #ffffff"); */
}
/* --- Client's name in the testimonial --- */
section.testimonial__section .testi__items .content h5 {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 20px !important;                 /* Font size of client's name */
  /* Console log for debugging client's name rendering */
  /* console.log("Testimonial client's name rendered with color: #222222"); */
}
/* --- Client's description in the testimonial --- */
section.testimonial__section .testi__items .content span {
  color: #888888 !important;                  /* Text Color: Gray (#888888) */
  font-size: 18px !important;                 /* Font size of client's description */
  /* Console log for debugging client's description rendering */
  /* console.log("Testimonial client's description rendered with color: #888888"); */
}
/* --- Quote text in the testimonial --- */
section.testimonial__section .testi__items p {
  color: #888888 !important;                  /* Text Color: Gray (#888888) */
  /* Console log for debugging quote text rendering */
  /* console.log("Testimonial quote text rendered with color: #888888"); */
}
/* --- Star ratings in the testimonial --- */
section.testimonial__section .testi__items ul li i.fa-star {
  color: #facc15 !important;                  /* Star Color: Grenier's Yellow (#facc15) */
  /* Console log for debugging star ratings rendering */
  /* console.log("Testimonial star ratings rendered with color: #facc15"); */
}

/* ================================================================= */
/* 5. Blog Section                                                   */
/* ================================================================= */

/* --- Main container for the blog section --- */
section.blog__section {
  background-color: #f5f0ea !important;        /* Background Color: Light Beige (#f5f0ea) */
  padding-top: 130px !important;               /* Top spacing for section */
  padding-bottom: 130px !important;            /* Bottom spacing for section */
  /* Console log for debugging blog section rendering */
  /* console.log("Blog section rendered with background: #f5f0ea"); */
}
/* --- Subtitle for the blog section --- */
section.blog__section .section__title h6 {
  color: #275c53 !important;                  /* Text Color: Dark Green (#275c53) */
  font-size: 14px !important;                 /* Font size of subtitle */
  /* Console log for debugging subtitle rendering */
  /* console.log("Blog subtitle rendered with color: #275c53"); */
}
/* --- Main header for the blog section --- */
section.blog__section .section__title h2 {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 42px !important;                 /* Font size of main header */
  /* Console log for debugging main header rendering */
  /* console.log("Blog main header rendered with color: #222222"); */
}
/* --- Individual blog cards --- */
section.blog__section .blog__items {
  background-color: #ffffff !important;        /* Background Color: White (#ffffff) */
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1) !important; /* Drop shadow for cards */
  /* Console log for debugging blog cards rendering */
  /* console.log("Blog cards rendered with background: #ffffff"); */
}
/* --- Title inside the blog cards --- */
section.blog__section .blog__items .blog__content h4 a {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  font-size: 20px !important;                 /* Font size of blog post title */
  /* Console log for debugging blog card title rendering */
  /* console.log("Blog card title rendered with color: #222222"); */
}
section.blog__section .blog__items:hover .blog__content h4 a {
  color: #facc15 !important;                  /* Text Color on Hover: Grenier's Yellow (#facc15) */
  /* Console log for debugging blog card title hover */
  /* console.log("Blog card title hover state with color: #facc15"); */
}
/* --- Meta info in the blog cards --- */
section.blog__section .blog__items .blog__content ul li {
  color: #888888 !important;                  /* Text Color: Gray (#888888) */
  font-size: 16px !important;                 /* Font size of meta info */
  /* Console log for debugging meta info rendering */
  /* console.log("Blog meta info rendered with color: #888888"); */
}
/* --- Icons in the meta info --- */
section.blog__section .blog__items .blog__content ul li i {
  color: #facc15 !important;                  /* Icon Color: Grenier's Yellow (#facc15) */
  /* Console log for debugging meta info icons rendering */
  /* console.log("Blog meta info icons rendered with color: #facc15"); */
}
/* --- Excerpt text in the blog cards --- */
section.blog__section .blog__items .blog__content p {
  color: #888888 !important;                  /* Text Color: Gray (#888888) */
  /* Console log for debugging excerpt text rendering */
  /* console.log("Blog excerpt text rendered with color: #888888"); */
}
/* --- "Read more" link in the blog cards --- */
section.blog__section .blog__items .blog__btn a.cmn--btn3 {
  color: #222222 !important;                  /* Text Color: Rich Black (#222222) */
  /* Console log for debugging read more link rendering */
  /* console.log("Blog read more link rendered with color: #222222"); */
}

/* ============================================================ */
/* 6. Global Custom Section Styles                              */
/* ============================================================ */
/* Notes:
   - This section provides global styles for custom pages.
   - It is designed to work with Bootstrap and animate.css.
*/
/* ============================================================ */

/* --- Root Variables (For Reference) --- */
:root {
  --body: #ffffff;      /* White: #ffffff */
  --white: #ffffff;     /* White: #ffffff */
  --theme: #2e0c5e;     /* Primary Purple: #2e0c5e */
  --black: #222222;     /* Rich Black: #222222 */
  --subtitle: #275c53;  /* Dark Green: #275c53 */
  --base: #facc15;      /* Grenier's Yellow: #facc15 */
  --pra: #888888;       /* Gray: #888888 */
}

/* --- Global Typography & Body --- */
body {
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  background-color: #ffffff !important; /* Background Color: White (#ffffff) */
  /* Console log for debugging body rendering */
  /* console.log("Body rendered with background: #ffffff"); */
}

/* --- Helper and Base Section Class --- */
.section__custom {
  overflow: hidden !important;
  padding-top: 130px !important;
  padding-bottom: 130px !important;
  background-color: #ffffff !important; /* Background Color: White (#ffffff) */
  /* Console log for debugging custom section rendering */
  /* console.log("Custom section rendered with background: #ffffff"); */
}

/* --- Sub-Title Styling --- */
.section__custom .sub__tittle {
  margin-bottom: 20px !important;
  /* Console log for debugging subtitle container rendering */
  /* console.log("Custom section subtitle container rendered"); */
}

.section__custom .sub__tittle h6 {
  text-transform: uppercase !important;
  color: #275c53 !important;           /* Text Color: Dark Green (#275c53) */
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  position: relative !important;
  /* Console log for debugging subtitle rendering */
  /* console.log("Custom section subtitle rendered with color: #275c53"); */
}

.section__custom .sub__tittle h6::before {
  position: absolute !important;
  top: 7px !important;
  left: 220px !important;
  width: 60px !important;
  height: 1px !important;
  content: "" !important;
  background-color: #275c53 !important; /* Line Color: Dark Green (#275c53) */
  /* Console log for debugging subtitle line rendering */
  /* console.log("Custom section subtitle line rendered with color: #275c53"); */
}

/* --- Content Styling --- */
.section__custom .content__custom h2 {
  color: #222222 !important;           /* Text Color: Rich Black (#222222) */
  font-family: "DM Sans", sans-serif !important;
  font-size: 40px !important;
  line-height: 140% !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  margin-bottom: 40px !important;
  /* Console log for debugging custom section header rendering */
  /* console.log("Custom section header rendered with color: #222222"); */
}

.section__custom .content__custom h2 span {
  color: #facc15 !important;           /* Highlight Color: Grenier's Yellow (#facc15) */
  /* Console log for debugging custom section header highlight rendering */
  /* console.log("Custom section header highlight rendered with color: #facc15"); */
}

.section__custom .content__custom p {
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  color: #888888 !important;           /* Text Color: Gray (#888888) */
  font-family: "DM Sans", sans-serif !important;
  /* Console log for debugging custom section paragraph rendering */
  /* console.log("Custom section paragraph rendered with color: #888888"); */
}

.section__custom .content__custom .text {
  margin-top: 30px !important;
  /* Console log for debugging custom section text container rendering */
  /* console.log("Custom section text container rendered"); */
}

.section__custom .content__custom .text p {
  color: #2e0c5e !important;           /* Text Color: Primary Purple (#2e0c5e) */
  font-weight: 600 !important;
  /* Console log for debugging custom section text paragraph rendering */
  /* console.log("Custom section text paragraph rendered with color: #2e0c5e"); */
}

/* --- Image & Video Styling --- */
.section__custom .thumb__custom img {
  width: 100% !important;
  height: 180% !important; /* Stretches image vertically */
  /* Console log for debugging custom section image rendering */
  /* console.log("Custom section image rendered with full width"); */
}

.section__custom .style__two {
  position: relative !important;
  /* Console log for debugging style two container rendering */
  /* console.log("Custom section style two container rendered"); */
}

.section__custom .style__two::before {
  content: "" !important;
  position: absolute !important;
  right: -30px !important;
  top: 0 !important;
  height: 50% !important;
  width: 15px !important;
  background: #e80a0a !important;     /* Bar Color: Red (#e80a0a) */
  /* Console log for debugging style two before element rendering */
  /* console.log("Custom section style two before element rendered with color: #e80a0a"); */
}

.section__custom .style__two::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: -30px !important;
  height: 55% !important;
  width: 15px !important;
  background: #facc15 !important;     /* Bar Color: Grenier's Yellow (#facc15) */
  /* Console log for debugging style two after element rendering */
  /* console.log("Custom section style two after element rendered with color: #facc15"); */
}

/* --- Global Video Pulse Button --- */
.video-pulse {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  display: inline-block !important;
  z-index: 4 !important;
  /* Console log for debugging video pulse rendering */
  /* console.log("Video pulse button container rendered"); */
}

.video-pulse .video-btn {
  position: relative !important;
  color: #ffffff !important;               /* Icon Color: White (#ffffff) */
  font-size: 25px !important;
  background-color: #2e0c5e00 !important;  /* Background: Transparent version of Primary Purple (#2e0c5e00) */
  width: 100px !important;
  height: 100px !important;
  line-height: 100px !important;
  border-radius: 100% !important;
  display: block !important;
  transition: all 0.6s ease-in-out !important;
  text-decoration: none !important;
  /* Console log for debugging video button rendering */
  /* console.log("Video button rendered with color: #ffffff and transparent background"); */
}

.video-pulse .video-btn:hover {
  background-color: #facc15 !important;     /* Background on Hover: Grenier's Yellow (#facc15) */
  /* Console log for debugging video button hover */
  /* console.log("Video button hover state with background: #facc15"); */
}

.video-pulse::before,
.video-pulse::after {
  position: absolute !important;
  content: "" !important;
  width: 100px !important;
  height: 100px !important;
  line-height: 100px !important;
  border: 1px solid #ffffff !important;     /* Pulse Border: White (#ffffff) */
  opacity: 0.7 !important;
  left: 0 !important;
  top: 0 !important;
  border-radius: 50% !important;
  animation: video-animation 2.5s linear infinite !important;
  /* Console log for debugging video pulse animation rendering */
  /* console.log("Video pulse animation elements rendered with border: #ffffff"); */
}

.video-pulse::before {
  animation-delay: 1s !important;
  /* Console log for debugging video pulse before animation */
  /* console.log("Video pulse before animation rendered with delay: 1s"); */
}

/* --- Animation Keyframes for Video Pulse --- */
@-webkit-keyframes video-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { opacity: 0; transform: scale(2); }
  /* Console log for debugging video animation keyframes */
  /* console.log("Webkit video animation keyframes applied"); */
}
@keyframes video-animation {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { opacity: 0; transform: scale(2); }
  /* Console log for debugging video animation keyframes */
  /* console.log("Video animation keyframes applied"); */
}

/* ================================================================= */
/* 7. Navigation Menu Styles (Added for Consistency with index.css)  */
/* ================================================================= */
/* Purpose: Styles for navigation menu to match index.css color scheme */
.header-wrapper {
  display: flex !important;                     /* Flexbox for responsive layout */
  flex-wrap: wrap !important;                  /* Allows wrapping on smaller screens */
  align-items: center !important;              /* Vertically centers items */
  justify-content: space-between !important;   /* Spaces items evenly */
  transition: all 0.9s !important;             /* Smooth transition for changes */
  width: 100% !important;                      /* Full width */
  position: relative !important;               /* Positioning context for children */
  /* Console log for debugging header wrapper rendering */
  /* console.log("Header wrapper rendered with flexbox layout"); */
}

/* --- Navigation menu list --- */
.header-wrapper .main-menu {
  display: flex !important;                    /* Flexbox for horizontal menu */
  align-items: center !important;              /* Vertically centers menu items */
  /* Console log for debugging main menu rendering */
  /* console.log("Main menu rendered with flexbox layout"); */
}

/* --- Navigation menu items --- */
.header-wrapper .main-menu li {
  transition: all 0.4s !important;             /* Smooth transition for interactions */
  position: relative !important;               /* Positioning context for sub-menus */
  /* Console log for debugging menu item rendering */
  /* console.log("Navigation menu items rendered"); */
}

/* --- Navigation menu links --- */
.header-wrapper .main-menu li a {
  color: #ffd901 !important;                   /* Yellow text for navigation menu buttons: #ffd901 */
  font-size: 16px !important;                  /* Font size consistent with index.css */
  font-family: "Inter", sans-serif !important; /* Font family consistent with index.css */
  font-weight: 500 !important;                 /* Font weight consistent with index.css */
  line-height: 120% !important;                /* Line height consistent with index.css */
  text-transform: capitalize !important;       /* Capitalizes text */
  padding: 40px 16px !important;              /* Padding consistent with index.css */
  /* Console log for debugging navigation menu button rendering */
  /* console.log("Navigation menu buttons rendered with color: #ffd901"); */
}

/* --- Navigation menu icons --- */
.header-wrapper .main-menu li a i {
  margin-left: 2px !important;                /* Spacing for icons */
  font-size: 16px !important;                 /* Icon size consistent with index.css */
  color: #ffffff !important;                  /* White icon color consistent with index.css */
  /* Console log for debugging navigation menu icon rendering */
  /* console.log("Navigation menu icons rendered with color: #ffffff"); */
}

/* ================================================================= */
/* 8. RESPONSIVE OVERRIDE BLOCK (Screens < 992px)                    */
/* ================================================================= */
@media (max-width: 991px) {
  /* --- Banner content positioning --- */
  section.banner__section-override {
    padding: 80px 15px !important;
    /* Console log for debugging banner responsive rendering */
    /* console.log("Banner section rendered for screens < 992px"); */
  }
  section.banner__section-override .banner__content-override {
    position: static !important;
    transform: none !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /* Console log for debugging banner content responsive rendering */
    /* console.log("Banner content centered for screens < 992px"); */
  }
  section.banner__section-override .banner__button-override {
    justify-content: center !important;
    /* Console log for debugging button container responsive rendering */
    /* console.log("Button container centered for screens < 992px"); */
  }

  /* --- Banner font size reduction --- */
  section.banner__section-override .banner__content-override h1 {
    font-size: 42px !important;
    /* Console log for debugging H1 responsive rendering */
    /* console.log("H1 font size reduced to 42px for screens < 992px"); */
  }
  section.banner__section-override .banner__content-override p {
    font-size: 16px !important;
    /* Console log for debugging paragraph responsive rendering */
    /* console.log("Paragraph font size reduced to 16px for screens < 992px"); */
  }

  /* --- Stacking for shop details --- */
  section.shop__details .row {
    flex-direction: column !important;
    gap: 40px !important;
    /* Console log for debugging shop details responsive rendering */
    /* console.log("Shop details row stacked vertically for screens < 992px"); */
  }
  section.shop__details .row > .col-xl-6,
  section.shop__details .row > .col-xl-5 {
    width: 100% !important;
    /* Console log for debugging column responsive rendering */
    /* console.log("Shop details columns set to full width for screens < 992px"); */
  }

  /* --- Centering for card sections --- */
  section.service__section .row,
  section.blog__section .row {
    justify-content: center !important;
    /* Console log for debugging card sections responsive rendering */
    /* console.log("Service and blog rows centered for screens < 992px"); */
  }

  /* --- Combined padding reduction for all relevant sections --- */
  section.shop__details,
  section.service__section,
  section.testimonial__section,
  section.blog__section,
  .section__custom {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    /* Console log for debugging section padding responsive rendering */
    /* console.log("Section padding reduced to 80px for screens < 992px"); */
  }

  /* --- Font size reduction for custom section --- */
  .section__custom .content__custom h2 {
    font-size: 32px !important;
    /* Console log for debugging custom section header responsive rendering */
    /* console.log("Custom section header font size reduced to 32px for screens < 992px"); */
  }
  .section__custom .content__custom p {
    font-size: 15px !important;
    /* Console log for debugging custom section paragraph responsive rendering */
    /* console.log("Custom section paragraph font size reduced to 15px for screens < 992px"); */
  }

  /* --- Video button size reduction --- */
  .video-pulse {
    width: 80px !important;
    height: 80px !important;
    /* Console log for debugging video pulse responsive rendering */
    /* console.log("Video pulse size reduced to 80px for screens < 992px"); */
  }
  .video-pulse .video-btn {
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    font-size: 20px !important;
    /* Console log for debugging video button responsive rendering */
    /* console.log("Video button size reduced to 80px with font-size 20px for screens < 992px"); */
  }
  .video-pulse::before,
  .video-pulse::after {
    width: 80px !important;
    height: 80px !important;
    line-height: 80px !important;
    /* Console log for debugging video pulse animation responsive rendering */
    /* console.log("Video pulse animation elements reduced to 80px for screens < 992px"); */
  }

  /* --- Navigation menu adjustments for smaller screens --- */
  .header-wrapper .main-menu {
    flex-direction: column !important;         /* Stack menu items vertically */
    align-items: flex-start !important;       /* Align items to the left */
    /* Console log for debugging main menu responsive rendering */
    /* console.log("Main menu stacked vertically for screens < 992px"); */
  }
  .header-wrapper .main-menu li a {
    padding: 10px 16px !important;            /* Reduced padding for mobile */
    /* Console log for debugging mobile navigation rendering */
    /* console.log("Mobile navigation menu buttons rendered with color: #ffd901"); */
  }
}

/* ================================================================= */
/* 9. RESPONSIVE OVERRIDE BLOCK (Screens < 768px)                    */
/* ================================================================= */
@media (max-width: 767px) {
  /* --- Banner font size reduction --- */
  section.banner__section-override .banner__content-override h1 {
    font-size: 32px !important;
    /* Console log for debugging H1 responsive rendering */
    /* console.log("H1 font size reduced to 32px for screens < 768px"); */
  }
  section.banner__section-override .banner__content-override p {
    font-size: 15px !important;
    /* Console log for debugging paragraph responsive rendering */
    /* console.log("Paragraph font size reduced to 15px for screens < 768px"); */
  }

  /* --- Combined section header font reduction --- */
  section.shop__details .content h3,
  section.service__section .section__title h2,
  section.testimonial__section .section__title h2,
  section.blog__section .section__title h2,
  .section__custom .content__custom h2 {
    font-size: 30px !important;
    /* Console log for debugging section header responsive rendering */
    /* console.log("Section headers font size reduced to 30px for screens < 768px"); */
  }

  /* --- Combined padding reduction for all relevant sections --- */
  section.shop__details,
  section.service__section,
  section.testimonial__section,
  section.blog__section,
  .section__custom {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    /* Console log for debugging section padding responsive rendering */
    /* console.log("Section padding reduced to 60px for screens < 768px"); */
  }

  /* --- Font size reduction for custom section --- */
  .section__custom .content__custom p {
    font-size: 14px !important;
    /* Console log for debugging custom section paragraph responsive rendering */
    /* console.log("Custom section paragraph font size reduced to 14px for screens < 768px"); */
  }

  /* --- Video button size reduction --- */
  .video-pulse {
    width: 60px !important;
    height: 60px !important;
    /* Console log for debugging video pulse responsive rendering */
    /* console.log("Video pulse size reduced to 60px for screens < 768px"); */
  }
  .video-pulse .video-btn {
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    font-size: 18px !important;
    /* Console log for debugging video button responsive rendering */
    /* console.log("Video button size reduced to 60px with font-size 18px for screens < 768px"); */
  }
  .video-pulse::before,
  .video-pulse::after {
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    /* Console log for debugging video pulse animation responsive rendering */
    /* console.log("Video pulse animation elements reduced to 60px for screens < 768px"); */
  }

  /* --- Further navigation menu adjustments for smaller screens --- */
  .header-wrapper .main-menu li a {
    font-size: 14px !important;               /* Smaller font size for mobile */
    /* Console log for debugging small screen navigation rendering */
    /* console.log("Small screen navigation menu buttons rendered with color: #ffd901"); */
  }
}

/* ================================================================= */
/* 10. CUSTOM ENHANCEMENTS FOR IMAGE BOXES                           */
/* ================================================================= */

/* --- Rounded Corners for Main Service and Blog Containers --- */
/* This applies rounded corners to the entire container for a cohesive look. */
.service__section .service__items,
.blog__section .blog__items {
    border-radius: 15px; /* Rounded corners for cohesive look */
    overflow: hidden;    /* Clips content to rounded shape */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Console log for debugging service and blog container rendering */
    /* console.log("Service and blog containers rendered with rounded corners"); */
}

/* --- Rounded Corners for the Standalone Capabilities Image --- */
/* This section's image is separate from the text, so it gets its own rounding. */
.shop__details .image.img {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Console log for debugging capabilities image rendering */
    /* console.log("Capabilities image rendered with rounded corners"); */
}

/* --- Pop-Out Effect on Hover for Service and Blog Sections --- */
/* This makes the entire service or blog item scale up smoothly on hover. */
.service__section .service__items:hover,
.blog__section .blog__items:hover {
    transform: scale(1.05); /* Makes the container "pop out" */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Adds a more pronounced shadow */
    z-index: 10;
    position: relative;
    /* Console log for debugging hover effect rendering */
    /* console.log("Service or blog container hover effect applied"); */
}

/* --- Pop-Out Effect for Capabilities Section Image --- */
.shop__details .image.img:hover {
    transform: scale(1.03); /* Subtle pop-out for larger image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Console log for debugging capabilities image hover effect */
    /* console.log("Capabilities image hover effect applied"); */
}

/* --- Positioning for Click-to-View Icon --- */
.service__thumb,
.blog__thumb {
    position: relative; /* Needed for positioning the click-to-view icon */
    /* Console log for debugging thumb positioning */
    /* console.log("Service and blog thumb containers positioned for click-to-view icon"); */
}

/* --- Click-to-View Icon Styling --- */
/* This adds a magnifying glass icon over images, indicating they can be expanded. */
.service__thumb a::before,
.blog__thumb a::before,
.shop-single-slide .swiper-slide a::before {
    content: '\f00e'; /* Font Awesome search/magnify icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    color: white; /* Icon Color: White (#ffffff) */
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.4); /* Background Color: Semi-transparent black (rgba(0, 0, 0, 0.4)) */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
    pointer-events: none; /* Allows clicks to go through to the link */
    /* Console log for debugging click-to-view icon rendering */
    /* console.log("Click-to-view icon rendered with color: #ffffff and background: rgba(0, 0, 0, 0.4)"); */
}

/* --- Show Icon on Hover --- */
/* The icon appears when you hover over the main container. */
.service__items:hover .service__thumb a::before,
.blog__items:hover .blog__thumb a::before,
.shop__details .image.img:hover a::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    /* Console log for debugging click-to-view icon hover effect */
    /* console.log("Click-to-view icon hover effect applied"); */
}

/* ================================================================= */
/* 11. Social Icons Styles (Extracted from main.css for Consistency) */
/* ================================================================= */
/* Purpose: Styles for top header social icons to match main.css */
.social {
  gap: 12px !important;                       /* Space between social icons */
  display: flex !important;                   /* Flexbox for responsive horizontal layout */
  /* Console log for debugging social icons container rendering */
  /* console.log("Social icons container rendered with flexbox layout and gap: 12px"); */
}

.social li a {
  width: 36px !important;                    /* Fixed width for circular icons */
  height: 36px !important;                   /* Fixed height for circular icons */
  display: block !important;                 /* Block display for link */
  border-radius: 50% !important;             /* Circular shape to match page buttons */
  border: 1px solid #facc15 !important;      /* Border Color: Grenier's Yellow (#facc15) */
  display: flex !important;                   /* Flexbox for centering icon content */
  align-items: center !important;            /* Vertically centers icon */
  justify-content: center !important;        /* Horizontally centers icon */
  /* Console log for debugging social icon rendering */
  /* console.log("Social icons rendered with border color: #facc15"); */
}

.social li a i {
  color: #ffffff !important;                 /* Icon Color: White (#ffffff) */
  font-size: 16px !important;                /* Icon size */
  /* Console log for debugging social icon font rendering */
  /* console.log("Social icon font rendered with color: #ffffff"); */
}

.social li:hover a i {
  color: #ffffff !important;                 /* Icon Color on Hover: White (#ffffff) */
  /* Console log for debugging social icon hover rendering */
  /* console.log("Social icon hover state rendered with color: #ffffff"); */
}

.social li:hover {
  background-color: #2e0c5e !important;      /* Background Color on Hover: Primary Purple (#2e0c5e) */
  /* Console log for debugging social icon hover background */
  /* console.log("Social icon hover state rendered with background: #2e0c5e"); */
}









/* ================================================================
   CAREERS CONTENT BLOCKS (scoped; safe to append)
   Brand: #2e0c5e (purple) • #facc15 (yellow) • #222222 (black)
   ================================================================ */

/* Fallback container width if your theme doesn't set it here */
.jobs .container, .perks .container, .hiring .container, .faq .container, .apply .container {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
}

/* ---------------------- OPEN ROLES ---------------------- */
section.jobs { background:#fff !important; padding-top:100px !important; padding-bottom:90px !important; }
section.jobs .section-title{ color:#222222 !important; font-size:42px !important; line-height:1.2 !important; margin-bottom:10px !important; }
section.jobs .lead, section.jobs .kicker{ color:#888888 !important; font-size:18px !important; margin-bottom:26px !important; }

/* Grid */
section.jobs .job-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:26px !important;
}

/* Card */
section.jobs .job-card{
  background:#fff !important;
  border:1px solid rgba(0,0,0,.06) !important;
  border-radius:16px !important;
  box-shadow:0 10px 32px rgba(0,0,0,.08) !important;
  overflow:hidden !important;
  display:flex !important; flex-direction:column !important;
  transition:transform .18s ease, box-shadow .24s ease !important;
}
section.jobs .job-card:hover{ transform:translateY(-3px) !important; box-shadow:0 16px 44px rgba(0,0,0,.12) !important; }

/* Media */
section.jobs .job-card__media{ background:#f3f3f3; min-height:220px; }
section.jobs .job-card__media img{ width:100% !important; height:220px !important; object-fit:cover !important; display:block !important; }

/* Body */
section.jobs .job-card__title{
  color:#2e0c5e !important; font-size:22px !important; font-weight:800 !important; line-height:1.25 !important;
  padding:18px 18px 6px 18px !important;
}
section.jobs .job-card__blurb{ color:#444 !important; font-size:15px !important; line-height:1.55 !important; padding:0 18px 10px 18px !important; }

/* Meta */
section.jobs .job-card p strong{ color:#2e0c5e !important; font-weight:800 !important; }
section.jobs .job-card .job-card__meta{
  display:flex !important; flex-wrap:wrap !important; gap:10px 18px !important; padding:0 18px 6px 18px !important;
  color:#555 !important; font-size:14px !important;
}

/* Highlights */
section.jobs .job-card__highlights{ padding:6px 18px 14px 18px !important; }
section.jobs .job-card__highlights li{
  list-style:none !important; position:relative !important; padding-left:26px !important;
  color:#444 !important; font-size:15px !important; line-height:1.5 !important; margin:8px 0 !important;
}
section.jobs .job-card__highlights li::before{
  content:""; position:absolute !important; left:0; top:.4em;
  width:18px; height:18px; border-radius:50%; background:#2e0c5e !important;
  box-shadow:0 0 0 3px rgba(250,204,21,.45) !important;
}
section.jobs .job-card__highlights li::after{
  content:""; position:absolute !important; left:5px; top:.74em; width:8px; height:4px; border:2px solid #fff;
  border-top:none; border-right:none; transform:rotate(-45deg);
}

/* CTAs */
section.jobs .job-card__cta{ display:flex !important; gap:10px !important; padding:0 18px 18px 18px !important; }
section.jobs .btn{ background:#2e0c5e !important; color:#fff !important; border-radius:999px !important; padding:10px 16px !important; font-weight:800 !important; box-shadow:0 8px 22px rgba(46,12,94,.25) !important; }
section.jobs .btn:hover{ transform:translateY(-1px) !important; box-shadow:0 12px 28px rgba(46,12,94,.33) !important; }
section.jobs .btn.btn--ghost{ background:transparent !important; color:#2e0c5e !important; border:1.5px solid #2e0c5e !important; box-shadow:none !important; }

/* Responsive (roles) */
@media (max-width:1199px){ section.jobs .job-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) !important; } }
@media (max-width:767px){
  section.jobs{ padding-top:70px !important; padding-bottom:60px !important; }
  section.jobs .section-title{ font-size:32px !important; }
  section.jobs .job-grid{ grid-template-columns:1fr !important; gap:18px !important; }
}

/* ---------------------- BENEFITS / PERKS ---------------------- */
section.perks{ background:#f5f0ea !important; padding-top:100px !important; padding-bottom:90px !important; }
section.perks .section-title{ color:#222 !important; font-size:38px !important; margin-bottom:8px !important; }
section.perks .lead{ color:#888 !important; font-size:18px !important; margin-bottom:28px !important; }
section.perks .perks-grid{ display:grid !important; grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:22px !important; }
section.perks .perk{
  background:#fff !important; border:1px solid rgba(0,0,0,.06) !important; border-radius:16px !important;
  padding:20px !important; box-shadow:0 10px 32px rgba(0,0,0,.08) !important; transition:transform .18s ease, box-shadow .24s ease !important;
}
section.perks .perk:hover{ transform:translateY(-3px) !important; box-shadow:0 16px 44px rgba(0,0,0,.12) !important; }
section.perks .perk h4{
  position:relative !important; padding-left:14px !important; margin-bottom:8px !important;
  color:#2e0c5e !important; font-weight:800 !important; font-size:18px !important;
}
section.perks .perk h4::before{
  content:"" !important; position:absolute !important; left:0; top:.45em; width:6px; height:1.2em; background:#facc15 !important; border-radius:3px !important;
}
section.perks .perk p{ color:#555 !important; font-size:15px !important; line-height:1.55 !important; }
@media (max-width:991px){ section.perks .perks-grid{ grid-template-columns:repeat(2,1fr) !important; } }
@media (max-width:575px){ section.perks .perks-grid{ grid-template-columns:1fr !important; } }

/* ---------------------- HOW WE HIRE (STEPS) ---------------------- */
section.hiring{ background:#fff !important; padding-top:100px !important; padding-bottom:90px !important; }
section.hiring .section-title{ color:#222 !important; font-size:38px !important; margin-bottom:8px !important; }
section.hiring .lead{ color:#888 !important; margin-bottom:28px !important; }
section.hiring .steps-grid{ display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:22px !important; }
section.hiring .step{
  position:relative !important; background:#fff !important; border:1px solid rgba(0,0,0,.06) !important; border-radius:16px !important;
  padding:22px 18px 18px 18px !important; box-shadow:0 10px 32px rgba(0,0,0,.08) !important;
}
section.hiring .step__num{
  position:absolute !important; top:-18px !important; left:18px !important;
  width:42px !important; height:42px !important; border-radius:50% !important;
  background:#2e0c5e !important; color:#fff !important; display:flex !important; align-items:center !important; justify-content:center !important;
  font-weight:900 !important; border:3px solid #facc15 !important; box-shadow:0 6px 16px rgba(46,12,94,.25) !important;
}
section.hiring .step h4{ color:#2e0c5e !important; font-size:18px !important; font-weight:800 !important; margin:18px 0 6px !important; }
section.hiring .step p{ color:#555 !important; font-size:15px !important; line-height:1.55 !important; }
/* connectors */
@media (min-width:992px){
  section.hiring .step::after{ content:""; position:absolute !important; right:-12px !important; top:22px !important; width:24px !important; height:3px !important; background:#facc15 !important; }
  section.hiring .step:last-child::after{ display:none !important; }
}
@media (max-width:1199px){ section.hiring .steps-grid{ grid-template-columns:repeat(2,1fr) !important; } }
@media (max-width:575px){ section.hiring .steps-grid{ grid-template-columns:1fr !important; } }

/* ---------------------- FAQ ---------------------- */
section.faq{ background:#fff !important; padding-top:100px !important; padding-bottom:110px !important; }
section.faq .section-title{ color:#222 !important; font-size:38px !important; margin-bottom:8px !important; }
section.faq .lead{ color:#888 !important; margin-bottom:24px !important; }
section.faq details{
  background:#ffffff !important; border:1px solid rgba(0,0,0,.08) !important; border-radius:14px !important;
  box-shadow:0 8px 26px rgba(0,0,0,.08) !important; padding:16px 18px !important; margin:12px 0 !important;
}
section.faq details[open]{ border-color:#facc15 !important; box-shadow:0 10px 30px rgba(250,204,21,.18) !important; }
section.faq summary{ cursor:pointer !important; list-style:none !important; font-weight:800 !important; color:#2e0c5e !important; font-size:16px !important; }
section.faq summary::-webkit-details-marker{ display:none !important; }
section.faq summary::after{ content:"+" !important; float:right !important; font-weight:900 !important; color:#2e0c5e !important; }
section.faq details[open] summary::after{ content:"—" !important; }
section.faq details p{ color:#555 !important; font-size:15px !important; margin:10px 0 2px !important; }

/* ---------------------- APPLICATION (overlay polish) ---------------------- */
#application { background:#ffffff !important; padding-top:130px !important; padding-bottom:130px !important; }
#application .section-title { color:#222222 !important; font-size:42px !important; line-height:1.2 !important; margin-bottom:10px !important; }
#application .apply__intro { max-width:860px !important; margin:0 auto 30px !important; color:#888888 !important; font-size:18px !important; }

#application .apply-form{
  max-width:980px !important; margin:0 auto !important;
  background:#ffffff !important; border:1px solid rgba(0,0,0,.06) !important;
  box-shadow:0 12px 40px rgba(0,0,0,.08) !important; border-radius:18px !important; padding:32px !important;
}
#application .apply-fieldset{ border:0 !important; padding:0 !important; margin:0 0 28px 0 !important; }
#application .apply-fieldset:last-of-type{ margin-bottom:0 !important; }
#application .apply-fieldset>legend{
  font-weight:700 !important; font-size:18px !important; color:#2e0c5e !important; margin-bottom:16px !important;
  padding-left:14px !important; border-left:4px solid #facc15 !important;
}
#application .grid-2{ display:grid !important; grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:22px !important; }
#application .grid-3{ display:grid !important; grid-template-columns:repeat(3,minmax(0,1fr)) !important; gap:22px !important; }
#application .field{ display:flex !important; flex-direction:column !important; gap:8px !important; }
#application .field>span{ font-weight:600 !important; font-size:14px !important; color:#2e0c5e !important; letter-spacing:.2px !important; }
#application .field input[type="text"],
#application .field input[type="email"],
#application .field input[type="tel"],
#application .field input[type="number"],
#application .field input[type="date"],
#application .field input[type="file"],
#application .field select,
#application .field textarea{
  font-size:16px !important; color:#222222 !important; background:#ffffff !important; border:1.5px solid rgba(0,0,0,.15) !important;
  border-radius:12px !important; min-height:52px !important; padding:12px 14px !important; transition:box-shadow .2s ease, border-color .2s ease !important;
}
#application .field textarea{ min-height:120px !important; resize:vertical !important; }
/* select arrow */
#application .field select{
  -webkit-appearance:none !important; appearance:none !important; padding-right:42px !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%232e0c5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important; background-position:right 14px center !important;
}
#application .field input::placeholder, #application .field textarea::placeholder{ color:#9aa0a6 !important; }
#application .field input:focus, #application .field select:focus, #application .field textarea:focus{
  outline:none !important; border-color:#2e0c5e !important; box-shadow:0 0 0 3px rgba(250,204,21,.45) !important;
}
#application .field input[type="file"]::file-selector-button{
  font:inherit !important; border:0 !important; border-right:1px solid rgba(0,0,0,.12) !important; background:#2e0c5e !important; color:#fff !important;
  padding:10px 14px !important; margin-right:12px !important; border-radius:12px 0 0 12px !important; cursor:pointer !important;
}
#application .help{ color:#888888 !important; font-size:14px !important; margin:6px 0 14px 0 !important; }
#application .check{ display:flex !important; align-items:flex-start !important; gap:10px !important; margin:8px 0 !important; color:#222222 !important; line-height:1.4 !important; }
#application .check input[type="checkbox"]{ width:18px !important; height:18px !important; margin-top:2px !important; accent-color:#facc15 !important; cursor:pointer !important; }

#application .actions{ display:flex !important; align-items:center !important; gap:16px !important; margin-top:8px !important; flex-wrap:wrap !important; }
#application .btn.btn--gold{
  background:#facc15 !important; color:#222222 !important; border:0 !important; border-radius:999px !important; padding:14px 26px !important; font-weight:800 !important;
  letter-spacing:.2px !important; cursor:pointer !important; transition:transform .08s ease, box-shadow .2s ease !important; box-shadow:0 6px 20px rgba(250,204,21,.35) !important;
}
#application .btn.btn--gold:hover{ transform:translateY(-1px) !important; box-shadow:0 10px 26px rgba(250,204,21,.45) !important; }
#application #form-status{ min-height:22px !important; font-size:14px !important; color:#888888 !important; flex:1 1 280px !important; }
#application #form-status.is-success{ color:#1f7a5a !important; }  #application #form-status.is-error{ color:#e80a0a !important; }
#application .field input[aria-invalid="true"], #application .field select[aria-invalid="true"], #application .field textarea[aria-invalid="true"], #application .field .is-invalid{
  border-color:#e80a0a !important; box-shadow:0 0 0 3px rgba(232,10,10,.15) !important;
}
/* required asterisk (optional) */
#application .field:has(input[required], select[required], textarea[required])>span::after{ content:" *" !important; color:#e80a0a !important; font-weight:700 !important; }

/* Number spinner removal */
#application input[type="number"]::-webkit-outer-spin-button, #application input[type="number"]::-webkit-inner-spin-button{ -webkit-appearance:none !important; margin:0 !important; }
#application input[type="number"]{ -moz-appearance:textfield !important; }

/* Overlay mode */
#application .apply-close{
  position: sticky; top: 10px; margin-left:auto; display:inline-flex; align-items:center; gap:8px;
  background:#2e0c5e; color:#fff; border:0; border-radius:999px; padding:10px 14px; font-weight:800; cursor:pointer;
  box-shadow:0 8px 22px rgba(46,12,94,.25);
}
#application .apply-close:hover{ transform:translateY(-1px); box-shadow:0 12px 28px rgba(46,12,94,.33); }
body.app-open{ overflow:hidden; }
body.app-open #application{
  position: fixed !important; inset:0 !important; z-index: 9999 !important; overflow:auto !important;
  padding: 30px 0 !important; background:#ffffff !important;
}
body.app-open #application::before{ content:""; position: fixed; inset:0; background: rgba(0,0,0,.45); z-index:-1; }
body.app-open #application .apply-form{ max-width:980px !important; }

/* Responsive (#application) */
@media (max-width: 991px) {
  #application { padding-top: 80px !important; padding-bottom: 80px !important; }
  #application .apply-form { padding: 24px !important; max-width: 860px !important; }
  #application .grid-3 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 767px) {
  #application { padding-top: 60px !important; padding-bottom: 60px !important; }
  #application .apply-form { padding: 20px !important; }
  #application .grid-2, #application .grid-3 { grid-template-columns: 1fr !important; }
  #application .section-title { font-size: 32px !important; }
  #application .apply__intro { font-size: 16px !important; }
}





/* ================================================================= */
/* ================================================================= */
/*       LIGHT-DUTY TOWING PAGE MASTER OVERRIDE STYLESHEET           */
/* ================================================================= */
/* ================================================================= */
/*  NOTE: This is the definitive manual control fix. It provides     */
/*  total, forceful, and stable responsive control for all sections. */
/* ================================================================= */

/* [.. your entire CSS as given above remains the same ..] */


    .careers-hero {
      position: relative;
      padding: 120px 0 110px;
      background:
        radial-gradient(1200px 500px at 10% -10%, rgba(46,12,94,.3), transparent 60%),
        radial-gradient(1000px 500px at 90% 0%, rgba(255,193,7,.25), transparent 65%),
        linear-gradient(180deg, #0b0b13 0%, #221d15 100%);
      color: #fff;
      overflow: hidden;
    }
    .careers-hero h1 { line-height: 1.1; }
    .careers-hero .tagline { opacity:.9; max-width: 860px; }
    .badge-pill { display:inline-block; padding:6px 12px; border-radius:999px; font-size:12px; font-weight:600; background:#2e0c5e; color:#fff; }
    .jobs-grid .service__items { height:100%; }
    .jobs-grid .service__items .service__content p { min-height: 84px; }
    .benefits-grid .service__items { height:100%; }
    .process__step {
      background:#0f0f18; border:1px solid rgba(255,255,255,.06);
      border-radius:14px; padding:24px; height:100%;
    }
    .faq .accordion-button { font-weight:600; }
    .application-card {
      background:#0f0f18; border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:28px;
    }
    .cmn--btn[disabled] { opacity:.65; pointer-events:none; }

/* ================================================================= */
/* START: FORCEFUL BUTTON AND MODAL OVERRIDE [APPENDED]              */
/* ================================================================= */

/* Center the button container */
.service__items .service__content .d-flex {
    justify-content: center;
    align-items: center;
}

/* General styles for both buttons */
.cmn--btn,
.cmn--btn3 {
    padding: 14px 32px; /* Increased size */
    border-radius: 50px; /* Oval shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

/* "Apply Now" button styles - NUCLEAR OPTION FOR WHITE FONT */
html body div section .service__items .service__content .d-flex .cmn--btn,
html body .service__items .service__content .cmn--btn,
html body .cmn--btn,
body .cmn--btn,
.cmn--btn,
a.cmn--btn,
button.cmn--btn,
[class*="cmn--btn"] {
    background-color: #2e0c5e !important; /* Purple background */
    color: #ffffff !important; /* White font */
    border-color: #2e0c5e !important;
    text-decoration: none !important;
}

/* Hover states with maximum specificity */
html body div section .service__items .service__content .d-flex .cmn--btn:hover,
html body .service__items .service__content .cmn--btn:hover,
html body .cmn--btn:hover,
body .cmn--btn:hover,
.cmn--btn:hover,
a.cmn--btn:hover,
button.cmn--btn:hover {
    background-color: #facc15 !important; /* Yellow background on hover */
    color: #2e0c5e !important; /* Purple font on hover */
    border-color: #facc15 !important;
}

/* Additional nuclear overrides for any nested elements */
.cmn--btn * { color: inherit !important; }
.service__content .cmn--btn,
.service__items .cmn--btn,
div .cmn--btn,
section .cmn--btn {
    color: #ffffff !important;
    background-color: #2e0c5e !important;
}

/* "Role FAQ" button styles */
.cmn--btn3 {
    background-color: #facc15; /* Yellow background */
    color: #2e0c5e; /* Purple font */
    border-color: #facc15;
}

.cmn--btn3:hover {
    background-color: #2e0c5e; /* Purple background on hover */
    color: #ffffff; /* White font on hover */
    border-color: #2e0c5e;
}

/* FIXED: Equal height for job cards to align buttons */
.jobs-grid .col-xxl-4, .jobs-grid .col-xl-4, .jobs-grid .col-lg-4, .jobs-grid .col-md-6 {
    display: flex;
}
.jobs-grid .service__items {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%; /* Ensure all cards have equal height */
}
.jobs-grid .service__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure content fills the card */
}
.jobs-grid .service__content .mt-3.d-flex {
    margin-top: auto; /* Pushes buttons to the bottom */
}

/* ADDITIONAL FIX: Force equal height for all service items in careers section */
.service__section .row {
    display: flex;
    align-items: stretch; /* Stretch all columns to equal height */
}
.service__section .col-xxl-4,
.service__section .col-xl-4,
.service__section .col-lg-4,
.service__section .col-md-6,
.service__section .col-sm-12 {
    display: flex;
    flex-direction: column;
}
.service__section .service__items {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}
.service__section .service__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}
.service__section .service__content p {
    flex-grow: 1; /* Allow paragraph to expand and fill space */
    margin-bottom: 20px; /* Add consistent spacing before buttons */
}
.service__section .service__content .d-flex {
    margin-top: auto; /* Push buttons to bottom of card */
}

/* FIXED: Modal styles for the application form */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 15px;
}
.application-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
.application-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.application-modal-close:hover {
    opacity: .8;
}
body.modal-open {
    overflow: hidden;
}

/* ================================================================= */
/* END: FORCEFUL BUTTON AND MODAL OVERRIDE                           */
/* ================================================================= */

/* ================================================================= */
/* OPTIMIZED BUTTON STYLING - CLEAN AND EFFECTIVE                    */
/* ================================================================= */

/* Primary button (Apply Now) - Purple background with white text */
.cmn--btn,
a.cmn--btn,
button.cmn--btn {
    background-color: #2e0c5e !important;
    color: #ffffff !important;
    border: 2px solid #2e0c5e !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Primary button hover state */
.cmn--btn:hover,
a.cmn--btn:hover,
button.cmn--btn:hover {
    background-color: #facc15 !important;
    color: #2e0c5e !important;
    border-color: #facc15 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(46, 12, 94, 0.3) !important;
}

/* Secondary button (Role FAQ) - Yellow background with purple text */
.cmn--btn3,
a.cmn--btn3,
button.cmn--btn3 {
    background-color: #facc15 !important;
    color: #2e0c5e !important;
    border: 2px solid #facc15 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Secondary button hover state */
.cmn--btn3:hover,
a.cmn--btn3:hover,
button.cmn--btn3:hover {
    background-color: #2e0c5e !important;
    color: #ffffff !important;
    border-color: #2e0c5e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3) !important;
}

/* Ensure text inside buttons inherits the correct color */
.cmn--btn span,
.cmn--btn *,
.cmn--btn3 span,
.cmn--btn3 * {
    color: inherit !important;
}

/* Focus states for accessibility */
.cmn--btn:focus,
.cmn--btn3:focus {
    outline: 3px solid rgba(250, 204, 21, 0.5) !important;
    outline-offset: 2px !important;
}

/* ================================================================= */
/* END: OPTIMIZED BUTTON STYLING                                     */
/* ================================================================= */





/* Fix excessive spacing and make text readable */
.service__content {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: auto !important;
}

/* Remove excessive margins and spacing */
.service__content h4 {
    font-size: 20px !important;
    color: #333 !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.service__content .small {
    margin-bottom: 8px !important;
}

.service__content .small li {
    font-size: 14px !important;
    color: #666 !important;
}

.service__content p {
    font-size: 15px !important;
    color: #444 !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
}

/* Make bottom requirement text bigger and readable */
.service__content ul:not(.small) {
    margin-top: 8px !important;
    margin-bottom: 15px !important;
}

.service__content ul:not(.small) li {
    font-size: 15px !important;
    color: #555 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

/* Remove excessive spacing between sections */
.service__content .mt-3 {
    margin-top: 12px !important;
}

/* Ensure buttons stay at bottom */
.service__content > div:last-child {
    margin-top: auto !important;
}