.footer_section {
  background-color: #000!important;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0px -10px 20px rgba(255, 255, 255, 0.1) !important;
    padding: 4rem 0;
    width: 100%;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* Adjust gap as needed */
  }
  .footer ul li{font-size:1rem!important;
      line-height:1.6rem!important;
      list-style-type:none;
  }
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
   
  }
  
  

 .footer-text{font-size:1rem;}

  hr {
    height: 2px;
    border: none; /* Removes default border */
    background: linear-gradient( #1a3e88 50%, #c30000 100%);
  }
  

  .footer-content {
    display: flex;
    flex-wrap: wrap;
   
    margin-bottom: auto;
  }
  
  .footer-logo-section {
    flex: 0 1 auto;
    min-width: 250px;
  }
  
  .footer-logo {
    max-width: 250px;
    height: auto;
  }
  
  .social_media_links_footer {
    display: flex;
    gap: 1rem;
    
  }
  
  .social_media_links_footer a {
    transition: transform 0.2s;
  }
  
  .social_media_links_footer a:hover {
    transform: scale(1.1);
  }
  
  .social_media_links_footer img {
    width: 48px;
    height: 48px;
  }
  
  .footer-column {
    flex: 0 1 auto;
    
  }
  
  .footer-heading {
    color: white;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
    white-space: nowrap;
}


  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-type:none;
  }
  
  .footer-column ul li {
    color: white;
    margin-top:10px!important;
    font-size:24px;
    line-height: 3rem!important;
    cursor: pointer;
    transition: color 0.2s;
    white-space: nowrap;
    list-style-type:none;
  }
  
  .footer-column li:hover {
    color: #cccccc;
  }
  
  .contact-column {
    flex: 0 1 300px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .contact-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  .contact-item span {
    flex: 1;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
  }
  
  .footer-links li {
    color: white;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 1rem;
  }
  
  .footer-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.5rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo-section,
    .footer-column,
    .contact-column {
      width: 100%;
      margin-bottom: 2rem;
    }
  
    .social_media_links_footer {
      justify-content: center;
    }
  
    .contact-item {
      justify-content: center;
      text-align: left;
    }
  
    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  
    .footer-links li {
      padding: 0.5rem 0;
    }
  
    .footer-links li:not(:last-child)::after {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .footer_section {
      padding: 2rem 0;
    }
  
    .footer-heading {
      font-size: 1.1rem;
    }
  
    .footer-column li,
    .footer-links li {
      font-size: 0.8rem;
    }
    
  }


.footer-line {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.footer-line li {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

/* Style for list items */
.footer-line ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  list-style-type:none;
  white-space: nowrap;
}

/* Add separator (|) except for the last item */
.footer-line ul li:not(:last-child)::after {
  content: "";
  margin-left: 10px;
}

/* Mobile View: Stack items in column */
@media (max-width: 768px) {
  .footer-line ul li {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
    .footer-line li {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-line ul li::after {
    content: none; /* Remove separator in column layout */
  }
}

 