  /* --- 1. GLOBAL VARIABLES & RESET --- */
  :root {
      --primary: #0f172a;
      /* Professional Navy/Slate */
      --primary-light: #1e293b;
      --accent: #2563eb;
      /* Corporate Blue */
      --accent-hover: #1d4ed8;
      --green: #10b981;
      /* Success Green */
      --text-dark: #334155;
      --text-light: #64748b;
      --white: #ffffff;
      --bg-light: #f8fafc;
      --gradient-primary: linear-gradient(135deg, #0f172a 0%, #334155 100%);
      --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }

  body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-dark);
      background-color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-weight: 700;
      letter-spacing: -0.5px;
      /* color: var(--primary); */
  }

  a {
      text-decoration: none;
      transition: 0.3s ease;
  }

  ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  /* Smooth Scroll */
  html {
      scroll-behavior: smooth;
  }

  /* --- 2. BUTTONS --- */
  .btn-primary-custom {
      background: linear-gradient(135deg, var(--accent), var(--accent-hover));
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .btn-primary-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: width 0.3s;
      z-index: -1;
  }

  .btn-primary-custom:hover::before {
      width: 100%;
  }

  .btn-primary-custom:hover {
      transform: translateY(-2px);
      color: white;
      box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  }

  .btn-outline-custom {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.6);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-outline-custom:hover {
      background: var(--white);
      color: var(--primary);
      border-color: var(--white);
  }

  /* --- 3. NAVBAR --- */
  .navbar {
      padding: 5px 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.3s;
  }

  .navbar-brand img {
      height: 70px;
      width: auto;
      object-fit: contain;
  }

  .nav-link {
      font-weight: 600;
      color: var(--primary) !important;
      margin: 0 12px;
      font-size: 15px;
      position: relative;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
  }

  .nav-link:hover::after {
      width: 100%;
  }

  .nav-link.active {
      color: var(--accent) !important;
  }

  .nav-link.active::after {
      width: 100%;
  }

  /* Dropdown Icon Rotation */
  .nav-item.dropdown:hover .fa-chevron-down,
  .nav-link.active .fa-chevron-down {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
  }

  .fa-chevron-down {
      transition: transform 0.3s ease;
  }

  /* Dropdown Fix: Added Bridge */
  .nav-item.dropdown {
      position: relative;
  }

  /* The invisible bridge to prevent mouse from losing focus */
  .nav-item.dropdown::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 100%;
      height: 20px;
      background: transparent;
      display: block;
  }

  .dropdown-menu {
      border: none;
      box-shadow: var(--shadow-hover);
      border-radius: 12px;
      padding: 10px;
      margin-top: 15px;
      /* Visual gap */
      display: none;
      animation: fadeInUp 0.3s ease;
      border-top: 2px solid var(--accent);
      /* Visual accent on top */
  }

  .dropdown-item {
      border-radius: 8px;
      padding: 10px 15px;
      font-weight: 500;
      font-size: 14px;
      color: var(--text-dark);
  }

  .dropdown-item:hover {
      background-color: var(--bg-light);
      color: var(--accent);
      transform: translateX(5px);
  }

  @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
          display: block;
          position: absolute;
          top: 100%;
          left: 0;
      }
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* --- 4. PARALLAX HERO SECTION --- */
  .hero {
      position: relative;
      height: 100vh;
      min-height: 780px;
      /* Increased to accommodate client section */
      /* REMOVED STATIC BG IMAGE */
      /* background-image: url('https://empowerhr.com/wp-content/uploads/2024/03/EPA-B5-IMAGE2.jpg'); */
      background-color: var(--primary);
      /* Fallback */
      color: white;
      overflow: hidden;
      /* Changed to hidden to contain carousel */
  }

  /* Carousel Styles */
  #heroCarousel,
  .carousel-inner,
  .carousel-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .hero-bg-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      /* Parallax effect */
      background-repeat: no-repeat;
      z-index: 0;
  }

  /* Updated Hero Overlay */
  .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(22 32 54 / 40%) 0%, rgb(15 23 42 / 78%) 100%);
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 4;
      /* Increased to be above hero-clients */
      text-align: center;
      max-width: 900px;
      padding: 0 20px;
      margin-bottom: 60px;
      /* Space for slider */
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 120px;
      /* Offset for buttons */
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hero h1 {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .hero h1 span {
      background: linear-gradient(to right, #FF9933, #ffb380);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero p {
      font-size: 1.6rem;
      color: #ffffff;
      margin-bottom: 40px;
      font-weight: 500;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }

  /* Static Buttons Overlay */
  .hero-btns-static {
      position: absolute;
      bottom: 180px;
      /* Adjusted to sit above client slider */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 20px;
      justify-content: center;
      width: 100%;
  }

  .hero-btns {
      /* Legacy support or removal */
      display: flex;
      gap: 20px;
      justify-content: center;
  }

  /* --- CLIENT SLIDER (Solid White Background) --- */
  .hero-clients {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 3;
      background: #ffffff;
      border-top: 1px solid #f1f5f9;
      padding: 15px 0;
      height: 120px;
      /* Fixed height to prevent overlap */
  }

  .marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
  }

  .marquee-content {
      display: inline-block;
      animation: marquee 100s linear infinite;
      /* Slowed down to 100s */
  }

  .client-logo-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 25px;
      vertical-align: middle;
      transition: all 0.4s ease;
  }

  .client-logo-card:hover {
      transform: translateY(-5px);
  }

  /* --- UPDATED CLIENT LOGO STYLES (Color by default, No Box) --- */
  .client-logo-card img {
      max-height: 150px;
      max-width: 140px;
      object-fit: contain;
      transition: all 0.4s ease;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
  }

  .client-logo-card:hover img {
      transform: scale(1.08);
      filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
  }

  @keyframes marquee {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* --- 5. SERVICES SECTION (Clean Card Design) --- */
  .service-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid #f1f5f9;
      display: flex;
      flex-direction: column;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .service-img-wrapper {
      height: 220px;
      overflow: hidden;
      position: relative;
  }

  .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  /* Clear Image - Zoom on hover */
  .service-card:hover .service-img-wrapper img {
      transform: scale(1.1);
  }

  .service-body {
      padding: 30px 25px;
      position: relative;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .service-icon {
      width: 55px;
      height: 55px;
      background: var(--accent);
      color: white;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      position: absolute;
      top: -27px;
      right: 25px;
      box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
  }

  .service-title {
      font-size: 1.35rem;
      margin-bottom: 12px;
      color: var(--primary);
  }

  .service-desc {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 20px;
      flex-grow: 1;
  }

  .read-more {
      color: var(--accent);
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
  }

  .read-more:hover {
      gap: 10px;
      color: var(--accent-hover);
  }

  /* --- 6. FLOATING ICONS --- */
  .fixed-social {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .social-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: 0.3s;
  }

  .social-btn:hover {
      transform: translateX(5px) scale(1.1);
  }

  .btn-whatsapp {
      background: #25D366;
  }

  .btn-facebook {
      background: #1877F2;
  }

  .btn-linkedin {
      background: #0A66C2;
  }

  .btn-phone {
      background: var(--accent);
      /* Saffron */
      color: white;
      z-index: 1000;
  }

  /* Ringing Animation */
  @keyframes ring {
      0% {
          transform: rotate(0deg);
      }

      10% {
          transform: rotate(-25deg);
      }

      20% {
          transform: rotate(25deg);
      }

      30% {
          transform: rotate(-25deg);
      }

      40% {
          transform: rotate(25deg);
      }

      50% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(0deg);
      }
  }

  .ring-animation {
      animation: ring 1.5s infinite ease-in-out;
  }

  .ring-animation:hover {
      animation: none;
      /* Stop animation on hover */
      transform: scale(1.1);
  }

  .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      z-index: 999;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
  }

  .scroll-top.show {
      opacity: 1;
      visibility: visible;
  }

  .scroll-top:hover {
      background: var(--accent);
      transform: translateY(-3px);
  }

  /* --- 7. ADDITIONAL SECTIONS --- */

  /* NEW: Parallax Styles for Workflow Section */
  .section-parallax {
      background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=1920&auto=format&fit=crop');
      /* Corporate Handshake */
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
  }

  .section-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(15 23 42 / 63%), rgba(30, 41, 59, 0.9));
      z-index: 1;
  }

  .process-step {
      text-align: center;
      padding: 30px;
      position: relative;
      background: white;
      border-radius: 16px;
      box-shadow: var(--shadow-card);
      transition: 0.3s;
      height: 100%;
  }

  .process-step:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
  }

  .step-number {
      width: 50px;
      height: 50px;
      background: var(--bg-light);
      color: var(--accent);
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 20px;
      border: 2px solid #e2e8f0;
  }

  .why-card {
      padding: 30px;
      background: white;
      border-radius: 16px;
      border: 1px solid #f1f5f9;
      box-shadow: var(--shadow-card);
      height: 100%;
      transition: 0.3s;
  }

  .why-card:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
  }

  .why-icon {
      font-size: 40px;
      color: var(--accent);
      margin-bottom: 20px;
  }

  /* Leadership Section */
  .leadership-card {
      background: var(--bg-light);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
  }

  .quote-icon {
      font-size: 80px;
      color: rgba(0, 0, 0, 0.05);
      position: absolute;
      top: 20px;
      right: 30px;
  }

  /* Testimonial Card */
  .testimonial-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: var(--shadow-card);
      border: 1px solid #f1f5f9;
      transition: 0.3s;
  }

  .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
  }

  .stars {
      color: #FFD700;
      margin-bottom: 15px;
  }

  /* --- 8. FOOTER (Parallax & Indian Theme) --- */
  footer {
      position: relative;
      background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
      /* Network/Global Image */
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      /* Parallax Effect */
      color: #cbd5e1;
      padding: 80px 0 30px;
      overflow: hidden;
  }

  /* Navy Blue Overlay */
  footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 128, 0.92);
      /* Deep Navy Overlay */
      z-index: 0;
  }

  /* Tricolor Top Border */
  footer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
      z-index: 2;
  }

  footer .container {
      position: relative;
      z-index: 1;
  }

  .footer-logo {
      display: inline-block;
      background: white;
      padding: 10px 20px;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .footer-logo img {
      height: 70px;
      width: auto;
      display: block;
      filter: none;
      /* Show original logo colors */
  }

  .footer-title {
      color: white;
      /* Saffron */
      font-size: 18px;
      margin-bottom: 25px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
  }

  /* Decorative underline for titles */
  .footer-title::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: white;
      margin-top: 8px;
  }

  .footer-link {
      display: block;
      color: #cbd5e1;
      margin-bottom: 12px;
      transition: 0.3s;
      text-decoration: none;
      display: flex;
      align-items: center;
  }

  .footer-link:hover {
      color: var(--green);
      /* India Green */
      padding-left: 8px;
      transform: translateX(2px);
  }

  /* Arrow/Icon before link on hover */
  .footer-link::before {
      content: '\f105';
      /* FontAwesome angle-right */
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      opacity: 0;
      margin-right: 0;
      transition: 0.3s;
      font-size: 14px;
  }

  .footer-link:hover::before {
      opacity: 1;
      margin-right: 8px;
      color: var(--accent);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
      text-align: center;
  }

  /* Social Icons Hover - Tricolor */
  .footer-social-icon {
      color: white;
      transition: 0.3s;
  }

  .footer-social-icon:hover {
      color: var(--accent);
      transform: translateY(-3px);
  }

  /* --- 9. MODALS --- */
  .modal-content {
      border-radius: 20px;
      border: none;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  .modal-header {
      background: var(--bg-light);
      padding: 20px 30px;
      border-bottom: 1px solid #e2e8f0;
  }

  .modal-body {
      padding: 30px;
  }

  .form-control,
  .form-select {
      border-radius: 10px;
      padding: 12px;
      border: 1px solid #cbd5e1;
      font-size: 14px;
  }

  .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
  }

  .form-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 6px;
  }

  /* Drag & Drop Zone */
  .upload-zone {
      border: 2px dashed #cbd5e1;
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      cursor: pointer;
      background: var(--bg-light);
      transition: all 0.3s ease;
  }

  .upload-zone.dragover {
      border-color: var(--accent);
      background: #fff0e0;
      transform: scale(1.01);
  }

  .upload-icon {
      font-size: 32px;
      color: var(--accent);
      margin-bottom: 10px;
      opacity: 0.8;
  }

  .file-info {
      display: none;
      margin-top: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background: white;
      padding: 8px 12px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      align-items: center;
      gap: 8px;
  }

  .file-info i {
      color: #10b981;
  }

  /* Responsive */
  @media (max-width: 1200px) {
      .hero h1 {
          font-size: 3.5rem;
      }

      .hero p {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 991px) {
      .hero h1 {
          font-size: 2.8rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .hero-btns {
          flex-direction: column;
          width: 100%;
          max-width: 300px;
          margin: 0 auto;
      }

      .btn-primary-custom,
      .btn-outline-custom {
          width: 100%;
          margin-bottom: 10px;
      }

      .fixed-social {
          display: none;
      }

      .navbar-collapse {
          background: white;
          padding: 20px;
          border-radius: 15px;
          margin-top: 15px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      }

      .dropdown-menu {
          display: none;
      }
  }

  @media (max-width: 768px) {
      .hero {
          min-height: 750px;
      }

      .hero h1 {
          font-size: 2.2rem;
          line-height: 1.2;
      }

      .hero p {
          font-size: 1rem;
          margin-bottom: 30px;
      }

      .hero-content {
          margin-bottom: 40px;
          padding: 0 15px;
      }

      .hero-badge {
          font-size: 12px;
          padding: 6px 20px;
      }
  }

  @media (max-width: 576px) {

      /* .hero { min-height: 550px; } */
      .hero h1 {
          font-size: 1.8rem;
      }

      .hero p {
          font-size: 0.95rem;
      }

      .hero-btns {
          max-width: 250px;
      }

      .hero-btns .btn {
          font-size: 0.9rem;
          padding: 12px 20px;
      }
  }

  @media (max-width: 400px) {
      .hero h1 {
          font-size: 1.6rem;
      }

      .hero p {
          font-size: 0.9rem;
      }

      .hero-btns {
          max-width: 220px;
      }

      .hero-btns .btn {
          font-size: 0.85rem;
          padding: 10px 16px;
      }
  }

  /* --- PRELOADER --- */
  #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--white);
      z-index: 99999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .loader-content {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 120px;
      height: 120px;
  }

  .loader-logo {
      width: 95px;
      height: auto;
      position: relative;
      z-index: 2;
      animation: pulse 2s infinite ease-in-out;
  }

  .loader-circle {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 3px solid transparent;
      border-top-color: var(--accent);
      border-right-color: var(--white);
      border-bottom-color: var(--green);
      border-radius: 50%;
      animation: spin 1.5s linear infinite;
      z-index: 1;
      box-shadow: 0 0 15px rgba(255, 153, 51, 0.2);
  }

  .loader-circle::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border: 3px solid transparent;
      border-top-color: var(--primary);
      border-bottom-color: var(--primary);
      border-radius: 50%;
      animation: spin 2s linear infinite reverse;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .text-muted {
      color: black !important;
  }

  .text-secondary {
      color: black !important;
  }

  .page-header::before {
      background: linear-gradient(135deg, rgb(22 32 54 / 44%) 0%, rgb(15 23 42 / 63%) 100%) !important;
  }

  .text-white-50 {
      color: white !important;
  }