.topnav {
    /* background-color: #000000 !important; Set the background color */
    /* padding: 10px 0 !important; Add some padding */
    position:  !important; /* Add a bottom border */
}

/* Popup Modal Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.close-btn:hover {
    color: #333;
}

.popup-content h2 {
    color: #333;
    margin: 0;
    font-size: 1.5rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.popup-content button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popup-content button:hover {
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .close-btn {
        order: 1;
    }
    
    .popup-content h2 {
        font-size: 1.2rem;
    }
    
    .popup-content p {
        font-size: 0.9rem;
    }
}
.custom-marquee {
    width: 100% !important;
    overflow: hidden !important;
    background-color: #737373 !important;
    white-space: nowrap !important;
    position: relative;
    padding: 5px 10px; /* Reduced top & bottom padding */
    margin-top: -110px; /* Moves the marquee up */
    display: flex;
    align-items: center;
    border-top: 2px solid #0cc0df; /* Added top border */
    border-bottom: 2px solid #0cc0df; /* Added bottom border */
}

.custom-marquee p {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite; /* Slower scrolling */
    min-width: 100%;
    position: relative;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}



/* For small screen sizes, stack the submenu items */
@media (max-width: 768px) {
    .submenu {
      display: none !important; /* Initially hide the submenu */
      flex-direction: column !important; /* Stack submenu items vertically */
      width: 100% !important; /* Make the submenu take full width */
    }
  
    .submenu.show {
      display: block !important; /* Show submenu when class 'show' is added */
    }
  
    .navigation-menu li {
      width: 100% !important; /* Make each menu item take full width */
      text-align: center !important; /* Center align text on smaller screens */
    }
  
    .submenu li {
      width: 100% !important; /* Make submenu items take full width */
      text-align: left !important; /* Align text to the left inside submenus */
    }
  
    /* Optional: Adjusting padding for better touch targets */
    .navigation-menu li a {
      padding: 10px 20px !important; /* Increase padding for touch devices */
    }
  }

  
  /* Ensure the navbar spans the full width on small screens */
@media (max-width: 768px) {
    #navigation {
      width: 100% !important; /* Make navigation container full width */
    }
  
    .navigation-menu {
      flex-direction: column !important; /* Stack menu items vertically on mobile */
      width: 100% !important; /* Make the menu take full width */
    }
  
    .menu-arrow {
      display: none !important; /* Hide the arrows on mobile */
    }
  }

  
  /* Make sure images inside the menu are responsive */
.navigation-menu li .img-fluid {
    max-width: 100% !important; /* Ensure the image does not overflow */
    height: auto !important; /* Maintain aspect ratio */
    width: 150px !important; /* Keep the images at a reasonable size */
  }
  
  @media (max-width: 768px) {
    .navigation-menu li .img-fluid {
      width: 100px !important; /* Reduce image size on smaller screens */
    }
  }

  
  .hamburger-menu {
    display: none !important; /* Initially hide hamburger button */
    cursor: pointer !important; 
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 30px !important;
    height: 30px !important;
  }
  
  .hamburger-menu span {
    background-color: #000 !important;
    height: 4px !important;
    width: 100% !important;
    border-radius: 2px !important;
  }
  
  @media (max-width: 768px) {
    .hamburger-menu {
      display: flex !important; /* Show hamburger button on mobile */
    }
  
    .navigation-menu {
      display: none !important; /* Hide the menu by default */
      width: 100% !important;
    }
  
    .navigation-menu.show {
      display: flex !important; /* Show the menu when toggled */
    }
  }

  
  /* Mobile padding adjustments */
@media (max-width: 768px) {
    #navigation {
      padding: 10px 15px !important; /* Add padding around the navigation */
    }
  
    .navigation-menu li a {
      padding: 12px 15px !important; /* Adjust padding for better click targets */
    }
  
    .submenu li a {
      padding: 10px !important; /* Adjust submenu item padding */
    }
  }

  

/* @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  } */

.cta-section {
    text-align: center !important; /* Center the text */
    padding: 50px 20px !important; /* Add padding for spacing */
    /* background-color: #f8f9fa !important; Light background color */
    /* border-radius: 8px !important; Rounded corners */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important; Subtle shadow */
}

.cta-section .small-heading {
    font-size: 1.2rem !important; /* Adjust font size */
    color: #6c757d !important; /* Change color for the heading */
    margin-bottom: 10px !important; /* Space below the heading */
}

.cta-section h1 {
    font-size: 2.5rem !important; /* Larger font size for the main heading */
    color: #343a40 !important; /* Darker color for contrast */
    margin-bottom: 20px !important; /* Space below the heading */
}

.cta-section .text-bubble {
    display: inline-block !important; /* Make it inline */
    padding: 10px 20px !important; /* Padding for the bubble */
    background-color: #ffffff !important; /* Button color */
    color: #000000 !important; /* Text color */
    border-radius: 20px !important; /* Rounded bubble */
    margin-bottom: 20px !important; /* Space below the bubble */
}

.cta-button {
    padding: 10px 30px !important; /* Button padding */
    background-color: #0cc0df!important; /* Green button color */
    color: white !important; /* White text */
    border: none !important; /* No border */
    border-radius: 5px !important; /* Rounded corners */
    font-size: 1rem !important; /* Font size */
    cursor: pointer !important; /* Pointer cursor */
    transition: background-color 0.3s !important; /* Smooth transition */
}

.cta-button:hover {
    background-color: #0cc0df !important; /* Darker green on hover */
}


footer {
    background-color: #000000 !important; /* Set the footer background color */
    color: white !important; /* Optional: Change text color for better contrast */
}

.footer-icon {
    border: 2px solid white !important; /* Set the border color to white */
    border-radius: 50%; /* Optional: Make it circular */
    padding: 10px; /* Optional: Add some padding */
}

.slider {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.slider img {
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    transition: left 1s ease-in-out !important;
}

.slider img.active {
    left: 0 !important; 
}

.carousel .carousel-item {
    transition: none; /* Disables sliding transition */
}

/* Example of changing button color */
.btn-primary {
    background-color: #0cc0df;
    border-color: #0cc0df;
}

/* Example of changing text color */
.text-primary {
    color: #0cc0df
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #0cc0df !important;
}

.btn-login {
    background-color: #ffffff !important; /* Change to your desired color */
    border-color: #0cc0df !important; /* Change to your desired color */
    color: #0cc0df !important; /* Ensure the text color is readable */
}

.industries-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.industries-marquee {
    display: inline-block;
    animation: industries-marquee 10s linear infinite;
}

.industries-marquee-item {
    display: inline-block;
    margin-right: 100px; /* Adjust the spacing between items as needed */
}

@keyframes industries-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.text-danger {
    color: rgba(222, 14, 14, 0.682) !important;
}

.addons-container {
    background-color: #f8f9fa !important;
    padding: 20px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}
.addons-container p {
    margin: 10px 0 0 !important;
    font-size: 16px !important;
    color: #333 !important;
}

.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


/* Chatbot Floating Icon */
.chatbot-icon {
    position: left !important;
    bottom: 20px;
    right: 20px;
    background: #d47c24d5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Chatbot Window */
.chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Chatbot Header */
.chat-header {
    background: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

/* Chatbot Body */
.chat-body {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

/* Bot & User Messages */
.bot-message, .user-message {
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 5px;
    max-width: 80%;
}

.bot-message {
    background: #e9ecef;
    align-self: flex-start;
}

.user-message {
    background: #007bff;
    color: white;
    align-self: flex-end;
}

/* Chatbot Footer */
.chat-footer {
    display: flex;
    padding: 10px;
    background: #f8f9fa;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chat-footer button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 5px;
}

