 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
  }

  body {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
transition: opacity 0.6s ease;

  }
  body.fade-out {
  opacity: 0;
}

  header {
    background: rgb(0, 0, 0);
    padding: 2px 10px 2px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    align-items: center;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 1000000;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: left;  
    padding: 1rem 1rem;
    width: 100%;
  }

  /* Make logo and module buttons container flex */
  .logo-container {
    display: flex;
    align-items:center;
    gap: 1rem;
    
  }

  #navigation-button {
      display: flex;
      flex-direction: row;
    }

    
 
 
  /* Responsive styles */
  @media (max-width: 768px) {
    .right-controls {
      gap: 1rem;
    }

    nav {
      padding: 1rem;
    }
  }

 
  .logo {

    padding-left: 15px;
    height: 60px;
    width: auto;
  }

  .right-controls {
    display: flex;
    flex-direction: row;
    align-items: center;

  }

  .translate-btn {
    background: #706f6e00;
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 3rem;
       margin-top:10px;
        margin-right: 20px;
        width: fit-content;
        font-size: 15px;
        
        transition: all 0.3s;
    }

    .translate-btn:hover {

        color: rgb(255, 255, 255);
        text-decoration: underline;
    }
    .translate-btn1 {
    background: #706f6e00;
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 3rem;
       margin-top:10px;
        margin-right: 30px;
        margin-left: 230px;
        width: fit-content;
        font-size: 13px;
        
        transition: all 0.3s;
    }

    .translate-btn1:hover {

        color: rgb(255, 255, 255);
        text-decoration: underline;
    }



  /* Language dropdown styles */

  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    background-color: #000000;
  }

  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    opacity: 100%;
  }

  .initial-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 2rem;

    max-width: fit-content;
    margin-top: 0px;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: left;
    background: linear-gradient(
      90deg,
      rgba(30, 30, 30, 0.8) 0%,
      rgba(56, 56, 57, 0.592) 50%,
      rgba(52, 53, 53, 0.296) 100%
    );
    border-radius: 8px;
    padding-right: 300px;
    backdrop-filter: blur(1px);
  }

  .initial-content .content-title {
    color: rgb(166, 56, 56);
    font-size: 26px;

    margin-bottom: 1.5rem;
  }

  .initial-content .content-description {
    color: white;
    font-size: 20;
    line-height: 1.8;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 2px 0;
    transition: 0.3s;
  }

  .module-btn {
        padding-top: 10px;
        margin-top:10px;
        cursor: pointer;
        padding-right: 20px;
        padding-left: 20px;
        background: rgb(0, 0, 0);
        border: none;
        padding-bottom: 1px;
        font-size: 18px;
        color: #ffffff;
        text-align: center;
        
        word-spacing: 3px;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
    }




  .content-description-main {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    text-align: left;
  }

  .content-description-sub {
    font-size: 1rem;
    color: #e4e4e4;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    text-align: left;
  }

  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .content-description-main {
      font-size: 1.5rem;
      margin-bottom: 0.75rem;
      padding: 0 1rem;
    }
    .translate-btn1 {
   margin-left: 0px;
    }

    .content-description-sub {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      padding: 0 1rem;
    }
  }

  /* Animation (optional) */
  .content-description-main,
  .content-description-sub {
    opacity: 0;
    transform: translateY(20px);
    animation: fadiversity-equity-inclusionnUp 0.6s ease forwards;
  }

  .content-description-sub {
    animation-delay: 0.2s;
  }

  @keyframes fadiversity-equity-inclusionnUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .module-btn:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;

    height: 2px;
    background: #fca61f;
    transition: 0.3s;
  }

  .module-btn:active {
    color: red;
  }

  .module-btn:focus {
    color: rgb(255, 255, 255);
    outline: none;
    text-decoration: none;
border-bottom: 2px solid #fca61f;
    
   
  }

  .module-btn:hover:after {
    width: 100%;
    left: 0;
  }

  .content-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 210px;
    background: white;
    display: none;
    z-index: 1000;
    animation: slidiversity-equity-inclusionn 0.3s ease-out;
  }

  .content-wrapper {
    display: flex;
    height: 100%;
  }

  .left-panel {
    width: 350px;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    background: rgb(0, 0, 0);
    padding: 1rem;
    margin-top: px;
  }

  .right-panel {
    flex-grow: 1;
    overflow-y: auto;
    width: 300px;
    background: #000000;
    position: relative;
    padding: 2%;
  }

  .right-content {
    background: black;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-left: 50px;
    height: 100%;

    padding-right: 10px;
    max-width: 100%;
    margin: 0 auto;
  }

  .background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 80%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .content-title {
    font-size: 30px;
    font-weight: bold;
    color: #bd4848;
    margin-bottom: 1rem;
    position: relative;
  }

  .content-description {
    font-size: 20px;
    color: #ffffff;
    line-height: 2;
    margin-top: 2px;
    margin-left: 10px;
    word-spacing: 10px;
    padding-right: 20px;
    margin-right: 10px;
    text-align: justify;
    position: relative;
  }

  /* Add a subtle overlay to ensure text readability */
  .right-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      90deg,
      rgba(30, 30, 30, 0) 0%,
      rgba(56, 56, 57, 0) 50%,
      rgba(52, 53, 53, 0) 100%
    );

    backdrop-filter: blur(0.5px);
    border-radius: 8px;
    z-index: -1;
  }

  .sub-module-btn {
    display: block;
    width: 100%;
    padding: 0.025rem;
    margin-top: 1rem;
    text-align: left;
    background: none;
    border: none;
    font-weight: bolder;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
  }

  .sub-module-btn:hover {
    background: linear-gradient(
      90deg,
      rgba(30, 30, 30, 0) 0%,
      rgba(56, 56, 57, 0) 50%,
      rgba(52, 53, 53, 0) 100%
    );
  }

  .sub-module-heading {
    display: block;
    width: 100%;
    padding-top: 0%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0.5rem 0;
    text-align: left;
    font-weight: bold;
    color: #d8d8d8;
    font-size: 1rem;
  }

  .sub-headings-container {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    /* Changed from none to block */
  }

  .sub-heading-btn {
    display: block;
    width: 100%;
    padding: 0.1rem 1rem;

    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;

    font-size: 1rem;
    color: #c0b9b9;
    font-weight: 500;
  }

  .content-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
/* Smooth hover animations */
.module-btn {
  transition: all 0.2s ease;
}
.content-container {
  transition: opacity 0.2s ease;
}
  .content-action-btn {
    background: rgba(0, 0, 0, 0);
    color: white;
    text-decoration: none;

    border: 1px solid #dddddd00;
    padding: 10px;
    width: 290px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .content-action-btn:hover {
    color: #ffffff;
text-decoration: underline;
text-underline-offset: 3px;
  }

  .a.btn-content{
    display: flex;
    align-items: left;
    color: rgba(230, 38, 38, 0.892);
    text-align: left;
    flex-direction: column;
    background-color: transparent;
    border: none;
  }


@media (min-width: 1440px) and (max-width: 1919px){
 .module-btn{
    font-size: 10PX;
   }

  .translate-btn1 {
    margin-left: 0; 
    font-size: 10PX;
  }

}

@media (min-width: 1337px)and (max-width: 1439px) {
  .right-controls {
    gap: 1rem; 
  }

  .module-buttons {
    display: flex; 
    gap: 1rem; 
  }

   .module-btn{
    font-size: 11PX;
   }

  .translate-btn1 {
    margin-left: 0; 
    font-size: 10PX;
  }
}


@media (max-width: 1366px) {
  .right-controls {
    gap: 1px; 
  }

  .module-buttons {
    display: flex;
    gap: 1px; 
    
  }

  .translate-btn1 {
    margin-left: 0;
    font-size: 10px;
  }

  .dropdown-btn {
    padding: 5px;
    cursor: pointer;
    border: 1px solid #686565;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 5px;
    font-size: 10px;
    width: 100px;
  }

  .module-btn {
    padding-top: 10px;
    cursor: pointer;
    padding-right: 11px;
    padding-left: 10px;
    background: rgb(0, 0, 0);
    border: none;
    padding-bottom: 1px;
    font-size: 13px;
    color: white;
    word-spacing: 3px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    width: auto;
  }

  .module-btn:hover {
    color: #fca61f;
  }

  .logo {
    padding-right: 0px;
    height: 60px;
    padding-left: 1px;
    width: auto;
  }

  .module-btn:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fca61f;
    transition: 0.3s;
  }

  .module-btn:active {
    color: red;
  }

  .module-btn:focus {
    color: rgb(255, 255, 255);
    outline: none;
    text-decoration: none;
    border-bottom: 2px solid #fca61f;
  }

  .module-btn:hover:after {
    width: 100%;
    left: 0;
    color: #1ffc8a;
  }
}

@media (max-width: 1280px){

  .module-btn{
    font-size: 12PX;
    padding-right: 5px;
        padding-left: 5px;
   }

  .translate-btn1 {
    margin-left: 0; 
    font-size: 11PX;
  }

  .logo {
    padding-right: 0px;
    height: 60px;
    padding-left: 1px;
    width: auto;
  }

  
}

@media (min-width: 1041px) and (max-width: 1238px){
 .module-btn{
    font-size: 7PX;
   }

  .translate-btn1 {
    margin-left: 0; 
    font-size: 7PX;
  }

}

@media (min-width: 1025px) and (max-width: 1040px){
 .module-btn{
    font-size: 6PX;
   }

  .translate-btn1 {
    margin-left: 0; 
    font-size: 6PX;
  }

}

@media(max-width:1024px){
  
   .module-btn{
    font-size: 8px;
   }
   
   .dropdown-btn{
    width: 100px;
   }
   .logo{
    width: auto;
   }
  .translate-btn1{
    margin-left: -20%;
    font-size: 7PX;
  }

   #navigation-buttons{
    width:500px
   }

}

@media (max-width: 768px) {
  .right-controls {
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.5rem; 
  }

  .module-buttons {
    display: none; 
  }

  .translate-btn1 {
    display: none; 
  }

  .hamburger {
    display: flex; 
  }
}


  .btn-content {
display: flex;
align-items: left;
}

.button-icon {
margin-right: 15px;
align-items: left;
}

.button-text {
display: flex;
color: rgba(46, 218, 169, 0.892);
text-align: left;
flex-direction: column;
}
  #google_translate_element {
    display: none !important;
    margin-left: 30px;
    margin-top: 0px; 
   
  }
   div[jsname="W297wb"] {
    display: none !important;
  }

  .goog-te-gadget {
    display: none !important;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-right: 20px;
  }


  .goog-logo-link {
        display: none !important;
    }
    
    .goog-te-gadget {
        color: transparent !important;
    }

    .goog-te-gadget .goog-te-combo {
        color: black !important;
        margin: 0 !important;
    }

    .goog-te-gadget span {
        display: none !important;
    }

    .VIpgJd-ZVi9od-l4eHX-hSRGPd,
    .VIpgJd-ZVi9od-ORHb-OEVmcd {
        display: none !important;
    }
  .dropdown-btn {
    padding: 5px;
  
    cursor: pointer;
    border: 1px solid #686565;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 5px;
    font-size: 12px;
width: 100px;
  }

  .dropdown-btn img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
  }

  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
    font-size:13px;
    z-index: 1000;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .dropdown-item {
    padding: 10px;
   
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .dropdown-item img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
  }

  .dropdown-item:hover {
    background-color: #f1f1f1;
  }


  .button-title {
    font-size: 1.1rem;
    text-align: left;
    padding-top: 1px;
  }

  .button-description {
    font-size: 0.9rem;
    color: #fff4f4c9;
    margin-top: 13px;
    margin-left: 80px;
    padding-left: 80px;
    padding-right: 0;
  }

  .sub-heading-btn:hover {
    background: linear-gradient(
      0deg,
      rgba(80, 80, 80, 0.405) 100%,
      rgba(163, 162, 162, 0.389) 50%,
      rgba(118, 118, 118, 0.521) 0%
    );
    color: #cdcdcd;
  }

  .sub-heading-btn.active {
    background: linear-gradient(
      0deg,
      rgba(80, 80, 80, 0.405) 100%,
      rgba(163, 162, 162, 0.389) 50%,
      rgba(118, 118, 118, 0.521) 0%
    );
    color: #d7d7d6;
    font-weight: bold;
  }

  


  

  @media (max-width: 768px) {

    .logo {
        width: auto; 
    }

    .translate-btn1 {
        display: none; 
    }

   
    .language-dropdown {
        position: absolute;
        top: 10px; 
        right: 50px; 
        z-index: 1000;
    }

    
    .dropdown-btn {
        display: flex;
        align-items: center;
        background-color: white;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
    }

    .hamburger {
      display: flex;
      position: absolute;
      right: 1rem;
      color: white;
      margin-top: -2px;
      z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    nav {
      flex-direction: column;
      align-items: flex-start;
      height: 75px;
    }

    .module-buttons {
      display: none;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      padding: 1rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .module-buttons.active {
      display: block;
    }

    .module-btn {
      /* width: 100%; */
      position: absolute;
      border-bottom: 2px solid #ffffff;
    }

    .module-btn:last-child {
      border-bottom: none;
    }

    .content-wrapper {
      display: flex;
      height: 100%;
      overflow-y: auto;
      color: #d8d8d8;
      flex-direction: column;
    }

    .left-panel {
      width: 100%;
      /* margin-top: 50px; */
      /* max-height: 40vh; */
      overflow-y: auto;
    }

    .right-panel {
      /* height: 60vh; */
      width: 100%;
      overflow-y: auto;
    }

    .content-container {
      top: 80px;
      width: 500px;
      overflow-x: hidden;
      overflow-y: auto;
      height: calc(80vh - 80px);
    }

    .right-content {
      margin: 1.5rem;
      padding: 1.5rem;
      overflow-y: auto;
    }

    .sub-headings-container {
      margin-left: 0;
    }

    .sub-heading-btn {
      padding: 0.5rem 0.5rem;
    }
  }

  @media screen and (max-width: 480px) {
    .logo {
        width: auto; /* Even smaller size for tiny screens */
        margin-left: -20px;
    }
}


  .nav-item nav-group{
    color: #1ffc8a;
  }
  @keyframes slidiversity-equity-inclusionn {
    from {
      transform: translateY(-100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .module-btn-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .module-arrow {
    font-size: 1.2rem;
    margin-left: 8px;
    text-align: right;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
.nav-link nav-group-toggle{
color: #eafc1f;
background-color: #bed116d0;
font-size: 2rem;


}


  .module-btn.active .module-arrow {
    padding-left: 8px;
    transform: rotate(-90deg);
  }

  .sub-heading-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px;
  }

  .sub-heading-arrow {
    font-size: 1.2rem;
    padding-left: 8px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .sub-heading-btn.active .sub-heading-arrow {
    transform: rotate(90deg);
  }
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  .content-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 210px;
    background: white;
    display: none;
    z-index: 1000;
    animation: slidiversity-equity-inclusionn 0.3s ease-out;
  }


.product-container {
  position: relative;
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
 
}


@media (max-width: 1365px) {
  .product-container {
  position: relative;
  display: inline-block;
  margin-left: 80px;
  margin-right: 20px;
 
}

}
.new-launch-text {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: yellow;
  color: black;
  padding: 2px 6px;
  font-size: 1.6rem;
  border-radius: 4px;
  font-weight: bold;
  z-index: 1;
}


  @keyframes example {
    0% {
      color: #ffffff;
    }
    25% {
      color: #fca61f;
    }
    50% {
      color: #000000;
    }
  }
  .mod12 {
    width: 100%;
    list-style-type: none;
    margin: 7px 0;
    padding-bottom: 9px;
    font-weight: bold;
   
    padding-top: 6px;
    color: #c2c2c2;
    transition: background-color 0.3s;
    
  }
  .mod12:focus-within {
        display: block;
        background-color:  #454444;
         /* Background color change on open */
    }
  .nav-item {
    width: 100%;
    list-style-type: none;
    margin: 10px 0;
    padding-left: 40px;
  font-size: 14px;
    padding-bottom: 10px;
    font-weight: 300;
    padding-top: 10px;
    color: #c2c2c2;
    transition: background-color 0.3s;
   
    
  }

  .nav-item:focus-within {
        display: block;
        background-color:  #454444;
        border-bottom: 2px solid #56525200; /* Background color change on open */
    }
   
    
  
  .nav-link {
    text-decoration: none;
    display: block;
    color: #dad6d6;
    padding-left: 20px;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 2px solid #565252;
  }

  .nav-link:hover {
    color: #fca61f;

  }
  .nav-link:active {
    color: #fca61f;
  }

  .nav-icon {
    margin-right: 10px;
  }


  .nav-group-items {
    display: none;
    
    padding-left:50px;
    text-align: right;
    transition: all 0.3s ease;
  }

  .nav-group-items1 {
    display: none;
    padding-left: 0px;
    transition: all 0.3s ease;
  }

  ul {
    padding: 0px !important;
  }

  .nav-item a {
    color: #ffffff;
    width: 100%;
    padding-bottom: 10px;
    margin-left: 30px;
    line-height: 2.5;

    text-align: left;
   
    /* padding: 1rem; */
   
  }

   .content-action-btn a{
    color: #ffffff !important;
    width: 100% !important;
    text-align: left !important;
    text-decoration: none;
    font-size: 16px;
   
    border-bottom: none !important;
  }

  .nav-item a:last-child {
    border-bottom: none;
  }

a:hover {
    color: #fca61f;
  }
  .nav-item a:hover {
    color: #fca61f;
  }



  .custom-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 300px;
}

.popup-content {
  position: relative;
  color: white;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #aaa;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.popup-close:hover {
  color: white;
}
  


/* -----------------------footer ------------------------------------ */

.contact-image-container {
display: flex;
justify-content: center;
margin-top: 15px;
}

.contact-redirect-image {
width: 300px;  
height: 180px;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
}

.contact-redirect-image:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
footer {
        background-color: #222121;
        color: #f4f4f4;
        padding: 30px 30px;
        overflow: hidden;
        position: relative;
    }

   .footer-container {
    display: flex;
    flex-wrap: wrap;
    padding-top:25px;
    padding-left: 15px;
    
    justify-content: flex-start;
    opacity: 0;
    background-color: #222121;
    transform: translateY(50px);
    transition: all 0.8s ease 0.1s;
}

.footer-column {
    margin: 10px;
    flex: 1 1 100px;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Updated link hover styles */
.footer-column ul li a {
    color: #b3afaf;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: #edaf4b; /* Gold color */
    transform: scale(1.15); /* Slight zoom effect */
}

/* Ensure the "Next Gen Business" and "Reach Us" are part of the same column */
.footer-column:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-column:last-child h3 {
    margin-bottom: 10px;  /* Optional, to give some space between headings */
}

.footer-column:last-child ul {
    padding-left: 0;
}

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 15px;padding-top:40px;
        opacity: 0;
        
    }

    .social-icons a {
        color: #fca61f;
        font-size: 2.1rem;
        transition: transform 0.3s ease, color 0.3s ease;
        text-decoration: none;
    }

    .social-icons a:hover {
        transform: scale(1.2);
        color: #fca61f;
    }

    .footer-logo {
        text-align: center;
        
        opacity: 0;
       
 
    }

    .footer-logo img {
        max-width: 220px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #888;
        opacity: 0;
       
        transition: all 1s ease 1.5s;
    }

    .footer-bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #444;
        margin-top: 20px;
    }

    .footer-bottom-row .privacy-policy {
        font-size: 14px;
        color: #aaa;
        line-height: 25px;
         padding-top: 50px;
    }

    .footer-bottom-row .privacy-policy a {
        color: #fca61f;
        text-decoration: none;
    }

    .footer-bottom-row .privacy-policy a:hover {
        text-decoration: underline;
    }


  @media(min-width:769px)  {

    .footer-column {
        margin: 10px;
        
        flex: 1 1 100px;
        min-width: 100px;
    }

  }
@media (max-width: 768px) {
    .footer-container {
      background-color: #111;
        flex-direction: column;
        transition: none;  
        opacity: 1;  
        transform: translateY(0);  
    }

    .footer-column {
      width: 100%;
      margin-bottom: 20px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 10px;
    }
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
    @media (max-width: 1365px) {
        
         .footer-column h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}
 .footer-bottom-row .privacy-policy {
    font-size: 12.5px;
    color: #aaa;
    line-height: 25px;
}

         .footer-logo img {
    max-width: 180px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #111;
    opacity: 0;
   
    transition: all 1s ease 1.5s;
}

   .social-icons a {
    color: #fca61f;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
.footer-column ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

        
    }
    
    @media (max-width: 768px) {
      .footer-container { 

        display: block; 
        width: 100%;
        

     }
    
        .footer-column {

            text-align: center;
            margin-bottom: 2px;
            width: 100%;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #111;

        }

    
        .footer-bottom-row {
            flex-direction: column;
            gap: 10px;
            border: none;
            

        }
    
        .footer-column h3 {
            cursor: pointer;
            background-color: #111;
            color: #f4f4f4;
            padding: 10px;
            /* margin: 0; */
            display: flex;
            justify-content: space-between;
            align-items: start;
            width: 100%;
            padding-left: 10px;
            height: 50px;
            border-bottom: 1px solid #444;        
          }
    
        .footer-column h3::after {
            content: "▼"; 
            font-size: 18px;
            font-weight: bolder;
            gap: 1px;
            /* transform: rotate(90deg); */
            transition: transform 0.3s ease;
        }
    
        .footer-column.active h3::after {
            transform: rotate(180deg); 
        }
        .footer-column ul li {
            text-align: left; /* Align all list items to the left */
            padding: 5px 0;
            margin: 0;
            padding-left: 10px;
        }
       
    
        .footer-column ul {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0;
            margin: 0;
            border-bottom: none;
            opacity: 0;
            display: none; 
        }
    
        .footer-column.active ul {
            max-height: 500px; 
            padding: 10px 0;
            opacity: 1;
            display: block;
        }
    
        .footer-column:not(.active) ul {
            display: none;
             
        }
    
        .footer-column.active {
            width: 100%; 
            margin-right: 0; 
        }
    }

    @media(max-width:480px){
      /* .footer-container{
        
        margin-top: 2%;
      } */
      .footer-logo img{
  width: 120px;
  margin-top: -53%;
}
    .social-icons{
      margin-top: -10%;
    }
    .privacy-policy{
      margin-top: -20%;
    }
    
    }

    

    .visible {
        opacity: 1;
        transform: translateY(0);
    }    

