
        :root {
            --primary-color: #ff7f00;
            --primary-dark: #e67300;
            --primary-light: #ffa940;
            --secondary-color: #6c757d;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
            --info-color: #17a2b8;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
            --border-radius: 0.75rem;
            --border-radius-sm: 0.5rem;
            --border-radius-lg: 1rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #ff7f00 0%, #ffa940 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated background particles */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(10px, -10px);
            }

            50% {
                transform: translate(-5px, 5px);
            }

            75% {
                transform: translate(-10px, -5px);
            }
        }

        .container {
            max-width: 1200px;
            position: relative;
            z-index: 1;
        }

        /* Enhanced Card Styling */
        .card {
            border: none;
            border-radius: var(--border-radius-lg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.98);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .card-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border-bottom: none;
            padding: 1.5rem 2rem;
            font-weight: 700;
            font-size: 1.3rem;
            position: relative;
            overflow: hidden;
        }

        .card-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .card-header i {
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .card-body {
            padding: 2rem;
        }

        /* Branch Info Card - Left Side */
        .branch-info-card {
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.1), rgba(255, 169, 64, 0.05));
            border-radius: var(--border-radius);
            padding: 2rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 127, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .branch-info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 127, 0, 0.1), transparent 60%);
            animation: rotateGlow 15s linear infinite;
        }

        @keyframes rotateGlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .branch-info-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 8px 24px rgba(255, 127, 0, 0.3);
            transform: scale(1.02);
        }

        .branch-name-display {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .branch-icon-large {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            animation: bounce 3s ease-in-out infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .branch-name-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .branch-subtitle {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Contact Information Styling - Right Side */
        .contact-info {
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            padding: 1rem 1.25rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.08), rgba(255, 169, 64, 0.04));
            border-radius: var(--border-radius-sm);
            border-left: 4px solid var(--primary-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .contact-info p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
            transition: width 0.3s ease;
        }

        .contact-info p:hover {
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.15), rgba(255, 169, 64, 0.1));
            transform: translateX(10px);
            box-shadow: 0 4px 16px rgba(255, 127, 0, 0.25);
            border-left-color: var(--primary-light);
        }

        .contact-info p:hover::before {
            width: 8px;
        }

        .contact-icon {
            font-size: 1rem;
            margin-right: 1rem;
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: rgba(255, 127, 0, 0.12);
            border-radius: 50%;
            flex-shrink: 0;
            transition: all 0.3s ease;
            line-height: 40px;
            padding: 0;
        }

        .contact-info p:hover .contact-icon {
            background: var(--primary-color);
            color: white;
            transform: rotate(360deg) scale(1.1);
        }

        .contact-info p a {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-info p:hover a {
            color: var(--primary-color);
        }

        /* Map Container */
        .map-container {
            height: 350px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            margin-top: 1.5rem;
            border: 3px solid rgba(255, 127, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: var(--border-radius);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .map-container:hover::before {
            opacity: 1;
        }

        .map-container:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Enhanced Tab Navigation */
        .nav-tabs {
            border-bottom: 3px solid rgba(255, 127, 0, 0.2);
            margin-bottom: 2rem;
            position: relative;
        }

        .nav-tabs::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            transition: all 0.3s ease;
            width: 0;
        }

        .nav-tabs:hover::after {
            width: 100%;
        }

        .nav-tabs .nav-link {
            border: none;
            border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
            padding: 1rem 2rem;
            font-weight: 600;
            color: var(--dark-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .nav-tabs .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            transition: width 0.3s ease;
        }

        .nav-tabs .nav-link:hover {
            background: rgba(255, 127, 0, 0.1);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .nav-tabs .nav-link:hover::before {
            width: 80%;
        }

        .nav-tabs .nav-link.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            box-shadow: 0 4px 12px rgba(255, 127, 0, 0.4);
            transform: translateY(-2px);
        }

        .nav-tabs .nav-link.active::before {
            width: 100%;
            background: white;
        }

        .nav-tabs .nav-link i {
            transition: transform 0.3s ease;
        }

        .nav-tabs .nav-link:hover i,
        .nav-tabs .nav-link.active i {
            transform: scale(1.2);
        }

        /* Alert Enhancements */
        .alert {
            border: none;
            border-radius: var(--border-radius);
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid;
        }

        .alert-info {
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.1), rgba(255, 169, 64, 0.05));
            border-left-color: var(--primary-color);
            color: var(--dark-color);
        }

        .login-cta-card {
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.12), rgba(255, 169, 64, 0.08));
            border: 2px solid rgba(255, 127, 0, 0.3);
            border-left: 6px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .login-cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 127, 0, 0.1), transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .login-cta-card h4 {
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }

        .login-cta-card p {
            position: relative;
            z-index: 1;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border: none;
            box-shadow: 0 4px 15px rgba(255, 127, 0, 0.4);
            padding: 1rem 3rem;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 127, 0, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1.02);
        }

        .btn-primary i {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover i {
            transform: translateX(5px);
        }

        /* Fade in animation for tabs */
        .tab-pane {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .card {
                border-radius: var(--border-radius);
            }

            .card-header {
                padding: 1rem 1.5rem;
                font-size: 1.1rem;
            }

            .card-body {
                padding: 1.5rem;
            }

            /* Branch card on mobile */
            .branch-info-card {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .branch-icon-large {
                font-size: 3rem;
            }

            .branch-name-title {
                font-size: 1.5rem;
            }

            .branch-subtitle {
                font-size: 0.9rem;
            }

            .contact-info {
                margin-top: 0;
            }

            .contact-info p {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }

            .contact-icon {
                font-size: 1rem;
                width: 35px;
                height: 35px;
                min-width: 35px;
                min-height: 35px;
            }

            .map-container {
                height: 300px;
            }

            .nav-tabs .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .btn-primary {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .card-body {
                padding: 1rem;
            }

            .contact-info p {
                flex-direction: row;
                padding: 0.75rem;
            }

            .contact-icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
                font-size: 0.9rem;
                margin-right: 0.75rem;
            }

            .map-container {
                height: 250px;
            }

            .nav-tabs .nav-link {
                padding: 0.6rem 0.8rem;
                font-size: 0.85rem;
            }
        }

        /* Page Header Section */
        .page-header {
            background: linear-gradient(135deg, rgba(255, 127, 0, 0.95), rgba(255, 169, 64, 0.9));
            padding: 3rem 0;
            margin-bottom: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
            opacity: 0.5;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            animation: slideInDown 0.6s ease-out;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin: 0;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

        .page-header i {
            margin-right: 0.5rem;
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 2rem 0;
                margin-bottom: 1.5rem;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .page-header p {
                font-size: 1rem;
            }
        }

        /* Dark mode support */
        [data-bs-theme="dark"] .card {
            background: rgba(33, 37, 41, 0.95);
            color: #f8f9fa;
        }

        [data-bs-theme="dark"] .contact-info p {
            background: rgba(255, 127, 0, 0.2);
            color: #f8f9fa;
        }


        /* Ripple animation */
        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
