        /********** Template CSS **********/

        /* Global Font Family */
        body, html {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            background-color: white !important;
            overflow-x: hidden !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        body {
            /*hide scrollbar*/
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
            &::-webkit-scrollbar {
                display: none !important;
            }
        }

        :root {
            /* Tena brand colors (global variables) */
            --bs-primary: #FFD300; /* primary color */
            --bs-primary-rgb: 255,211,0;
            --bs-secondary: #ffb100; /* secondary color */
            --bs-secondary-rgb: 255,177,0;
            --bs-white: #ffffff;
            --bs-white-rgb: 255,255,255;
            --bs-dark: #1b1b1b;
            --bs-dark-rgb: 27,27,27;
            --bs-light: #f8f9fa;
            --bs-light-rgb: 248,249,250;
        }


        .display-3 {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 4rem;
            font-weight: 500;
            line-height: 1;
            letter-spacing: -1px;
        }


        .text-primary {
            color: var(--bs-secondary) !important;
        }

        /* Highlighted text in card titles with subtle background */
        .card-title .text-warning {
            background: rgba(var(--bs-white-rgb), .5);
            padding:  1px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .bg-primary {
            background-color: var(--bs-primary) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            backface-visibility: visible;
            opacity: .8;
            border-radius: 20px;
            padding: .6rem 1rem;
            color: var(--bs-white);
            border: none;
        }

        .hero-border {
            border-left: 4px solid rgba(255, 255, 255, 0.422);
            will-change: auto;
            transition: all 0.3s ease;
        }

        .hero-border:hover {
            border-left: 4px solid var(--bs-secondary);
        }

        /* Nav CTA styling */
        .navbar .nav-link.btn-primary {
            padding: .4rem .6rem !important;
            border-radius: .75rem !important;
            font-size: 1rem !important;
            font-weight: 500 !important;
            background-color: black !important;
            color: var(--bs-white) !important;
        }

        /* Btn-primary override */
            .btn-primary {
                padding: 1rem 1.4rem !important;
            border-radius: .75rem !important;
            font-size: 1rem !important;
            font-weight: 500 !important;
            background-color: black !important;
            color: var(--bs-white) !important;
            transform: scale(1) translateZ(0) !important;
                transition: all 0.3s ease-in-out !important;
        }

        .btn-primary:hover {
            opacity: 0.95;
            transform: scale(1.05) translateZ(0) !important;
        }


        /*outline button override */
        .btn-outline-primary {
                padding: 1rem 1.4rem !important;    border-radius: .75rem !important;
            font-size: 1rem !important;
            font-weight: 500 !important;
            outline: 1px solid black !important;
            border: 1px solid black !important;
            color:black !important;
            box-shadow: 0 0 20px rgba(0 0 0 0.7) !important;
            transform: scale(1) translateZ(0) !important;
            transition: all 0.3s ease-in-out !important;
        }

        .btn-outline-primary:hover {
            background-color: var(--bs-light) !important;
            color: var(--bs-dark) !important;
            transform: scale(1.05) translateZ(0) !important;
        }

        /* Partners images larger */
        .partners-row img {
            max-height: 120px;
            object-fit: contain;
        }

        /* Early bird highlight */
        .early-bird {
            background: linear-gradient(135deg, rgba(var(--bs-secondary-rgb),0.08), rgba(var(--bs-primary-rgb),0.03));
            border-left: 6px solid var(--bs-secondary);
            padding: 1.8rem;
            border-radius: 12px;
        }
        .highlight-cta {
            background: var(--bs-secondary);
            opacity: .6;
            color: var(--bs-white);
            font-size: 1.5rem;
            text-shadow: .5rem .5rem 2rem rgba(86, 86, 86, 0.5);
            border-radius: .75rem;
            padding: .6rem 1rem;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            backface-visibility:visible;
            transition: all 0.3s ease;

        }

        /*** Spinner ***/
        #spinner {
            opacity: 0;
            visibility: hidden;
            transition: opacity .5s ease-out, visibility 0s linear .5s;
            z-index: 99999;
            background-color: var(--bs-primary) !important;
        }

        #spinner.show {
            transition: opacity .5s ease-out, visibility 0s linear 0s;
            visibility: visible;
            opacity: 1;
        }

        /* Typing Animation */
        .typing-animation {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 4rem;
            font-weight: 600;
            text-decoration: underline;
            text-decoration-color: var(--bs-dark);
            text-decoration-thickness: .6px;
            text-underline-offset: 4px;
            color: black;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            backface-visibility:visible;
            text-shadow: 0 0 10px rgba(171, 171, 171, 0.5);
            letter-spacing: -.5px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blinking-caret {
            animation: blink 1s infinite;
            font-weight: 600;
            margin-left: 2px;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Responsive typing animation */
        @media (max-width: 768px) {
            .typing-animation {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .typing-animation {
                font-size: 1.5rem;
            }
        }

        .back-to-top {
            position: fixed !important;
            display: none;
            right: 45px !important;
            bottom: 45px !important;
            z-index: 9999 !important;
            width: 45px !important;
            height: 45px !important;
        }

        /*** Button ***/
        .btn {
            transition: .5s;
        }

        .btn-square {
            width: 38px;
            height: 38px;
        }

        .btn-sm-square {
            width: 32px;
            height: 32px;
        }

        .btn-lg-square {
            width: 48px;
            height: 48px;
        }

        .btn-square,
        .btn-sm-square,
        .btn-lg-square {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: normal;
        }


        /*** Navbar ***/
        .sticky-top {
            top: -150px;
            transition: .5s;
        }

        .navbar {
            padding: 15px 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            font-size: 15px;
        }

        .navbar .navbar-nav .nav-link {
            margin-left: 20px;
            padding: 0;
            outline: none;
            color: black;
            font-weight: 500;
        }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            color: var(--bs-primary);
            font-weight: 600;
        }

        .navbar .dropdown-toggle::after {
            border: none;
            content: "\f107";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            vertical-align: middle;
            margin-left: 8px;
        }

        .navbar .dropdown-menu .dropdown-item:hover,
        .navbar .dropdown-menu .dropdown-item.active {
            color: var(--bs-white);
            background: var(--bs-primary);
        }

        @media (max-width: 991.98px) {
            .navbar .navbar-nav .nav-link  {
                margin-left: 0;
                padding: 10px 0;
            }
        }

        @media (min-width: 992px) {
            .navbar .nav-item .dropdown-menu {
                display: block;
                border: none;
                margin-top: 0;
                top: 150%;
                opacity: 0;
                visibility: hidden;
                transition: .5s;
            }

            .navbar .nav-item:hover .dropdown-menu {
                top: 100%;
                visibility: visible;
                transition: .5s;
                opacity: 1;
            }
        }


        /*** Hero Header ***/
        .hero-header {
            margin-top: -100px;
            padding-top: 150px;
            background: url(../img/hero-bg.jpg) top center no-repeat;
            background-size: cover;
        }

        .hero-header .breadcrumb-item+.breadcrumb-item::before {
            color: var(--light);
        }

        .header-carousel {
            position: relative;
            padding: 45px 90px 45px 0;
        }

        .header-carousel::before {
            position: absolute;
            content: "";
            top: 0;
            right: 0;
            width: calc(50% + 45px);
            height: 100%;
            border: .6px solid var(--bs-white);
            border-radius: 2rem;
            box-shadow:  0 0 2rem rgba(255, 255, 255, 0.805);
            background: var(--bs-primary);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            backface-visibility:visible;
            opacity: .2;
            z-index: -1;
        }

        .header-carousel .owl-dots {
            position: absolute;
            top: 50%;
            right: 38px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            will-change: auto;
        }

        .header-carousel .owl-dot {
            position: relative;
            display: inline-block;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(171, 171, 171, 0.5);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            backface-visibility:visible;
            opacity: .75;
            margin: 5px 0;
            width: 15px;
            height: 15px;
            border: 2px solid var(--bs-white);
            transition: .5s;
            will-change: auto;
        }

        .header-carousel .owl-dot.active {
            height: 30px;
            background: var(--bs-white);
        }

        .owl-carousel .header-carousel img {
            border-radius: 2rem !important;
            transition: .5s !important;
            will-change: auto !important;
        }

        .owl-carousel .header-carousel img:hover {
            transform: scale(1.05) !important;
            will-change: auto !important;
        }

        .about-img::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url(../img/bg-about-img.png) top left no-repeat;
            background-size: contain;
        }


        .card {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            border-radius: 1.3rem !important;
            backdrop-filter: blur(6px) !important;
            -webkit-backdrop-filter: blur(6px) !important;
            backface-visibility:visible !important;
            background:transparent !important;
            color: black !important;
            opacity: 1 !important;
            transition: all 0.3s ease !important;
            will-change: auto !important;
            box-shadow: none !important;
            border: none !important;
        }

        .card-text {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
                color: white !important;
                background: rgba(var(--bs-dark-rgb), 0.9) !important;
                padding: 15px !important;
                backdrop-filter: blur(6px) !important;
                -webkit-backdrop-filter: blur(6px) !important;
                backface-visibility:visible !important;
                justify-content: start !important;
                align-items: center !important;
                border-radius: 15px !important;
                outline: 1px solid rgba(var(--bs-dark-rgb), 0.2) !important;
            transition: all 0.3s ease !important;
            will-change: auto !important;
        }

        .card-title {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
            font-size: 1.5rem !important;
                font-weight: 700 !important;
                color: black !important;
                transition: all 0.3s ease !important;
                    will-change: auto !important;
                    text-shadow: 0 0 0.5px rgba(42, 42, 42, 0.934);
        }

        .card-text {
            margin-top: 15px !important;
                font-weight: 550 !important;
            font-size: 1rem !important;
        }
        .card-icon {
            margin-bottom: 15px !important;
            padding: 30px !important;
            border-radius: 25px !important;
            background: var(--bs-light) !important;
            backdrop-filter: blur(6px) !important;
            -webkit-backdrop-filter: blur(6px) !important;
            backface-visibility:visible !important;
            border: 1px solid rgba(var(--bs-white-rgb), 0.9) !important;
            opacity: .5 !important;
            box-shadow: inset 0 0 40px rgba(223, 222, 222, 0.5) !important;
            transition: all 0.3s ease !important;
            will-change: auto !important;
        }

        .card-grid{
            margin-bottom: 15px !important;
                border-radius: 35px !important;
            
                justify-content: center !important;
                align-items: center !important;
                display: flex !important;
                flex-direction: column !important;
                opacity: .9 !important;
                transition: all 0.3s ease !important;
                will-change: auto !important;
        }

        .card-grid .card-body {
                    border-radius: 35px !important;
        }

        .card-grid .card-body i {
            padding: 5px !important;
            border-radius: 50% !important;
            color: black !important;
            transform: translateX(0) scale(1) !important;
            transition: all 0.3s ease !important;
            will-change: auto !important;
            display: flex;
            align-items: center;
            justify-content: end;
        }

        /* Card hover effects for icons */
        .card-grid:hover .card-body i {
    color: var(--bs-secondary) !important;
            align-items: end !important;
            justify-content: end !important;
            transform: translateX(-40px) scale(1.75) !important;
        }

        .font-standard-heading {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            letter-spacing: -.5px !important;
            font-size: 1.75rem !important;
            color: black !important;
            font-weight: 700 !important;
        }

            .font-standard-subheading {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
                font-size: 1.5rem !important;
                color: black !important;
                font-weight: 650 !important;
            }

            .font-standard-section-pill {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
                font-size: 1.25rem !important;
                background: linear-gradient(45deg, rgba(var(--bs-secondary-rgb),1), rgba(var(--bs-primary-rgb),.5));
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                backface-visibility:visible;
                padding: 7.5px 17.5px;
                margin-bottom: 15px !important;
                border-radius: 8.5px;
                text-shadow: 0 0 10px rgba(206, 204, 204, 0.562);
                color: var(--bs-dark) !important;
                font-weight: 700 !important;
                transition: all 0.3s ease !important;
                transform: translateX(0) scale(1) !important;
                will-change: auto !important;
                justify-content: end !important;
                display: flex !important;
                align-items: center !important;
            }

            .outlined-content:hover .font-standard-section-pill {
justify-content: end !important;
                transition: all 0.3s ease !important;
                will-change: auto !important;
                transform: translateX(-40px) scale(1.05) !important;
                background: black !important;
                color: var(--bs-primary) !important;
            }

            .font-standard-pricing-pill {
                justify-content: start !important;
                    display: flex !important;
                    align-items: center !important;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
                font-size: 1.25rem !important;
                color: black !important;
                transition: all 0.3s ease !important;
                will-change: auto !important;
            }

            .font-standard-pricing-pill:hover {
                transform: translateX(-40px) scale(1.05) !important;
                transition: all 0.3s ease !important;
                background: black !important;
                color: var(--bs-primary) !important;
                will-change: auto !important;
            }

            .font-standard-text {
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
                letter-spacing: -.5px !important;
                font-size: 1rem !important;
                color: black !important;
                font-weight: 500 !important;
            }

     /* Outlined content sections */
     .outlined-content {
         background: rgba(var(--bs-white-rgb), 0.9);
         border: 2px solid var(--bs-primary);
         border-radius: 20px;
         padding: 2rem;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         backdrop-filter: blur(10px);
         -webkit-backdrop-filter: blur(10px);
     }

     /* Landing page images with rounded corners */
     .landing-image {
         border-radius: 35px !important;
         transition: all 0.3s ease;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

     .landing-image:hover {
         transform: scale(1.02);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     }

     /* Enhanced AOS animations for immersive experience */
     [data-aos="slide-right"] {
         transform: translateX(-100px);
         opacity: 0;
         transition: all 0.6s ease;
     }

     [data-aos="slide-right"].aos-animate {
         transform: translateX(0);
         opacity: 1;
     }

     [data-aos="slide-left"] {
         transform: translateX(100px);
         opacity: 0;
         transition: all 0.6s ease;
     }

     [data-aos="slide-left"].aos-animate {
         transform: translateX(0);
         opacity: 1;
     }

     /* Staggered animation delays for feature items */
     .feature-item:nth-child(1) { animation-delay: 0.1s; }
     .feature-item:nth-child(2) { animation-delay: 0.2s; }
     .feature-item:nth-child(3) { animation-delay: 0.3s; }
     .feature-item:nth-child(4) { animation-delay: 0.4s; }

     /* Enhanced button animations */
     .btn-primary {
         transition: all 0.3s ease;
         position: relative;
         overflow: hidden;
     }

     .btn-primary:hover {
         transform: translateY(-2px);
         box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.4);
     }

     .btn-primary:active {
         transform: translateY(0);
     }

        /*** Project ***/
        .project-item img {
            transform: translateY(0);
            transition: all .3s ease;
            will-change: auto;
        }
        
        .project-item:hover img {
            transform: translateY(-10px);
        }
        
        .project-overlay {
            position: absolute;
            padding: 25px;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            background: linear-gradient(rgba(var(--bs-white-rgb), .1) 50%, var(--bs-dark));
            z-index: 1;
        }


        /*** Service ***/
        .service-item {
            position: relative;
            padding: 30px 25px;
            transition: .5s;
        }

        .service-item.bg-primary:hover {
            background: var(--bs-light) !important;
        }

        .service-item.bg-primary p {
            color: var(--bs-light);
            transition: .5s;
        }

        .service-item.bg-primary:hover p {
            color: var(--bs-secondary);
        }

        .service-item.bg-light:hover {
            background: var(--bs-primary) !important;
        }

        .service-item.bg-light p {
            color: var(--bs-secondary);
            transition: .5s;
        }

        .service-item.bg-light:hover p {
            color: var(--bs-light);
        }


        .service-item .service-img h3 {
            position: absolute;
            top: 0;
            left: 0;
            padding: 0 12px 7px 0;
        }

        .service-item.bg-primary .service-img h3 {
            background: var(--bs-primary);
            color: var(--bs-white);
            transition: .5s;
        }

        .service-item.bg-primary:hover .service-img h3 {
            background: var(--bs-light);
            color: var(--bs-dark);
        }

        .service-item.bg-light .service-img h3 {
            background: var(--bs-light);
            color: var(--bs-dark);
            transition: .5s;
        }

        .service-item.bg-light:hover .service-img h3 {
            background: var(--bs-primary);
            color: var(--bs-white);
        }


        /*** Our Team ***/
        .team-item img {
            transition: .5s;
        }
        
        .team-item:hover img {
            transform: scale(1.2);
        }
        
        .team-overlay {
            position: absolute;
            padding: 30px;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            background: linear-gradient(rgba(var(--bs-white-rgb), .1) 50%, var(--bs-dark));
            z-index: 1;
        }

        .team-overlay small {
            display: inline-block;
            padding: 3px 15px;
            color: var(--bs-white);
            background: var(--bs-primary);
        }


        /*** Testimonial ***/
        .testimonial-img {
            position: relative;
            padding: 45px 0 45px 90px;
        }

        .testimonial-img::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: calc(50% + 45px);
            height: 100%;
            background: var(--bs-primary);
            z-index: -1;
        }

        .testimonial-text h5 {
            position: relative;
            padding-left: 45px;
        }

        .testimonial-text h5::before {
            position: absolute;
            content: "";
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: var(--bs-primary);
        }

        .testimonial-carousel .owl-dots {
            position: absolute;
            height: 17px;
            bottom: 0;
            right: 0;
            left: auto;
        }

        .testimonial-carousel .owl-dot {
            position: relative;
            display: inline-block;
            margin-left: 10px;
            width: 15px;
            height: 15px;
            background: var(--bs-white);
            border: 2px solid var(--bs-primary);
            transition: .5s;
        }

        .testimonial-carousel .owl-dot.active {
            width: 30px;
            background: var(--bs-primary);
        }

        @media (max-width: 768px) {
            .testimonial-carousel .owl-dots {
                left: 0;
                right: auto;
            }

            .testimonial-carousel .owl-dot {
                margin-right: 10px;
                margin-left: 0;
            }
        }


        /*** Newsletter ***/
        .newsletter {
            background: url(../img/hero-bg.jpg) bottom right no-repeat;
            background-size: cover;
        }

        @media (min-width: 992px) {
            .newsletter .container {
                max-width: 100% !important;
            }

            .newsletter .newsletter-text  {
                padding-right: calc(((100% - 960px) / 2) + .75rem);
            }
        }

        @media (min-width: 1200px) {
            .newsletter .newsletter-text  {
                padding-right: calc(((100% - 1140px) / 2) + .75rem);
            }
        }

        @media (min-width: 1400px) {
            .newsletter .newsletter-text  {
                padding-right: calc(((100% - 1320px) / 2) + .75rem);
            }
        }


        /*** Footer ***/
        .footer .btn.btn-link {
            display: block;
            margin-bottom: 10px;
            padding: 0;
            text-align: left;
            color: rgba(var(--bs-white-rgb), .5);
            font-weight: normal;
            transition: .3s;
        }

        .footer .btn.btn-link:hover {
            color: var(--bs-white);
            letter-spacing: 1px;
            box-shadow: none;
        }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .copyright {
            padding: 25px 0 0 0;
            font-size: 14px;
            border-top: 1px solid rgba(var(--bs-white-rgb), .1);
        }

        .footer .copyright a {
            color: rgba(var(--bs-white-rgb), .5);
        }

        .footer .copyright a:hover {
            color: var(--bs-white);
        }

        .footer .footer-menu a {
            margin-right: 15px;
            padding-right: 15px;
            border-right: 1px solid rgba(var(--bs-white-rgb), .1);
        }

        .footer .footer-menu a:last-child {
            margin-right: 0;
            padding-right: 0;
            border-right: none;
        }

        .footer {
            background-color: #111111 !important;
        }

        /* Footer Text Alignment */
        .footer h1,
        .footer h5,
        .footer p,
        .footer .btn-link {
            text-align: left !important;
        }

        .footer .d-flex {
            justify-content: flex-start !important;
        }

        .footer .btn-link {
            text-align: left !important;
            display: block !important;
        }

        /* Feature Cards Styling */
        .card {
            background: rgba(var(--bs-white-rgb), 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(var(--bs-white-rgb), 0.2);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--bs-primary);
        }

        .card .fa {
            color: var(--bs-primary);
            transition: all 0.3s ease;
        }
        
        .card:hover .fa {
            transform: scale(1.1);
            color: var(--bs-secondary);
        }

        /* Enhanced Form Styles with Pill Shapes and Glassmorphism */
        
        /* Glassmorphism Modal */
        .glassmorphism-modal {
            background: rgba(254, 254, 254, 0.885) !important;
            padding: 20px !important;
            max-height: 95vh !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            backface-visibility: visible !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-radius: 25px !important;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
            will-change: auto !important;
            transition: all 0.3s ease !important;
        }

        .glassmorphism-header {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            font-size: 1.5rem !important;
            font-weight: 600 !important;
            letter-spacing: -.5px !important;
            border-radius: 25px 25px 0 0 !important;
            color: black !important;
        }

        .glassmorphism-body {
            color: white !important;
            overflow-y: auto !important;
            overflow-x: hidden !important;
            max-height: calc(95vh - 200px) !important;
            transition: all 0.3s ease !important;
            /* glassmorphism-body scrollbar */
            &::-webkit-scrollbar {
                right: 10px;
                width: 3px;
                transition: all 0.3s ease !important;
            }
            &::-webkit-scrollbar-thumb {
                background: var(--bs-dark);
            }
            &::-webkit-scrollbar-track {
                background: var(--bs-light);
            }
        }

        .glassmorphism-footer {
            border-radius: 0 0 12px 12px !important;
        }

        /* Mobile-specific modal constraints */
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 0 !important;
                max-width: 100% !important;
                width: 100% !important;
                height: 95vh !important;
                display: flex !important;
                align-items: stretch !important;
            }

            .glassmorphism-modal {
                max-height: 95vh !important;
                height: 95vh !important;
                margin: 0 !important;
                border-radius: 0 !important;
                display: flex !important;
                flex-direction: column !important;
            }

            .glassmorphism-header {
                padding: 15px !important;
                font-size: 1.2rem !important;
                border-radius: 0 !important;
                flex-shrink: 0 !important;
            }

            .glassmorphism-body {
                flex: 1 !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
                max-height: 60vh !important;
                padding: 15px !important;
            }

            .glassmorphism-footer {
                padding: 12px 15px !important;
                border-radius: 0 !important;
                flex-shrink: 0 !important;
                position: relative !important;
                bottom: 0 !important;
                width: 100% !important;
                z-index: 1000 !important;
            }

            .modal-content {
                height: 95vh !important;
                border-radius: 0 !important;
                display: flex !important;
                flex-direction: column !important;
            }

        

            /* Reduce progress indicator size on mobile */
            .progress-indicator {
                margin-bottom: 15px !important;
            }

            .step-counter,
            .progress-percentage {
                font-size: 0.85rem !important;
            }

            .progress-time {
                font-size: 0.75rem !important;
            }

            .step {
                min-height: 30px !important;
                min-width: 100px !important;
                padding: 8px 12px !important;
                font-size: 0.75rem !important;
            }

            .step i {
                font-size: 0.85rem !important;
            }

            /* Ensure buttons are visible and properly sized on mobile */
            .modal-footer .btn {
                font-size: 0.85rem !important;
                padding: 10px 16px !important;
            }

            .modal-footer .btn i {
                font-size: 0.85rem !important;
            }
        }

        /* Resume Dialog Styling */
        .resume-content {
            padding: 1rem 0;
        }

        .resume-icon {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .resume-info {
            background: rgba(var(--bs-primary-rgb), 0.1);
            border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
            border-radius: 12px;
        }

        /* Hero-style outline button for resume dialog */
        .resume-dialog .btn-outline-primary.pill-btn {
            font-size: 0.8rem !important;
            padding: 0.8rem 1.2rem !important;
            border-radius: 1.2rem !important;
            font-weight: 500 !important;
            border: 1.5px solid var(--bs-dark) !important;
            color: var(--bs-dark) !important;
            background: transparent !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            transition: all 0.3s ease !important;
        }

        .resume-dialog .btn-outline-primary.pill-btn:hover {
            background: var(--bs-dark) !important;
            color: white !important;
            transform: scale(1.05) !important;
            box-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5)!important;
        }

        .resume-dialog .btn-primary.pill-btn {
            font-size: 0.8rem !important;
            padding: 0.8rem 1.2rem !important;
            border-radius: 1.2rem !important;
            font-weight: 500 !important;
            border: 1.5px solid var(--bs-dark) !important;
            color: var(--bs-dark) !important;
            background: transparent !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            transition: all 0.3s ease !important;
        }

        .resume-dialog .btn-primary.pill-btn:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5)!important;
        }

        /* Header resume button styling - 30% smaller */
        .modal-header #resumeButton {
            font-size: 0.8rem !important;
            padding: 0.8rem 1.2rem !important;
            border-radius: 1.2rem !important;
            font-weight: 500 !important;
            border: 1.5px solid var(--bs-dark) !important;
            color: var(--bs-dark) !important;
            background: transparent !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            transition: all 0.3s ease !important;
        }

        .modal-header #resumeButton:hover {
            background: var(--bs-dark) !important;
            color: white !important;
            transform: scale(1.05) !important;
            box-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5)!important;
        }

        /* Modal controls horizontal layout */
        .modal-controls {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
        }

        /* Modal footer button alignment */
        .modal-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 0.75rem;
        }

        .modal-footer .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* Initial button visibility - hide Previous and Submit on load */
        .modal-footer #prevStep {
            display: none;
        }

        .modal-footer #submitForm {
            display: none;
        }

        /* Pill-shaped Inputs and Buttons */
        .pill-input {
            border-radius: 25px !important;
            border: 2px solid rgba(255, 255, 255, 0.5) !important;
            background: rgba(211, 211, 211, 0.784);           
            color: black !important;
            padding: 15px 25px !important;
            transition: all 0.3s ease !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
        }

        /* Mobile Input Field Adjustments */
        @media (max-width: 768px) {
            .pill-input {
                font-size: 14px !important;
                padding: 12px 20px !important;
            }
            
            .pill-input::placeholder {
                font-size: 14px !important;
                padding-left: 15px !important;
            }
            
            .form-control.pill-input {
                padding-left: 20px !important;
            }
            
        }

        /* Ensure dropdown indicators are visible */
        .form-select.pill-input {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
            background-repeat: no-repeat !important;
            background-position: right 12px center !important;
            background-size: 16px 12px !important;
            padding-right: 40px !important;
        }

        .form-select.pill-input:focus {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23007bff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
        }

        .pill-input:focus {
            border-color: var(--bs-white) !important;
            background: rgba(11, 11, 11, 0.784);
            color: white !important;            
            font-weight: 650 !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25) !important;
        }

        .pill-input::placeholder {
            color: var(--bs-dark) !important;
            padding-left: 15px !important;
        }

        .pill-input:focus::placeholder {
            color: white !important;
            padding-left: 15px !important;
        }

        .pill-btn {
            border-radius: 25px !important;
            padding: 12px 24px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            border: 2px solid transparent !important;
        }

        .pill-btn:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 0 5px rgba(var(--bs-primary-rgb), 0.5)!important;
        }

        /* Enhanced Form Steps Progress Indicator */
        .progress-indicator {
            margin-bottom: 2rem;
        }

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

        .progress-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .step-counter {
            font-weight: 600;
            color: var(--bs-dark);
            font-size: 1.1rem;
        }

        .progress-percentage {
            background: rgba(var(--bs-secondary-rgb), 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            backface-visibility: visible;
            border: 1px solid rgba(var(--bs-dark-rgb), 0.2);
            box-shadow: 0 0 5px rgba(var(--bs-dark), 0.5);
            color: white;
            text-shadow: 0 0 2px rgba(var(--bs-dark-rgb), 0.85);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .progress-time {
            color: #535557;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .progress-bar-container {
            margin-bottom: 1.5rem;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            backface-visibility: visible;
            border: 1px solid rgba(var(--bs-dark-rgb), 0.2);
            box-shadow: 0 0 5px rgba(var(--bs-dark), 0.5);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--bs-primary), var(--bs-dark));
            border-radius: 4px;
            transition: width 0.5s ease;
            width: 33.33%;
        }

        .progress-fill.step-1 { width: 33.33%; }
        .progress-fill.step-2 { width: 66.66%; }
        .progress-fill.step-3 { width: 100%; }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .progress-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            border-radius: 10px;
            background: rgba(163, 163, 163, 0.134);
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: row;
            align-items: center;
            border-radius: 25px;
            color: var(--bs-dark);
            min-width: 150px;
            min-height: 35px;
            padding: 10px 18px;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .step.active {
            color:  var(--bs-secondary) !important;
            text-shadow: 1px 1px 1px var(--bs-light);
            background: rgba(235, 235, 235, 0.99);
        }

        .step.completed {
            color: rgb(67, 111, 1);            
        }

        .step i {
            font-size: 1rem !important;
            margin-right: 15px !important;
        }

        .step span {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            font-size: 1rem !important;
            letter-spacing: -.5px;
            font-weight: 600;
        }

        /* Form Steps */
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-title {
            color: white !important;
            font-weight: 600 !important;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            font-size: .875rem !important;
            letter-spacing: -.5px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        /* Form Labels */
        .form-label {
            background: transparent !important;
            font-weight: 700 !important;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            font-size: .75rem !important;
            letter-spacing: -.5px !important;
            padding: 6px 10px !important;
            box-shadow: inset 0 0 .6px rgba(0, 0, 0, 0.755) !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            border-radius: 18px !important;
            border: 2px solid rgba(180, 180, 180, 0.84) !important;
            color: rgba(51, 51, 51, 0.84) !important;
            margin-bottom: 6px !important;
        }

        .form-label i {
            color: var(--bs-dark) !important;
            margin-right: 15px !important;
        }

        /* Checkbox Groups */
        .checkbox-group {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }

        .form-check {
            color: var(--bs-light);
            background: var(--bs-dark);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 15px 15px 60px;
            border: 1px solid rgba(225, 225, 225, 0.752);
            transform: scale(1);
            transition: all 0.3s ease;
            display: block;
            position: relative;
            min-height: 50px;
        }

        .form-check:hover {
            transform: scale(1.05);
        
        }

        .form-check-input {
            border-radius: 50% !important;
            width: 25px !important;
            height: 25px !important;
            border: 2px solid rgba(148, 148, 148, 0.8) !important;
            background: white !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            flex-shrink: 0;
            margin: 0 !important;
            position: relative;
            z-index: 2;
        }

        .form-check-input:checked {
            background-color: var(--bs-secondary) !important;
            border-color: var(--bs-secondary) !important;
            color: white !important;
            text-shadow: 0 0 1px var(--bs-dark);
        }

        .form-check-input:checked::after {
            content: "✓" !important;
            color: white !important;
            text-shadow: 0 0 1px var(--bs-dark);
            font-weight: bold !important;
            font-size: 18px !important;
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            line-height: 1 !important;
        }

        .form-check-label {
            color: white !important;
            font-weight: 500 !important;
            margin: 0 !important;
            flex: 1;
            line-height: 1.4;
            padding-left: 0 !important;
        }

        .form-check-label i {
            color: var(--bs-dark) !important;
        }

        /* Ensure radio buttons are properly contained within form-check */
        .form-check .form-check-input {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
        }

        .form-check .form-check-label {
            padding-left: 0;
            display: block;
            width: 100%;
            margin-left: 0;
        }

        /* Consent Section */
        .consent-section {
            color: var(--bs-dark) !important;            
            border-radius: 5px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .consent-section h6 {
            color: black !important;
            font-weight: 600 !important;
        }


/* Better positioning for select elements */
.input-group select {
    padding-right: 20px !important;
}

/* Dashboard Modal Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.info-card-title {
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 123, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
    min-width: 140px;
}

.info-value {
    color: #333;
    text-align: right;
    flex: 1;
}

.info-value a {
    color: #007bff;
    text-decoration: none;
}

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

/* Pill-shaped badges */
.pill-badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Compact Table Styles */
.table-compact {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.table-compact th {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    color: #495057;
}

.table-compact td {
    padding: 0.5rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

/* Column Widths */
.col-name {
    width: 20%;
    min-width: 150px;
}

.col-email {
    width: 25%;
    min-width: 180px;
}

.col-type {
    width: 12%;
    min-width: 80px;
}

.col-location {
    width: 18%;
    min-width: 120px;
}

.col-date {
    width: 15%;
    min-width: 100px;
}

.col-actions {
    width: 10%;
    min-width: 80px;
    text-align: center;
}

/* Compact Avatar */
.avatar-xs {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
}

/* Text Truncation */
.name-text,
.email-text,
.location-text,
.date-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.name-cell {
    min-width: 0;
    flex: 1;
}

/* Compact Badges */
.badge-sm {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

/* Action Dropdown */
.dropdown-toggle {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.dropdown-toggle:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.dropdown-toggle:focus {
    box-shadow: none;
    background-color: #f8f9fa;
}

.dropdown-menu {
    font-size: 0.8rem;
    min-width: 140px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Table Responsive Improvements */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Hover Effects */
.table-compact tbody tr:hover {
    background-color: #f8f9fa;
}

/* Compact Table Headers */
.table-compact thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Pagination Improvements */
.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:last-child .page-link {
    border-radius: 0.25rem;
}

/* Search Loading Indicator */
.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    z-index: 10;
}

/* Dashboard Card Padding */
.data-table {
    padding: 1.5rem;
}

.data-table .p-3 {
    padding: 1.5rem !important;
}

/* Form Select Small */
.form-select-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

/* Header Actions Alignment */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn {
    min-height: 60px;
    padding: 0.75rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: -0.5px;
    font-weight: 500;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: auto;
}

.header-actions .btn i {
    font-size: 1.2rem;
}

.header-actions .dropdown-toggle::after {
    margin-left: 0.5rem;
    font-size: 0.7rem;
}

/* Ensure consistent button heights */
.btn-dashboard {
    height: 38px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    border-radius: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-width: auto !important;
}

.btn-dashboard:hover, .btn-dashboard-outline:hover {
    transform: scale(1.05);
}

.btn-dashboard-outline {
    border: 1px solid var(--bs-secondary) !important;
    text-shadow: 0 0 .4px rgba(0, 0, 0, 0.5);
    color: var(--bs-secondary);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    background-color: transparent !important;
    transition: all 0.3s ease;
    height: 38px !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        border-radius: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        min-width: auto !important;
}

/* Dropdown menu improvements */
.dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 0.5rem;
}

        /* Loading States */
        .btn.loading {
            position: relative;
            color: transparent !important;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Desktop Hero Buttons */
        .hero-header .mt-4 {
            display: flex !important;
            flex-direction: row !important;
            gap: 1rem !important;
            flex-wrap: nowrap !important;
        }

        .hero-header .btn-lg {
            flex: 1 !important;
            min-width: 0 !important;
        }

        .hero-header .btn {
            flex: 1 !important;
            min-width: 140px !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .progress-steps {
                flex-direction: row;
                gap: 10px;
                justify-content: center;
            }

            .progress-steps::before {
                display: none;
            }

            .step {
                width: 50px;
                height: 50px;
                min-width: 50px;
                flex-direction: column;
                padding: 8px;
            }

            .step span {
                display: none;
            }

            .step i {
                font-size: 1.2rem !important;
                margin-right: 0 !important;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .glassmorphism-modal {
                margin: 10px !important;
            }

            /* Mobile hero buttons */
            .hero-header .btn-lg {
                font-size: 0.875rem !important;
                padding: 0.75rem 1.25rem !important;
                margin-bottom: 0.5rem !important;
                flex: 1 !important;
                min-width: 0 !important;
            }

            .hero-header .mt-4 {
                display: flex !important;
                flex-direction: row !important;
                gap: 0.75rem !important;
                flex-wrap: nowrap !important;
            }

            .hero-header .btn {
                flex: 1 !important;
                min-width: 140px !important;
            }
        }


        /* Modal Backdrop */
        .modal-backdrop {
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(5px) !important;
            -webkit-backdrop-filter: blur(5px) !important;
            overflow: hidden !important;
            /*modal-backdrop hide scrollbar*/
            scrollbar-width: none !important;
            -ms-overflow-style: none !important;
            &::-webkit-scrollbar {
                display: none !important;
            }
        }

        /* ROI Calculator Live Update Animation */
        .roi-result {
            transition: all 0.3s ease;
        }

        .roi-result.updating {
            transform: scale(1.02);
            color: var(--bs-primary);
        }

        .roi-result.updated {
            animation: highlightUpdate 0.6s ease;
        }

        @keyframes highlightUpdate {
            0% { 
                background-color: rgba(255, 211, 0, 0.2);
                transform: scale(1.02);
            }
            50% { 
                background-color: rgba(255, 211, 0, 0.1);
                transform: scale(1.01);
            }
            100% { 
                background-color: transparent;
                transform: scale(1);
            }
        }

        /* Business Phone Input Group Styling */
        .input-group-text.pill-input {
            border: 2px solid rgba(255, 255, 255, 0.5) !important;
            background: rgba(211, 211, 211, 0.784) !important;
            color: black !important;
            font-weight: bold !important;
            padding: 15px 20px 15px 25px !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
        }

        .input-group .form-control.pill-input {
            border-left: none !important;
            padding-left: 10x !important;
        }

        .input-group .form-control.pill-input:focus {
            border-left: none !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25) !important;
        }

        /* Mobile Business Phone Input Group Adjustments */
        @media (max-width: 768px) {
            .input-group-text.pill-input {
                padding: 12px 15px 12px 20px !important;
                font-size: 14px !important;
            }
            
            .input-group .form-control.pill-input {
                padding-left: 10px !important;
                font-size: 14px !important;
            }
            
            .input-group .form-control.pill-input::placeholder {
                font-size: 14px !important;
                padding-left: 5px !important;
            }
        }

        /* Button Text Vertical Alignment */
        .btn {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
        }

        .btn a {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            width: 100% !important;
            height: 100% !important;
        }

        /* Searchable Dropdown Styles */
        .searchable-dropdown-container {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        /* Country location dropdown - 50% width */
        select[name="country"] + .searchable-dropdown-container {
            width: 50%;
        }

        /* Country code dropdown - 100% width */
        select[name="country_code"] + .searchable-dropdown-container,
        #countryCodeSelect + .searchable-dropdown-container {
            width: 100%;
        }

        .searchable-dropdown-input {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px !important;
            padding: 15px 25px !important;
            border: 2px solid rgba(180, 180, 180, 0.84);
            border-radius: 30px;
            background: rgba(211, 211, 211, 0.784);
            color: rgba(51, 51, 51, 0.84);
            font-weight: 600 !important;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
            letter-spacing: -0.5px !important;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .searchable-dropdown-input:hover {
            border-color: var(--bs-primary);
            background: rgba(255, 255, 255, 0.9);
        }

        .searchable-dropdown-input.active {
            border-color: var(--bs-primary);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25);
        }

        .selected-text {
            flex: 1;
            font-weight: 500;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            color: var(--bs-dark);
        }

        .dropdown-arrow.rotated {
            transform: rotate(180deg);
        }

        .searchable-dropdown-menu {
            position: relative;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid var(--bs-primary);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 99999;
            max-height: 200px;
            overflow: hidden;
            margin-top: 4px;
        }

        .search-input-container {
            position: relative;
            padding: 12px;
            border-bottom: 1px solid #e9ecef;
        }

        .search-input {
            width: 100%;
            padding: 8px 35px 8px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 13px;
            outline: none;
        }

        .search-input:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 0.2rem rgba(255, 211, 0, 0.25);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
        }

        .dropdown-options {
            max-height: 150px;
            overflow-y: auto;
                        /* glassmorphism-body scrollbar */
            &::-webkit-scrollbar {
                width: 3px;
            }
            &::-webkit-scrollbar-thumb {
                background: var(--bs-dark);
            }
            &::-webkit-scrollbar-track {
                background: var(--bs-light);
            }
        }

        .dropdown-option {
            padding: 8px 16px;
            cursor: pointer;
            transition: background-color 0.2s ease, opacity 0.3s ease;
            border-bottom: 1px solid #f8f9fa;
            font-size: 12px;
            color: #333;
            min-height: 40px;
            box-sizing: border-box;
            opacity: 0.7;
        }

        .dropdown-option.loaded {
            opacity: 1;
        }

        /* Virtual scrolling support */
        .virtual-scroll-spacer {
            position: relative;
            width: 100%;
        }

        .virtual-scroll-content {
            width: 100%;
        }

        .dropdown-option:hover,
        .dropdown-option.highlighted {
            background-color: var(--bs-primary);
            color: white;
        }

        .dropdown-option.recent {
            background-color: #fff3cd;
            border-left: 3px solid #ffc107;
            font-weight: 600;
        }

        .dropdown-option.popular {
            background-color: #d1ecf1;
            border-left: 3px solid #0dcaf0;
            font-weight: 500;
        }

        .dropdown-option.recent:hover,
        .dropdown-option.popular:hover {
            background-color: var(--bs-primary);
            color: white;
            border-left-color: var(--bs-primary);
        }

        .dropdown-option:last-child {
            border-bottom: none;
        }

        .no-results {
            padding: 20px;
            text-align: center;
            color: #6c757d;
            font-style: italic;
        }

        /* Modal-specific dropdown positioning */
        .modal .searchable-dropdown-container {
            position: relative;
            z-index: 1050;
        }

        .modal .searchable-dropdown-menu {
            position: absolute;
            top: calc(100% - 20px);
            left: 0;
            right: 0;
            z-index: 99999;
            max-height: 180px;
        }

        .modal .dropdown-options {
            max-height: 120px;
        }

        /* Ensure form inputs don't interfere with dropdowns */
        .modal .form-control,
        .modal .form-select {
            position: relative;
            z-index: 1;
        }

        .modal .searchable-dropdown-container {
            z-index: 10;
        }

        /* Ensure dropdown options appear above all form elements */
        .modal .dropdown-options {
            position: relative;
            z-index: 100000;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .searchable-dropdown-input {
                padding: 12px 16px;
                font-size: 14px;
            }

            .searchable-dropdown-menu {
                max-height: 200px;
            }

            .dropdown-options {
                max-height: 120px;
            }

            .dropdown-option {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

    /* Dark Mode Support */
    [data-theme="dark"] .searchable-dropdown-input {
        background: rgba(40, 40, 40, 0.9);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    [data-theme="dark"] .searchable-dropdown-input:hover {
        background: rgba(60, 60, 60, 0.9);
        border-color: var(--bs-primary);
    }

    [data-theme="dark"] .searchable-dropdown-input.active {
        background: rgba(80, 80, 80, 0.9);
        border-color: var(--bs-primary);
    }

    [data-theme="dark"] .searchable-dropdown-menu {
        background: #2d2d2d;
        border-color: var(--bs-primary);
    }

    [data-theme="dark"] .search-input {
        background: #3d3d3d;
        color: #ffffff;
        border-color: #555;
    }

    [data-theme="dark"] .search-input:focus {
        background: #4d4d4d;
        border-color: var(--bs-primary);
    }

    [data-theme="dark"] .dropdown-option {
        color: #ffffff;
        border-bottom-color: #444;
    }

    [data-theme="dark"] .dropdown-option:hover,
    [data-theme="dark"] .dropdown-option.highlighted {
        background-color: var(--bs-primary);
        color: white;
    }

    [data-theme="dark"] .no-results {
        color: #aaa;
    }

    /* Dark mode form elements */
    [data-theme="dark"] .form-control.pill-input {
        background: rgba(40, 40, 40, 0.9);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    [data-theme="dark"] .form-control.pill-input:focus {
        background: rgba(60, 60, 60, 0.9);
        border-color: var(--bs-primary);
        color: #ffffff;
    }

    [data-theme="dark"] .form-control.pill-input::placeholder {
        color: #aaa;
    }

    [data-theme="dark"] .form-select.pill-input {
        background: rgba(40, 40, 40, 0.9);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }

    [data-theme="dark"] .form-select.pill-input:focus {
        background: rgba(60, 60, 60, 0.9);
        border-color: var(--bs-primary);
    }

    [data-theme="dark"] .form-label {
        color: #ffffff;
    }

    [data-theme="dark"] .invalid-feedback {
        color: #ff6b6b;
    }

    [data-theme="dark"] .valid-feedback {
        color: #51cf66;
    }

    /* Dark mode progress indicator */
    [data-theme="dark"] .progress-bar {
        background: rgba(255, 255, 255, 0.1);
    }

    [data-theme="dark"] .step-counter {
        color: var(--bs-primary);
    }

    [data-theme="dark"] .progress-time {
        color: #aaa;
    }