.logo-slider {
    overflow: hidden;
    /*background: #f8f9fa;*/
    padding: 20px 0;
}

    .logo-slider .slider-track {
        display: flex;
        animation: scroll 20s linear infinite;
    }

        .logo-slider .slider-track:hover {
            animation-play-state: paused;
        }

    .logo-slider .slide {
        flex: 0 0 auto;
        width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

        .logo-slider .slide img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate the slider track for seamless scrolling */

.logo-slider .slider-track::after {
    content: "";
    display: flex;
}

.feature-card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.icon-wrapper {
    /*font-size: 24px;*/
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .feature-title {
        font-size: 13px;
    }
}

/* Add this CSS to your stylesheet */

.typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar {
}

/* Modern Navbar Styling */

/*#navbar-logo {
  height: 80px;
  transition: height 0.3s ease;
}*/

/* Adjust logo size on small screens */

/*@media (max-width: 767.98px) {
  #navbar-logo {
    height: 80px;
  }
}*/

/* Responsive Company Name */

/*.company-name {
  white-space: nowrap;
  transition: font-size 0.3s ease, display 0.3s ease;
}*/

/* Hide company name on extra small screens */

/*@media (max-width: 575.98px) {
  .company-name {
    display: none;
  }
}*/

/* Optionally, show an abbreviation on extra small screens */

/*@media (max-width: 575.98px) {
  .company-name::after {
    content: 'ASI';
    display: inline;
  }
}*/

/* Navbar Background and Padding */

/*.navbar {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
}*/

/* Navbar Brand Alignment */

/*.navbar-brand {
  display: flex;
  align-items: center;
}*/

/* Navbar Links Styling */

/*.nav-link {
  font-size: 1rem;
  margin-left: 1rem;
  color: #000000;
}*/

/* Navbar Links Hover Effect */

/*.nav-link:hover {
  color: #007bff;
}*/

/* Logo Styles */
#navbar-logo {
    height: 80px;
    transition: height 0.3s ease;
}

@media (max-width: 767.98px) {
    #navbar-logo {
        height: 80px;
    }
}

/* Default: Full name visible, abbreviation hidden */
.company-name.full {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
    padding-top: 2px;
}

.company-name.abbr {
    display: none;
}

@media (max-width: 575.98px) {
    .company-name.full {
        display: none;
    }

    .company-name.abbr {
        display: inline-block !important;
        white-space: normal;
        text-align: center;
        font-size: 14px; /* Adjust as needed */
        line-height: 1.2;
        padding-top: 2px;
    }

    .navbar-brand {
        flex-wrap: wrap;
    }
}



/* Navbar Background and Padding */
.navbar {
    background-color: #ffffff;
    padding: 0.5rem 1rem;
}

/* Navbar Brand Alignment */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Navbar Links Styling */
.nav-link {
    font-size: 1rem;
    margin-left: 1rem;
    color: #000000;
}

    .nav-link:hover {
        color: #007bff;
    }






/* Hero Section Styling with Brighter Gradient */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    /* Brighter gradient that blends Bootstrap blue with a lighter blue */
    background: linear-gradient(135deg, #0d6efd, #48a9e6);
    color: #fff;
    border-radius: 10px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Lighter overlay for gentle darkening without making it too dark */
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(5px);
        z-index: 1;
    }

    /* Increase horizontal spacing */
    .hero-section .container {
        position: relative;
        z-index: 2;
        padding-left: 20px;
        padding-right: 20px;
    }



    /* Headline Styling with Subtle Text Shadow */
    .hero-section h1 {
        font-size: 2.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        animation: fadeIn 1s ease-in-out;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Paragraph Styling with Subtle Text Shadow */
    .hero-section p {
        font-size: 1.1rem;
        max-width: 500px;
        margin-bottom: 30px;
        animation: fadeIn 1s ease-in-out;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Button Styling */
    .hero-section .btn {
        font-size: 1rem;
        padding: 0.6em 1.2em;
        border-radius: 25px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .hero-section .btn-primary {
        background-color: #fff;
        border: none;
        color: #0d6efd;
    }

        .hero-section .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(13, 110, 253, 0.5);
        }

    /* Illustration Styling */
    .hero-section .illustration {
        text-align: center;
        margin-top: 30px;
    }

        .hero-section .illustration i {
            font-size: 6rem;
            color: #fff;
            animation: float 3s ease-in-out infinite;
        }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-section .illustration i {
        font-size: 4rem;
    }
}





.modal.fade.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Quick and Smooth Fade-down effect */

.modal.fade:not(.show) .modal-dialog {
    transform: translateY(20px);
    opacity: 0;
}



#loader-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #loader-wrapper.hidden {
        opacity: 0;
        visibility: hidden;
    }

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Toast Slide-Out Animation */
@keyframes slideOutUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Apply Slide-In Animation When Showing */
.toast.show {
    animation: slideInDown 0.5s forwards;
}

/* Apply Slide-Out Animation When Hiding */
.toast.hide {
    animation: slideOutUp 0.5s forwards;
}

/* Icon Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.toast .toast-body i {
    animation: fadeIn 0.5s;
    font-size: 1.2rem;
}

/* Success and Error Background Colors */
.toast.success {
    background-color: #28a745 !important; /* Bootstrap success color */
}

.toast.error {
    background-color: #dc3545 !important; /* Bootstrap danger color */
}

/* Toast Container Adjustments */
.toast-container {
    z-index: 1100; /* Higher than Bootstrap's navbar z-index (1030) */
    top: 70px; /* Position below the navbar (assuming navbar height ~56px) */
    left: 50%;
    transform: translateX(-50%);
}
/* ===== Mega Menu Styles ===== */

/* Hide .dropdown-menu by default (Bootstrap will toggle 'show' class on small screens) */
/*.nav-item.dropdown.mega-dropdown .dropdown-menu {
    display: none;
    border-top: 2px solid #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}*/

/* Show the menu when Bootstrap adds .show (this is for mobile toggling) */
/*.nav-item.dropdown.mega-dropdown.show .dropdown-menu {
    display: block;
}*/

/* For larger screens: open on hover */
/*@media (min-width: 992px) {
    .nav-item.dropdown.mega-dropdown:hover .dropdown-menu {
        display: block;
    }*/

/* Position the mega menu for desktops */
/*.mega-dropdown .mega-menu {
        position: absolute;
        width: 80vw;*/ /* Adjust as you wish */
/*left: 50%;
        transform: translateX(-50%);
        top: 100%;
        border-radius: 0;
        margin-top: 0;
    }
}*/

/* Basic styling for the mega menu links */
/*.mega-menu a.dropdown-item {
    padding: 6px 0;
    color: #212529;
    text-decoration: none;
}

    .mega-menu a.dropdown-item:hover {
        color: #0d6efd;*/ /* or your preferred hover color */
/*text-decoration: underline;
    }*/
footer {
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    /*font: bold 16px sans-serif;*/
    padding: 55px 50px;
    margin-top: 80px;
    bottom: 0;
    color: #fff;
}

.footer-navigation h3 {
    margin: 0;
    /*font: normal 36px Cookie, cursive;*/
    margin-bottom: 20px;
    color: #fff;
}

    .footer-navigation h3 a {
        text-decoration: none;
        color: #fff;
    }

    .footer-navigation h3 span {
        color: #5383d3;
    }

.footer-navigation p.links a {
    color: #fff;
    text-decoration: none;
}

.footer-navigation p.company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin-top: 20px;
}

@media (max-width:767px) {
    .footer-contacts {
        margin: 30px 0;
    }
}

.footer-contacts p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
}

    .footer-contacts p a {
        color: #5383d3;
        text-decoration: none;
    }

.fa.footer-contacts-icon {
    background-color: #33383b;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin: 10px 15px 10px 0;
}

span.new-line-span {
    display: block;
    font-weight: normal;
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-about h4 {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

div.social-links {
    margin-top: 20px;
    color: #fff;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    margin-bottom: 5px;
}
