/* General Styles */

  
  @keyframes animate
  {
    0%{
        opacity: 1;
        transform: translate(0, 0);
    }
    20% {
      opacity: 0.01;  /* Fade out quickly within first 20% of animation */
  }
    100%{
        opacity: 0;
        transform: translate(var(--x), var(--y));
    }
  }
  @media (max-width: 768px) {
    html {
      overflow-x: hidden;  /* Prevent horizontal scrolling */
      margin: 0;
      padding: 0;
      max-width: 100%;
  }
  }
  
  body {
    font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      text-align: center;
      overflow-x: hidden;
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
        background-color: #000;
  }
    
    body::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }
      
  .navbar {
    transition: background-color 0.3s ease;
  }
  
  .navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.904);
    opacity: 0.9; /* Change to the color you want */
    color: white; /* Text color if needed */
  }
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .grid {
    display: grid;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  
  .gap-12 {
    gap: 3rem;
  }
  
  .pt-32 {
    padding-top: 8rem;
  }
  
  .pb-12 {
    padding-bottom: 3rem;
  }
  
  .items-center {
    align-items: center;
  }
  /* General styles nav */
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 50;
  }
  
  .container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
  }


  /* logo */
  .logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 150px; /* Adjust based on your logo */
    width: auto;
}

.logo-main {
    height: 150px;
    display: block;
    margin-top: 3px;
    margin-left: 65px;
}
.logo-container img {
  max-width: none !important; /* prevents Tailwind from shrinking the image */
  height: 150px !important; /* keeps fixed height */
  width: auto !important; /* keeps proportions */
}
.logo-left,
.logo-bottom {
    position: absolute;
    height: 150px;
    opacity: 0; /* Hide initially */
    transition: all 0.8s ease-in-out; 
}

/* Bottom Image */
.logo-bottom {
    left: 65px;
    top: 100%;
    margin-top: 23px;
    transition: all 0.7s ease-in-out; 
}

/* Left Image */
.logo-left {
    left: -10%;
    top: 5px;
    margin-left: -50px;
}

/* Hover Effect */

.logo-container:hover .logo-bottom {
    top: 0;
    opacity: 1;
}

.logo-container:hover .logo-left {
    left: 0;
    opacity: 1;
}

@media (max-width: 768px) {
  .logo-container {
    margin-left: -70px;
  }
}


  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    margin-right: 330px;
    align-items: center;
    
  }
  .nav-ser{
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
  }

  .nav-ser:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  .dropdown-icon {
    font-size: 0.8rem; /* Adjust icon size */
    transition: transform 0.3s;
  }
  .nav-ser:hover {
    color: #4299e6;
  }
  
  /* Rotate icon when hovered */
  
  /* Dropdown styles */
  .nav-item {
    position: relative;
  }

  
  .dropdown-icon {
    margin-left: 5px;
  }

  .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    left: -100px;
    width: 650px; /* Increased width */
    background: rgb(37, 37, 37);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.27);
    border-radius: 20px;
    display: flex;
    padding: 15px;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
  }

  .dropdown-left {
    width: 40%;
    padding: 10px;
    border-right: 1px solid #ddd;
    margin-left: 20px;
    text-align: left;
    color: #4299e6;
    font-size: 20px;
  }
  
  .industries-list {
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    text-align: left; /* Ensures left alignment */
    margin-bottom: 10px;
    color: black;
    font-size: 17px;
    
    
  }
  .in{
    color: white;
    cursor: default;
    text-decoration: none;
  }
  .in:hover{
color: #4299e6;
  }
  

  .dropdown-right {
    width: 60%;
    padding: 10px;
  }
  .dropdown-right a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0;
    color: white;
    transition: background 0.3s;
  }
  .dropdown-right a:hover {
    background: #2f2e2e;
    color: #4299e6;
  }
  
  .dropdown-right img {
    margin-right: -20px;
    margin-left: -30px;
    width: 150px;
  }
  .servic{
    text-align: left;
    color: #4299e6;
    font-size: 20px;
    margin-left: 20px;
  }
  .service-content{
    text-align: left;
    font-size: 20px;
  }
  .service-content p {
    margin: 0;
    font-size: 14px;
    color: #aaaaaa;
    text-align: left;
  }
  .dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: black;
    transition: background 0.3s;
  }

  .dropdown-link:hover {
    background: #323232;
  }

  .dropdown-link i {
    margin-right: 10px;
  }

  
  .partners-button {
    display: block;
    margin-top: 15px;
    text-align: left;
    color:#4299e6;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    margin-left: -8px;
   
  }

  .partners-button:hover {
    background: #2f2e2e;
  }

  .nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #4299e6;
  }
  
  .btn {
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: -10px;
    margin-bottom: -10px;
  }
  
  .btn:hover {
    background-color: rgba(51, 51, 51, 0.9);
  }
  
  /* Mobile menu styles */
  .mobile-only {
    display: none;
  }
  
  .menu-button {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .menu-icon {
    width: 24px;
    height: 24px;
    color: #333333;
    transition: color 0.3s;
  }
  
  .menu-icon:hover {
    color: #4299e6;
  }
  
  .mobile-menu {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    color: #333333;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
  }
  
  .mobile-nav-link:hover {
    color: #4299e6;
  }
  
  .hidden {
    display: none;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
  
    .mobile-only {
      display: block;
    }
  }





/* Footer Container */
.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

/* Column Styling */
.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cccccc;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

/* Logo */
.footer-logo {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: -50px;
}

/* Contact and Address */
.contact-info {
  font-size: 14px;
  color: #cccccc;
  text-align: left;

}

.contact-info a {
  color: #53ece2;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #8bf39c;
}

/* Contact Us Button */
.footer-cta {
  display: inline-block;
  background: linear-gradient(to right, #8bf39c, #42cdf6);
  color: black;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
}
.footer-logo img {
  width: 160px; /* adjust as needed */
  height: auto;
}
.footer-bottom {
  background-color: #0a0a0a;
  color: #888888;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #222;
}

.footer-bottom p {
  margin: 0;
}
/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
.footer-logo img {
    width: 140px;
  }
  .footer-column {
    margin: 20px 0;
  }
}