/* ============================================
   NVIDIA-STYLE COLOR SCHEME OVERRIDE
   Only 3 Colors: Black (#000000), White (#FFFFFF), Green (#77B900)
   ============================================ */

/* NVIDIA-STYLE TYPOGRAPHY - Inter Font Family */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Preserve and optimize icon fonts */
.fa, .fab, .fal, .far, .fas, .bi, [class*="fa-"], [class*="bi-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "bootstrap-icons" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    font-style: normal !important;
    font-variant: normal !important;
    line-height: 1 !important;
}

:root {
    /* Override ALL Bootstrap color variables */
    --bs-primary: #77B900 !important;
    --bs-secondary: #000000 !important;
    --bs-success: #77B900 !important;
    --bs-info: #77B900 !important;
    --bs-warning: #77B900 !important;
    --bs-danger: #77B900 !important;
    --bs-light: #f5f5f5 !important;
    --bs-dark: #000000 !important;
    --bs-white: #f5f5f5 !important;
    --bs-gray: #6c757d !important;
    --bs-gray-dark: #000000 !important;

    /* Text colors */
    --bs-body-color: #000000 !important;
    --bs-heading-color: #000000 !important;
}

/* Force all bg-light to light grey */
.bg-light {
    background-color: #f5f5f5 !important;
}

/* Force all bg-dark to black */
.bg-dark {
    background-color: #000000 !important;
}

/* Force all bg-white to light grey */
.bg-white {
    background-color: #f5f5f5 !important;
}

/* Force all borders to use only our 3 colors */
.border-primary {
    border-color: #77B900 !important;
}

.border-secondary, .border-dark {
    border-color: #000000 !important;
}

.border-light, .border-white {
    border-color: #ffffff !important;
}

/* CRITICAL: Text color classes */
.text-primary {
    color: #000000 !important; /* BLACK on light backgrounds, NOT green */
}

.text-secondary, .text-dark {
    color: #000000 !important;
}

.text-light, .text-white {
    color: #ffffff !important;
}

/* CRITICAL: Link colors - BLACK on light backgrounds, WHITE on dark */
/* Default links are BLACK (for light backgrounds) */
a {
    color: #000000 !important;
}

a:hover {
    color: #77B900 !important; /* Hover to green is OK on white */
}

/* Links on dark backgrounds are WHITE */
.bg-dark a, .bg-black a, .footer a, .copyright a,
.bg-primary a, .bg-secondary a {
    color: #ffffff !important;
}

.bg-dark a:hover, .bg-black a:hover, .footer a:hover, .copyright a:hover,
.bg-primary a:hover, .bg-secondary a:hover {
    color: #77B900 !important;
}

/* Override headings - DEFAULT black for light backgrounds */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #000000;
}

/* Main section headings - GREEN color */
h1.display-4, h2.display-4, h3.display-4, h4.display-4, h5.display-4, h6.display-4, .display-4 {
    color: #77B900 !important;
}

/* Body text - DEFAULT black on grey */
body {
    color: #000000;
    background-color: #f5f5f5 !important;
}

p, span, div {
    color: inherit;
}

/* Spinner - use green instead of blue */
#spinner .spinner-border {
    border-color: #77B900 !important;
    border-right-color: transparent !important;
}

.text-muted, .text-body {
    color: #6c757d;
}

/* White text on dark backgrounds */
.bg-dark, .bg-black, .footer, .copyright {
    color: #ffffff !important;
}

.bg-dark *, .bg-black *, .footer *, .copyright * {
    color: #ffffff !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6,
.copyright h1, .copyright h2, .copyright h3, .copyright h4, .copyright h5, .copyright h6 {
    color: #ffffff !important;
}

/* Footer headings - GREEN color */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
    color: #77B900 !important;
}

.bg-dark p, .bg-dark span, .bg-dark div, .bg-dark li, .bg-dark a,
.bg-black p, .bg-black span, .bg-black div, .bg-black li, .bg-black a,
.footer p, .footer span, .footer div, .footer li, .footer a,
.copyright p, .copyright span, .copyright div, .copyright li, .copyright a {
    color: #ffffff !important;
}

/* Black text on light backgrounds */
.bg-light, .bg-white {
    color: #000000 !important;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
    color: #000000 !important;
}

.bg-light p, .bg-light span, .bg-light div, .bg-light a,
.bg-white p, .bg-white span, .bg-white div, .bg-white a {
    color: #000000 !important;
}

/* CRITICAL: Any element with background color black MUST have white text */
[style*="background:#000"], [style*="background: #000"],
[style*="background-color:#000"], [style*="background-color: #000"],
[class*="bg-"][class*="dark"], [class*="bg-"][class*="black"] {
    color: #ffffff !important;
}

/* CRITICAL: Text color utilities override */
.text-white {
    color: #ffffff !important;
}

.text-black, .text-dark {
    color: #000000 !important;
}

/* CRITICAL SAFETY RULES - Prevent bad contrast combinations */
/* Never green text on white backgrounds */
.bg-white .text-primary,
.bg-light .text-primary,
body > .text-primary {
    color: #000000 !important; /* Black, NOT green */
}

/* Never green text on green backgrounds */
.bg-primary * {
    color: #ffffff !important; /* Always white on green */
}

/* Never black text on black backgrounds */
.bg-dark *, .bg-secondary *, .bg-black *,
.footer *, .copyright * {
    color: #ffffff !important; /* Always white on black */
}

/* Footer and Copyright - black background with white text */
.footer {
    background-color: #000000 !important;
}

.copyright {
    background-color: #000000 !important;
}

/* Hover states on dark backgrounds - green text */
.bg-dark a:hover, .bg-black a:hover, .footer a:hover, .copyright a:hover {
    color: #77B900 !important;
}

/* Hover states on light backgrounds - green text */
.bg-light a:hover, .bg-white a:hover, body > a:hover {
    color: #77B900 !important;
}

/* Navbar and topbar - BLACK background, WHITE text/icons */
.topbar {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.topbar a, .topbar i, .topbar span {
    color: #ffffff !important;
}

.topbar a:hover {
    color: #77B900 !important;
}

/* Topbar border separator */
.topbar .border-end {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Topbar language dropdown - fancy styling */
.topbar .dropdown {
    display: flex !important;
    align-items: center !important;
}

/* NVIDIA-Style dropdown container */
.topbar .nvidia-dropdown {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

.topbar .dropdown-toggle {
    color: #ffffff !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* When dropdown is open, no border changes */
.topbar .dropdown-toggle.show {
    border: none !important;
    background: transparent !important;
}

.topbar .dropdown-toggle i {
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}

.topbar .dropdown-toggle span {
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}

.topbar .dropdown-toggle:hover {
    background: transparent !important;
    border: none !important;
}

.topbar .dropdown-toggle:hover i {
    color: #77B900 !important;
}

.topbar .dropdown-toggle:hover span {
    color: #77B900 !important;
}

.topbar .dropdown-toggle::after {
    margin-left: 8px !important;
    vertical-align: middle !important;
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}

.topbar .dropdown-toggle:hover::after {
    color: #77B900 !important;
}

/* NVIDIA-Style dropdown menu */

.topbar .nvidia-dropdown .dropdown-menu.nvidia-menu {
    background: #000000 !important;
    border: 2px solid #000000 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    min-width: 120px !important;
    width: auto !important;
    max-height: 9999px !important;
    height: auto !important;
    overflow-y: visible !important;
    overflow-x: hidden !important;
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 9999 !important;
}

/* Show dropdown only when active */
.topbar .nvidia-dropdown .dropdown-menu.nvidia-menu:not(.show) {
    display: none !important;
}

.topbar .nvidia-dropdown .dropdown-menu.nvidia-menu.show {
    display: block !important;
}

/* NVIDIA Arrow indicator - hidden for connected dropdown */
.topbar .nvidia-dropdown .nvArrow {
    display: none !important;
}

/* Ensure dropdown UL shows all items */
.topbar .nvidia-dropdown .dropdown-menu.nvidia-menu {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* Dropdown list items */
.topbar .nvidia-dropdown .dropdown-menu li {
    list-style: none !important;
    border-bottom: 1px solid #333333 !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.topbar .nvidia-dropdown .dropdown-menu li:last-child {
    border-bottom: none !important;
}

.topbar .nvidia-dropdown .dropdown-menu li:first-child .dropdown-item .title {
    padding-top: 8px !important;
}

.topbar .nvidia-dropdown .dropdown-menu li:last-child .dropdown-item .title {
    padding-bottom: 8px !important;
}

.topbar .nvidia-dropdown .dropdown-menu .dropdown-item {
    color: #ffffff !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    display: block !important;
}

.topbar .nvidia-dropdown .dropdown-menu .dropdown-item .title {
    padding: 8px 12px !important;
    display: block !important;
    color: #ffffff !important;
    transition: color 0.3s ease !important;
}

.topbar .nvidia-dropdown .dropdown-menu .dropdown-item:active,
.topbar .nvidia-dropdown .dropdown-menu .dropdown-item:focus {
    color: #77B900 !important;
    background: #000000 !important;
}

.topbar .nvidia-dropdown .dropdown-menu .dropdown-item:hover {
    background: #000000 !important;
    color: #77B900 !important;
    transform: none !important;
}

.topbar .nvidia-dropdown .dropdown-menu .dropdown-item:hover .title {
    color: #77B900 !important;
}

/* Topbar location, email, and language icons - high quality and visible */
.topbar .fa-map-marker-alt,
.topbar .fa-envelope,
.topbar .fa-globe-europe,
.topbar .fa-globe {
    color: #ffffff !important;
    margin-right: 8px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.topbar a:hover .fa-map-marker-alt,
.topbar a:hover .fa-envelope,
.topbar a:hover .fa-globe-europe,
.topbar a:hover .fa-globe {
    color: #77B900 !important;
}

/* Topbar social icons - no circular background, just icons */
.topbar .btn.p-0 {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s !important;
    padding: 0 !important;
    position: relative !important;
}

.topbar .btn.p-0 i {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.3s ease !important;
}

/* Special fix for phone icon to center it perfectly */
.topbar .btn.p-0 .fa-phone-alt {
    transform: translateX(0) translateY(0) !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.topbar .btn.p-0:hover {
    background: transparent !important;
    border: none !important;
}

.topbar .btn.p-0:hover i {
    color: #77B900 !important;
}

.navbar {
    background-color: #f5f5f5 !important;
}

/* Navbar - Perfect alignment for all items - NVIDIA style */
.navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.navbar-expand-lg .navbar-nav {
    flex-wrap: nowrap !important;
    align-items: center !important;
    display: flex !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-nav .nav-item {
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* All nav links aligned to same height - NVIDIA style */
.navbar-nav .nav-link {
    padding: 0.5rem 0.75rem !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    color: #000000 !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.01em !important;
}

/* Navbar container to prevent wrapping */
.navbar-expand-lg {
    flex-wrap: nowrap !important;
}

/* Only apply flex on larger screens */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        flex-grow: 1 !important;
    }
}

/* NVIDIA-style nav link colors and hover effects */
.nav-link {
    color: #000000 !important;
    position: relative !important;
}

.nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: #77B900 !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80% !important;
}

.nav-link:hover, .nav-link.active {
    color: #77B900 !important;
}

.navbar-brand, .navbar-brand h1, .navbar-brand i {
    color: #000000 !important;
}

/* Dropdown toggle alignment */
.navbar-nav .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
}

/* Dropdown menu adjustments */
.navbar-nav .dropdown-menu {
    font-size: 14px !important;
}

/* Two-column dropdown layout for subcategories */
.dropdown-menu-two-column {
    display: flex !important;
    flex-direction: row !important;
    min-width: 400px !important;
    padding: 0 !important;
}

.dropdown-menu-two-column .dropdown-column {
    flex: 1;
    padding: 10px 0 !important;
    min-width: 200px !important;
}

.dropdown-menu-two-column .dropdown-column:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding-right: 0 !important;
}

.dropdown-menu-two-column .dropdown-column:last-child {
    padding-left: 0 !important;
}

.dropdown-menu-two-column .dropdown-item {
    padding: 8px 20px !important;
}

.dropdown-menu-two-column .dropdown-divider {
    margin: 0.5rem 0 !important;
}

/* Nav buttons perfectly aligned */
.nav-btn {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    padding-left: 0.75rem !important;
    padding-right: 0 !important;
    margin-left: auto !important;
}

/* Search button alignment */
.nav-btn .btn-search {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 16px !important;
    margin-right: 0.75rem !important;
}

/* Get a Quote button alignment */
.nav-btn .btn-primary.rounded-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    padding: 0 1.5rem !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

/* Ensure navbar container alignment - only on desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        align-items: center !important;
    }
}

/* Breadcrumb - has green/dark gradient, needs white text */
.bg-breadcrumb {
    color: #ffffff !important;
}

.bg-breadcrumb h1, .bg-breadcrumb h2, .bg-breadcrumb h3, .bg-breadcrumb h4, .bg-breadcrumb h5, .bg-breadcrumb h6 {
    color: #ffffff !important;
}

.bg-breadcrumb p, .bg-breadcrumb span, .bg-breadcrumb div {
    color: #ffffff !important;
}

.breadcrumb-item a {
    color: #ffffff !important;
}

.breadcrumb-item.active {
    color: #ffffff !important;
}

.breadcrumb-item a:hover {
    color: #77B900 !important;
}

/* Cards and items */
.card {
    border-color: #000000 !important;
}

/* Form controls */
.form-control {
    border-color: #000000 !important;
    color: #000000 !important;
}

.form-control:focus {
    border-color: #77B900 !important;
    box-shadow: 0 0 0 0.2rem rgba(119, 185, 0, 0.25) !important;
}

/* Dropdowns - ALL dropdowns */
.dropdown-menu {
    background-color: #ffffff !important;
    border-color: #000000 !important;
}

.dropdown-item {
    color: #000000 !important;
}

.dropdown-item:hover {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

/* CRITICAL: Topbar language dropdown - ensure WHITE text on GREEN hover */
.topbar .dropdown-menu .dropdown-item {
    color: #000000 !important;
}

.topbar .dropdown-menu .dropdown-item:hover {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

.topbar .dropdown-menu a {
    color: #000000 !important;
}

.topbar .dropdown-menu a:hover {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

/* CRITICAL: Navbar dropdown (Pages menu) - ensure WHITE text on GREEN hover */
.navbar .dropdown-menu .dropdown-item {
    color: #000000 !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

.navbar .dropdown-menu a {
    color: #000000 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

/* Modal */
.modal-content {
    background-color: #ffffff !important;
    border-color: #000000 !important;
}

.modal-header {
    border-bottom-color: #000000 !important;
}

.modal-title {
    color: #000000 !important;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

/* Text-only buttons - NVIDIA Inter font styling */
.btn-primary:not(.btn-square):not(.btn-sm-square):not(.btn-md-square):not(.btn-lg-square):not(.btn-xl-square),
.btn-light:not(.btn-square):not(.btn-sm-square):not(.btn-md-square):not(.btn-lg-square):not(.btn-xl-square),
.btn-dark:not(.btn-square):not(.btn-sm-square):not(.btn-md-square):not(.btn-lg-square):not(.btn-xl-square) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em !important;
    line-height: 1.5 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    background: #000000;
    border: none;
}

.btn.btn-primary:hover {
    background: #77B900;
    color: var(--bs-white);
}

/* Navbar buttons - only text/icon turns green on hover, background stays black */
.navbar .btn.btn-primary,
.navbar .btn.btn-light {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    transition: 0.3s !important;
}

.navbar .btn.btn-primary:hover,
.navbar .btn.btn-light:hover {
    background: #000000 !important;
    color: #77B900 !important;
    border-color: #000000 !important;
}

.navbar .btn.btn-primary i,
.navbar .btn.btn-light i {
    color: #ffffff !important;
    transition: 0.3s !important;
}

.navbar .btn.btn-primary:hover i,
.navbar .btn.btn-light:hover i {
    color: #77B900 !important;
}

.btn.btn-light {
    color: var(--bs-white);
    background: #000000;
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: #77B900;
}

.btn.btn-dark {
    color: var(--bs-white);
    background: #000000;
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-white);
    background: #77B900;
}

/* General button override - all buttons black with lime green hover */
.btn {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.btn:hover {
    background: #77B900 !important;
    color: #ffffff !important;
    border-color: #77B900 !important;
}

/* CRITICAL: Ensure button text is ALWAYS white on black or green backgrounds */
.btn, .btn i, .btn span {
    color: #ffffff !important;
}

.btn:hover, .btn:hover i, .btn:hover span {
    color: #ffffff !important;
}

/* Override bg-primary backgrounds - NOW it's GREEN (NVIDIA color) */
.bg-primary {
    background-color: #77B900 !important;
    color: #ffffff !important;
}

.bg-primary *, .bg-primary i, .bg-primary span, .bg-primary a {
    color: #ffffff !important;
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6 {
    color: #ffffff !important;
}

/* CRITICAL: No green text on green background */
.bg-primary .text-primary {
    color: #ffffff !important;
}

.bg-primary:hover {
    background-color: #5a8c00 !important;
}

/* bg-secondary should be BLACK with WHITE text */
.bg-secondary {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.bg-secondary * {
    color: #ffffff !important;
}

.bg-secondary h1, .bg-secondary h2, .bg-secondary h3, .bg-secondary h4, .bg-secondary h5, .bg-secondary h6 {
    color: #ffffff !important;
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: #f5f5f5;
    transition: 1s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

/* Tablet and Mobile - Below 992px */
@media (max-width: 991px) {
    /* Make navbar container sticky at top */
    .container-fluid.nav-bar {
        position: sticky;
        top: 0;
        z-index: 1050;
        background: #f5f5f5;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
    }

    .navbar {
        padding: 15px 0;
        position: relative;
        background: #f5f5f5;
    }

    /* Add smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Keep navbar brand and toggler in a fixed position */
    .navbar .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .navbar-brand {
        position: relative;
        z-index: 1002;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        position: relative;
        z-index: 1002;
    }

    /* Fix navbar-collapse to allow Bootstrap collapse to work */
    .navbar-collapse {
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .navbar-collapse.collapsing,
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        display: block !important;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 15px;
    }

    .navbar .navbar-nav .nav-item {
        display: block;
        padding: 8px 20px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    /* Dropdown styling for mobile */
    .navbar .nav-item .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 10px 0 0 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        border-radius: 5px !important;
        padding: 10px 0 !important;
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .navbar .nav-item .dropdown-menu.show {
        display: block !important;
    }

    /* Two-column layout in mobile - show only category headers */
    .navbar .nav-item .dropdown-menu-two-column {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }

    .navbar .nav-item .dropdown-menu-two-column.show {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        min-width: auto !important;
    }

    .navbar .nav-item .dropdown-menu-two-column .dropdown-column {
        width: 100% !important;
        min-width: auto !important;
        padding: 5px 0 !important;
        border-right: none !important;
    }

    .navbar .nav-item .dropdown-menu-two-column .dropdown-column:first-child {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
        padding-bottom: 8px !important;
        margin-bottom: 8px !important;
    }

    /* Hide all dropdown items except the first one (category header) in each column */
    .navbar .nav-item .dropdown-menu-two-column .dropdown-column .dropdown-item:not(:first-child) {
        display: none !important;
    }

    /* Hide dividers in two-column mobile dropdowns */
    .navbar .nav-item .dropdown-menu-two-column .dropdown-divider {
        display: none !important;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        padding: 8px 20px !important;
        font-size: 14px !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    .navbar .nav-item .dropdown-menu .dropdown-divider {
        margin: 0.5rem 0 !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: row !important;
        width: 100% !important;
        padding: 15px 20px !important;
        margin-left: 0 !important;
        gap: 10px !important;
        border-bottom: none !important;
    }

    .nav-btn .btn-search {
        margin-right: 0 !important;
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
        border-radius: 5px !important;
    }

    .nav-btn .btn-primary.rounded-pill {
        height: 40px !important;
        flex-grow: 1 !important;
        padding: 0 1rem !important;
        font-size: 14px !important;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 0;
        padding: 20px 0;
        background: #ffffff;
        border-radius: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 15px;
        border: 2px solid #000000;
        color: #000000;
        background: transparent;
        border-radius: 5px;
    }

    .navbar.navbar-expand-lg .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(119, 185, 0, 0.25);
        border-color: #77B900;
        outline: none;
    }

    .navbar.navbar-expand-lg .navbar-toggler .fa-bars {
        color: #000000;
        font-size: 18px;
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover {
        background: #f8f9fa;
        border-color: #77B900;
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover .fa-bars {
        color: #77B900;
    }
}

/* Small Mobile - Below 576px */
@media (max-width: 575px) {
    .navbar .navbar-nav .nav-item {
        padding: 10px 15px;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 14px;
    }

    /* Point arrow to the right in mobile sidebar */
    .navbar .dropdown-toggle::after {
        content: "\f105" !important;
    }

    /* Mobile responsive for Category Pages - Product Cards */
    .blog-item .blog-img img {
        height: auto !important;
        max-height: 250px !important;
        object-fit: cover !important;
    }

    /* Mobile responsive for Product Detail Pages */
    .product-img img {
        height: auto !important;
        max-height: 300px !important;
        object-fit: contain !important;
    }

    /* Ensure product detail sections stack properly */
    .product-content {
        margin-top: 20px !important;
    }

    /* Category page text sizing for mobile */
    .blog-content h4 {
        font-size: 1.1rem !important;
    }

    .blog-content p {
        font-size: 0.9rem !important;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f5f5f5;
        border-radius: 8px;
        flex-wrap: nowrap;
        padding: 0.25rem 0.5rem;
        margin: 0;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        padding-left: 0.5rem !important;
        flex-direction: row !important;
        gap: 0 !important;
        width: auto !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

/* Hero section buttons - white background with green text on hover */
.header-carousel .btn-light:hover,
.header-carousel .btn-dark:hover {
    background: #ffffff !important;
    color: #77B900 !important;
    border-color: #ffffff !important;
}

.header-carousel .btn-light:hover i,
.header-carousel .btn-dark:hover i {
    color: #77B900 !important;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 3px solid #000000 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.header-carousel .owl-nav .owl-prev span,
.header-carousel .owl-nav .owl-next span {
    font-weight: 900 !important;
    line-height: 1 !important;
    transform: scale(1.3);
    transition: all 0.3s ease;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #77B900 !important;
    color: #000000 !important;
    border-color: #77B900 !important;
    box-shadow: 0 6px 20px rgba(119, 185, 0, 0.4);
    transform: scale(1.1);
}

.header-carousel .owl-nav .owl-prev:hover span,
.header-carousel .owl-nav .owl-next:hover span {
    color: #000000 !important;
    transform: scale(1.4) !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: #000000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** About Section Start ***/
/* About section button - WHITE text before hover, BLACK text on hover */
.about .btn.btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
}

.about .btn.btn-primary:hover {
    background: #77B900 !important;
    color: #000000 !important; /* BLACK text on green hover */
}
/*** About Section End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: #000000 !important; /* BLACK card before hover */
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: #77B900 !important; /* GREEN card on hover */
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #77B900 !important; /* GREEN background before hover */
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #ffffff; /* WHITE on hover */
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

/* Card text BEFORE hover - WHITE text on BLACK card */
.feature .feature-item h4,
.feature .feature-item p {
    color: #ffffff !important;
    transition: 0.5s;
}

/* Icon BEFORE hover - BLACK icon on GREEN background */
.feature .feature-item .feature-icon i {
    color: #000000 !important;
    transition: 0.5s;
}

/* Button BEFORE hover - GREEN background, BLACK text */
.feature .feature-item a.btn {
    background: #77B900 !important;
    color: #000000 !important;
}

/* Card text AFTER hover - BLACK text on GREEN card */
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: #000000 !important;
}

/* Icon AFTER hover - BLACK icon on DARK GREEN background */
.feature .feature-item:hover .feature-icon i {
    color: #000000 !important;
    transform: rotateX(360deg);
}

/* Button AFTER card hover - WHITE background, BLACK text */
.feature .feature-item:hover a.btn {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Button hover within hovered card - BLACK background, WHITE text */
.feature .feature-item:hover a.btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(119, 185, 0, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #000000 !important; /* BLACK background before hover */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

/* Icon BEFORE hover - GREEN icon on BLACK background */
.service .service-item .service-img .service-icon i {
    color: #77B900 !important;
    transition: 0.5s;
}

/* Icon AFTER hover - BLACK icon on GREEN background */
.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: #000000 !important;
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    background: #77B900 !important; /* GREEN background on hover */
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #000000 !important; /* BLACK card before hover */
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

/* Card text BEFORE hover - WHITE text on BLACK card */
.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    color: #ffffff !important;
    transition: 0.5s;
}

/* Button BEFORE hover - GREEN background, BLACK text */
.service .service-item .service-content .service-content-inner .btn.btn-primary {
    background: #77B900 !important;
    color: #000000 !important;
}

/* Card text AFTER hover - BLACK text on GREEN card */
.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: #000000 !important;
}

/* Button AFTER card hover - WHITE background, BLACK text */
.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Button hover within hovered card - BLACK background, WHITE text */
.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(119, 185, 0, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(119, 185, 0, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

/* Business button - BLACK before hover, GREEN on hover */
.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: #ffffff !important;
    background: #000000 !important;
    transition: 0.5s;
    z-index: 9;
    cursor: pointer;
}

.blog .blog-item:hover .blog-img .blog-categiry {
    background: #77B900 !important;
    color: #ffffff !important;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

/* Read More button - BLACK before hover, GREEN on hover (fancy effect) */
.blog .blog-item .blog-content a.btn {
    background: #000000 !important;
    color: #ffffff !important;
    transition: 0.5s;
    padding: 8px 20px !important;
    border-radius: 25px !important;
}

.blog .blog-item .blog-content a.btn:hover {
    background: #77B900 !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

.blog .blog-item .blog-content a.btn i {
    transition: 0.3s;
}

.blog .blog-item .blog-content a.btn:hover i {
    transform: translateX(5px);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

/* Team social buttons - vertical layout with visible styling */
.team .team-item .team-icon {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.team .team-item .team-icon a.btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
    width: 34px !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: 0.3s !important;
    margin: 0 !important;
}

.team .team-item .team-icon a.btn i {
    color: #000000 !important;
    font-size: 14px !important;
}

.team .team-item .team-icon a.btn:hover {
    background: #77B900 !important;
    border-color: #77B900 !important;
}

.team .team-item .team-icon a.btn:hover i {
    color: #ffffff !important;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77B900, transparent);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
}

.footer .footer-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #77B900;
    border-radius: 0;
}

.footer .footer-item h3 {
    font-weight: 800;
    font-size: 32px !important;
    text-shadow: 0 2px 10px rgba(119, 185, 0, 0.3);
}

.footer .footer-item a {
    line-height: 38px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer .footer-item a:hover {
    color: #77B900;
    padding-left: 5px;
    transform: translateX(3px);
}

.footer .footer-item a i.fas.fa-angle-right {
    color: #77B900;
    transition: all 0.3s ease;
}

.footer .footer-item a:hover i.fas.fa-angle-right {
    transform: translateX(3px);
}

.footer .footer-item p {
    line-height: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

/* Footer social buttons - premium styling */
.footer .footer-item .footer-btn {
    gap: 12px;
}

.footer .footer-item .footer-btn a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    width: 45px !important;
    height: 45px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer .footer-item .footer-btn a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #77B900, #5a9100);
    top: 0;
    left: 0;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.footer .footer-item .footer-btn a i {
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.footer .footer-item .footer-btn a:hover {
    border-color: #77B900 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(119, 185, 0, 0.3);
}

.footer .footer-item .footer-btn a:hover::before {
    transform: scale(1);
}

.footer .footer-item .footer-btn a:hover i {
    color: #ffffff !important;
    transform: scale(1.1);
}

/* Footer contact icon buttons - premium styling */
.footer .btn-xl-square.bg-primary {
    background: linear-gradient(135deg, #77B900 0%, #5a9100 100%) !important;
    color: #ffffff !important;
    border-radius: 15px !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0 !important;
    position: relative !important;
    box-shadow: 0 8px 25px rgba(119, 185, 0, 0.3);
    border: 2px solid rgba(119, 185, 0, 0.3) !important;
}

.footer .btn-xl-square.bg-primary::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: 0;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer .btn-xl-square.bg-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(119, 185, 0, 0.5);
}

.footer .btn-xl-square.bg-primary:hover::before {
    opacity: 1;
}

.footer .btn-xl-square.bg-primary i {
    color: #ffffff !important;
    font-size: 26px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.footer .btn-xl-square.bg-primary:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Footer contact info text */
.footer .d-flex h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer .d-flex p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer .d-flex:hover p {
    color: #77B900;
}

/* Powered By Partner Logos - Simple Design */
.footer .footer-item .row.g-2 > div {
    padding: 8px;
}

.footer .footer-item .row.g-2 img {
    transition: transform 0.3s ease;
}

.footer .footer-item .row.g-2 img:hover {
    transform: scale(1.1);
}

/* Footer border divider */
.footer .pt-5 {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer .footer-item h4::after {
        width: 40px;
        height: 2px;
    }

    .footer .btn-xl-square.bg-primary {
        width: 60px !important;
        height: 60px !important;
    }
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #000000;
    border-top: 1px solid rgba(119, 185, 0, 0.2);
}

.copyright a {
    color: #77B900 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.copyright .text-body {
    color: rgba(255, 255, 255, 0.6) !important;
}
/*** copyright end ***/


