html, body {
    overflow-x: hidden;
  }

  /* Flexbox Layout for Sticky Footer */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f5f5;
  }

  main {
    padding-top: 110px; /* Matches the initial height of .navbar-wrapper */
  }

  .text-with-line {
    display: inline-block;
    position: relative;
  }

  .text-with-line hr {
    border: 0;
    height: 2px;
    background-color: #3e64ff;
    opacity: 1;
    margin: 12px 0 16px 6px;
    width: calc(25% + 2em);

  }

  .btn-primary {
    background: #3e64ff;
    border-color: #3e64ff;
    color: #fff;
  }
  
  .navbar-wrapper.shrink + main {
    padding-top: 60px; /* Matches the height when .navbar-wrapper is shrunk */
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0; /* Initial padding for top and bottom */
  }

  .navbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 110px; /* Initial wrapper height */
    transition: height 0.3s ease, padding 0.3s ease; /* Smooth transition for height */
  }

  .navbar-wrapper.shrink {
    height: 60px; /* Height when wrapper is shrunk */
  }

  .cba-logo {
    max-height: 100px;
    transition: max-height 0.3s ease;
  }

  .navbar-wrapper.shrink .cba-logo {
    max-height: 50px;
  }

  .container {
    flex: 1;
  }

  .section-light {
    background-color: #f8f9fa;
    padding: 60px 0;
  }

  .section-dark {
    background-color: #e9ecef;
    padding: 60px 0;
  }

  .footer {
    background-color: #212529;
    color: white;
    margin-top: auto;
    padding: 10px 0;
  }

  .bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  }

  .fill-white {
      fill: #fff !important;
  }

  .border-bottom {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  }

  .social-icon i {
      color: #1877F2; /* Facebook Blue */
      vertical-align: middle;
  }