
    /* Scoped styles using the container class */
  .nlp-award-container {
    --nlp-primary: #020101;
    --nlp-secondary: #a47c68;
    --nlp-white: #ffffff;
    max-width: 1200px;
  }
  
  .nlp-award-container img {
    height: 500px;
    object-fit: contain;
    border-bottom-left-radius: 200px !important;
  }
  
  .nlp-award-container h2 {
    color: var(--nlp-white);
    line-height: 1.2;
  }
  
  .nlp-cta-btn {
    background-color: var(--nlp-white);
    color: var(--nlp-primary);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 15px 50px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
  }
  
  .nlp-cta-btn:hover {
    color: var(--nlp-white);
  }
  
  .nlp-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--nlp-primary);
    transition: all 0.5s ease-in-out;
    z-index: -1;
  }
  
  .nlp-cta-btn:hover::after {
    width: 100%;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1199px) {
    .nlp-award-container h2 {
      font-size: 2.75rem;
    }
  }
  
  @media (max-width: 991px) {
    .nlp-award-container .ps-xl-5 {
      padding-left: 0 !important;
    }
  }
  
  @media (max-width: 767px) {
    .nlp-award-container h2 {
      font-size: 2rem;
    }
    .nlp-award-container img {
      height: 350px;
      width: auto;
    }
  }


    footer ul, ol {
    margin: 0 !important;
    }

    .footer-heading {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 32px;

    &::before {
        content: "";
        position: absolute;
        bottom: -9px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: #d51c0b;
    }

    &::after {
        content: "";
        position: absolute;
        bottom: -9px;
        left: 45px;
        width: 4px;
        height: 2px;
        background-color: #ffffff; 
    }
    }

    .social-icon {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-color: #161E27;
    border-radius: 50%;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;

    &::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background-color: #ffffff;
        transition-delay: 0.1s;
        transition-timing-function: ease-in-out;
        transition-duration: 0.4s;
        transition-property: all;
        opacity: 1;
        transform-origin: top;
        transform-style: preserve-3d;
        transform: scaleY(0);
        z-index: -1;
    }

    &:hover {
        &::after {
        opacity: 1;
        transform: scaleY(1);
        }

        svg path {
        fill: rgb(213,28,11) !important;
        }
    }

    svg path {
        transition: fill 300ms ease-in-out !important;
    }
    }


    .social-icon svg path,
    .social-icon span[class^="icon-"] {
    transition: all 300ms ease-in-out !important;
    }


    li.mb-2 {
    > a.text-white {
        position: relative;
        padding-left: 18px; 
        display: inline-block;
        transition: all 500ms ease;

        &::before {
        content: "\f105"; 
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        color: currentColor;
        opacity: 0.7;
        transition: all 500ms ease;
        }

        &:hover {
        padding-left: 22px; 

        &::before {
            opacity: 1;
            left: 3px; 
        }
        }
    }
}
