/* Base Styles */
html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

/* Navbar Gradient */
.bg-primary-gradient {
    background: linear-gradient(135deg, #005bab 0%, #003a6d 100%);
}

/* Mega Menu */
.dropdown-mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
}

.enterprise-logo {
    font-size: 1.75rem;
    line-height: 1;
}

/* Navbar Toggler */
.enterprise-toggler {
    border: none;
    padding: 0.5rem;
}

/* Mega Menu CTA */
.mega-menu-cta {
    background: rgba(0,0,0,0.1);
    height: 100%;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    background: #005bab !important;
}

/* Ensure dropdown mega menu appears above all other content */
.dropdown-mega-menu {
    z-index: 1080 !important; /* Bootstrap's highest z-index is usually 1070 for modals */
    position: absolute;
    width: 100%;
    left: 0;
}

/* If you have any other elements that might overlap, you may need to adjust their z-index */
.navbar {
    z-index: 1030; /* Standard Bootstrap navbar z-index */
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }



@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Layout Structure */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Main Content Area */
main {
    flex: 1;
    padding-top: 80px; /* Space for fixed navbar */
    padding-bottom: 2rem; /* Space above footer */
}

/* Container Adjustments */
.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(13, 110, 253, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    margin-top: auto;
    background-color: #212529;
    color: white;
    padding: 2rem 0;
    width: 100%;
}

/* Focus Styles */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .footer {
        text-align: center;
    }

        .footer .row > div {
            margin-bottom: 1.5rem;
        }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, #003366, #00509e, #80d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

/* Product Card Specific Styles */
.product-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 91, 171, 0.1) !important;
    }

.product-image-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #f8fafc;
}

    .product-image-container img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        padding: 20px;
    }

.placeholder-image {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

/* Empty State Styles */
.empty-state {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
/*

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-top: 80px; 
    padding-bottom: 2rem; 
}

.footer {
    margin-top: auto;
    background-color: #212529;
}

.navbar-scrolled {
    background-color: rgba(13, 110, 253, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.container {
    padding-top: 20px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
    */
