        /********** 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;
        }

        :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;
            display: none;
            right: 45px;
            bottom: 45px;
            z-index: 99;
        }

        /*** 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;
            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;
        }

        /* 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;
            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;
        }

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

        /* 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;
        }

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

        .pill-input::placeholder {
            color: var(--bs-dark) !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: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        }

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

        .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: 12px;
            color: var(--bs-dark);
            min-width: 150px;
            min-height: 45px;
            padding: 16px 28px;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .step.active {
            color:  var(--bs-dark) !important;
            text-shadow: 0 0 .4px var(--bs-dark);
            background: rgba(235, 235, 235, 0.805);            
            box-shadow: 0 0 20px rgba(var(--bs-primary-rgb), 0.5);
            border: 2px solid rgba(var(--bs-dark-rgb), 0.6);
        }

        .step.completed {
background: rgba(4, 4, 4, 0.784);            
border-color: var(--bs-dark);
box-shadow: 0 0 10px var(--bs-success);
            color: white;
        }

        .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;
            border: 1px solid rgba(225, 225, 225, 0.752);
            transform: scale(1);
            transition: all 0.3s ease;
        }

        .form-check:hover {
            transform: scale(1.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateY(-2px);
        }

        .form-check-input {
            border-radius: 50% !important;
            width: 20px !important;
            height: 20px !important;
            border: 2px solid rgba(255, 255, 255, 0.1) !important;
            background: white !important;
        }

        .form-check-input:checked {
            color: var(--bs-dark);
            border-color: var(--bs-primary) !important;
        }

        .form-check-label {
            color: white !important;
            font-weight: 500 !important;
            margin-left: 10px !important;
        }

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

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

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

        /* Validation Styles */
        .invalid-feedback {
            display: block !important;
            color: var(--bs-secondary) !important;
                        text-shadow: 0 0 .4px var(--bs-dark);
                        font-size: 0.875rem !important;
            margin-top: 5px !important;
        }

        .invalid-feedback i {
            color: var(--bs-secondary) !important;
            text-shadow: 0 0 .4px var(--bs-dark);
        }

        .is-invalid {
            border-color: #ff6b6b !important;
background: rgba(211, 211, 211, 0.784);     }

        .is-valid {
            border-color: #51cf66 !important;
        background: rgba(211, 211, 211, 0.784);
        }

        /* Success/Error Icons */
        .input-group {
            position: relative;
        }

        .input-group .validation-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .validation-icon.valid {
            color: var(--bs-light);
            transition: all 0.3s ease;
        }

        .validation-icon.invalid {
            color: var(--bs-light);
        }

        /* Ensure select elements don't get validation icons */
        .input-group select + .validation-icon,
        .input-group .validation-icon:has(+ select),
        .form-select + .validation-icon,
        .form-select .validation-icon {
            display: none !important;
        }

        /* Remove any validation icons that might be inside select elements */
        .input-group:has(select) .validation-icon {
            display: none !important;
        }

        /* Additional rules to hide validation icons on select elements */
        .pill-input[type="select-one"] + .validation-icon,
        .form-select + .validation-icon,
        select.pill-input + .validation-icon,
        .input-group:has(.form-select) .validation-icon {
            display: none !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: 20px !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); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .progress-steps {
                flex-direction: column;
                gap: 20px;
            }

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

            .step {
                width: 50px;
                height: 50px;
            }

            .step span {
                font-size: 0.6rem;
            }

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

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


        /* Modal Backdrop */
        .modal-backdrop {
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(5px) !important;
            -webkit-backdrop-filter: blur(5px) !important;
        }