        :root {
            --ku-blue: #00ADEF;
            --ku-navy: #0A2463;
            --ku-light-blue: #33BFEF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .hero-section {
            background: linear-gradient(135deg, var(--ku-blue) 0%, var(--ku-navy) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2300ADEF" width="1200" height="600"/><path fill="%230A2463" opacity="0.5" d="M0 300L50 325L100 300L150 275L200 300L250 325L300 300L350 275L400 300L450 325L500 300L550 275L600 300L650 325L700 300L750 275L800 300L850 325L900 300L950 275L1000 300L1050 325L1100 300L1150 275L1200 300V600H0V300Z"/></svg>');
            background-size: cover;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .app-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 173, 239, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            height: 100%;
            animation: fadeInUp 0.8s ease;
        }

        .app-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 173, 239, 0.3);
            border-color: var(--ku-blue);
        }

        .app-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--ku-blue), var(--ku-navy));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 173, 239, 0.3);
        }

        .app-card:hover .app-icon {
            transform: rotate(5deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(0, 173, 239, 0.4);
        }

        .btn-access {
            background: linear-gradient(135deg, var(--ku-blue), var(--ku-navy));
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 173, 239, 0.3);
        }

        .btn-access:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 173, 239, 0.4);
            color: white;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--ku-navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--ku-blue), var(--ku-navy));
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
        }


        /* Add these responsive fixes to your CSS */

        /* Hide top contact/social bar on mobile and tablets, show only on desktop */
        @media (max-width: 991px) {
            .container-fluid.position-relative.overflow-hidden {
                display: none !important;
            }
        }

        /* Sticky Navbar Styles */
        .navbar-container {
            position: sticky;
            top: 0;
            z-index: 1020;
            transition: all 0.3s ease;
        }

        .navbar-container.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Adjust body padding to prevent content jump */
        body {
            padding-top: 0;
        }

        /* Ensure navbar toggler stays on the right */
        .navbar-toggler {
            margin-left: auto;
        }

        /* Control logo size on all screens */
        .navbar-brand img {
            height: 50px !important;
            max-height: 50px;
        }

        /* Tablet breakpoint - collapse earlier */
        @media (max-width: 1199px) {
            .navbar-brand img {
                height: 45px !important;
            }
        }

        @media (max-width: 991px) {

            /* Force collapse on tablets and below */
            .navbar-collapse {
                flex-basis: 100%;
            }

            .navbar-brand img {
                height: 50px !important;
            }

            /* Ensure toggler is always visible and on the right */
            .navbar-toggler {
                display: block !important;
                order: 3;
            }

            /* Keep logo on the left */
            .navbar-brand {
                order: 1;
            }

            /* Collapsed menu styling */
            .navbar-collapse {
                order: 4;
                width: 100%;
            }

            .navbar-nav {
                margin-top: 1rem;
            }

            .nav-link {
                padding: 0.75rem 1rem !important;
                margin: 0.25rem 0 !important;
            }

            /* Login button in collapsed menu */
            .btn[href*="signup"] {
                margin: 1rem 0 !important;
                width: 100%;
            }
        }

        /* Medium tablets */
        @media (max-width: 768px) {
            .navbar-brand img {
                height: 45px !important;
            }

            .navbar {
                padding: 0.75rem 1rem !important;
            }
        }

        /* Small mobile */
        @media (max-width: 576px) {
            .navbar-brand img {
                height: 40px !important;
            }

            .navbar {
                padding: 0.5rem 0.75rem !important;
            }

            /* Top bar responsiveness */
            .container-fluid .row .col-lg-8 .d-inline-flex {
                flex-direction: column;
                gap: 0.5rem !important;
                align-items: flex-start !important;
            }

            .container-fluid .row .col-lg-4 {
                margin-top: 0.5rem;
            }
        }

        /* Force navbar to collapse at 991px and below */
        @media (min-width: 992px) and (max-width: 1199px) {

            /* If items still don't fit, reduce navbar padding */
            .navbar-nav {
                gap: 0 !important;
            }

            .nav-link {
                padding: 0.5rem 0.75rem !important;
                font-size: 0.9rem;
            }

            .btn[href*="signup"] {
                padding: 0.5rem 1rem !important;
                font-size: 0.9rem;
                margin-left: 0.5rem !important;
            }
        }

        @media (max-width: 991px) {
            .navbar {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
        }


        .auth-section {
            min-height: 100vh;
            background: #f8fafc;
            position: relative;
        }

        .auth-visual-wrapper {
            height: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #8496d7 0%, #2F438F 50%, #B8C2EA 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 4rem;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float-orb 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #38bdf8, transparent);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #7dd3fc, transparent);
            bottom: -50px;
            left: -50px;
            animation-delay: 7s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, #bae6fd, transparent);
            top: 50%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes float-orb {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        .visual-content {
            position: relative;
            z-index: 2;
        }

        .badge-pill {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .text-gradient {
            background: linear-gradient(135deg, #bae6fd 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-white-50 {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .services-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .service-bubble {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.6rem 1rem;
            border-radius: 50px;
            color: white;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: bubble-pop 0.5s ease-out backwards;
            transition: all 0.3s ease;
        }

        .service-bubble:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .service-bubble i {
            font-size: 1rem;
        }

        @keyframes bubble-pop {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .stats-row {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem 2rem;
            border-radius: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.3);
        }


        .animate-slide-up {
            animation: slideUp 0.8s ease-out backwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .auth-form-wrapper {
            max-width: 480px;
            width: 100%;
            padding: 3rem 2rem;
        }

        .welcome-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #8496d7, #2F438F);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
        }

        .social-btn {
            border: 2px solid #e5e7eb;
            background: white;
            padding: 0.85rem 1.5rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-weight: 600;
            color: #374151;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-btn:hover {
            border-color: #d1d5db;
            background: #f9fafb;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .separator {
            position: relative;
            text-align: center;
        }

        .separator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e5e7eb;
        }

        .separator span {
            position: relative;
            background: #f8fafc;
            padding: 0 1rem;
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .modern-input {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 1rem 1rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .modern-input:focus {
            border-color: #8496d7;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
            background: white;
        }

        .form-floating>label {
            padding: 1rem 1rem;
            color: #6b7280;
        }

        .custom-checkbox .form-check-input {
            width: 1.15rem;
            height: 1.15rem;
            border: 2px solid #d1d5db;
            border-radius: 6px;
        }

        .custom-checkbox .form-check-input:checked {
            background-color: #8496d7;
            border-color: #8496d7;
        }

        .custom-checkbox .form-check-label {
            font-size: 0.9rem;
            color: #4b5563;
            padding-left: 0.5rem;
        }

        .forgot-link {
            color: #8496d7;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .forgot-link:hover {
            color: #2F438F;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #8496d7 0%, #2F438F 100%);
            border: none;
            padding: 0.95rem 1.5rem;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
        }

        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #2F438F 0%, #B8C2EA 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
        }

        .signup-prompt {
            font-size: 0.9rem;
            color: #6b7280;
        }

        .signup-prompt a {
            color: #8496d7;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-prompt a:hover {
            color: #2F438F;
        }

        .modern-modal {
            border-radius: 24px;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .modern-modal .modal-header {
            padding: 2rem 2rem 1rem;
        }

        .modern-modal .modal-body {
            padding: 1rem 2rem 2rem;
        }

        @media (max-width: 991px) {
            .auth-section {
                min-height: auto;
            }

            .auth-form-wrapper {
                padding: 2rem 1.5rem;
            }
        }

        .page-header-banner {
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
            min-height: 260px;
        }

        .banner-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8496d7 0%, #004aad 100%);
            z-index: 1;
        }

        .float-circle {
            position: absolute;
            border-radius: 50%;
        }

        .float-circle-1 {
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .float-circle-2 {
            bottom: -80px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            animation: float 8s ease-in-out infinite reverse;
        }

        .float-circle-3 {
            top: 50%;
            left: 30%;
            width: 150px;
            height: 150px;
            background: rgba(255, 215, 0, 0.15);
            animation: pulse 4s ease-in-out infinite;
        }

        .dot-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
        }

        .banner-content {
            position: relative;
            padding-top: 3rem;
            padding-bottom: 3rem;
            z-index: 2;
        }

        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 14px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin-right: 1rem;
            animation: zoomIn 0.8s ease-out;
        }

        .icon-check {
            font-size: 1.8rem;
            color: #ffd700;
        }

        .banner-title {
            font-size: 2.5rem;
            color: white;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.8s ease-out;
        }

        .banner-subtitle {
            color: white;
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
            animation: fadeInUp 1s ease-out;
        }

        .breadcrumb-nav {
            animation: fadeInUp 1s ease-out;
        }

        .breadcrumb {
            background: transparent;
        }

        .breadcrumb-link {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .breadcrumb-link:hover {
            opacity: 1;
            transform: translateX(-2px);
        }

        .breadcrumb-separator {
            color: white;
            opacity: 0.6;
            margin: 0 0.5rem;
        }

        .breadcrumb-separator i {
            font-size: 0.75rem;
        }

        .breadcrumb-active {
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            opacity: 1;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            content: none;
        }

        .wave-bottom {
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 2;
        }

        .wave-bottom svg {
            display: block;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.15;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.25;
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        @media (max-width: 768px) {
            .page-header-banner {
                min-height: 240px;
                margin-bottom: 35px;
            }

            .banner-title {
                font-size: 2rem;
            }

            .banner-subtitle {
                font-size: 0.9rem;
            }

            .banner-content {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .icon-box {
                width: 50px;
                height: 50px;
            }

            .icon-check {
                font-size: 1.5rem;
            }
        }