         /* Updated color scheme to match the logo */
        :root {
            --primary-color: #2a5c8d;
            /* Dark blue from logo */
            --secondary-color: #4a8cbf;
            /* Medium blue */
            --accent-color: #e8a735;
            /* Gold/yellow from logo */
            --dark-color: #1a3a5a;
            /* Darker blue */
            --light-color: #f8f9fa;
        }

        .logo {
            max-height: 90px;
            height: auto;
            width: auto;
        }


        .display-4 {
            color: #F79C31;
        }

        @media (max-width: 768px) {
            .logo {
                max-height: 80px;
                /* Smaller on tablets/mobiles */
            }
        }

        @media (max-width: 576px) {
            .logo {
                max-height: 60px;
                /* Even smaller on small phones */
            }
        }

        /* Navbar styling */
        .navbar {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            /* Using primary color with opacity */
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9);
        }

        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link:focus {
            color: white;
        }

        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--accent-color) !important;
            font-weight: 600;
        }

        /* Hero section background */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
        }

        /* Buttons */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }

        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--dark-color);
        }

        /* Section headings */
        .section-title {
            color: var(--primary-color) !important;
        }

        /* Contact section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: #2F3592;
        }

        .footer-title {
            color: var(--accent-color);
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-link:hover {
            color: var(--accent-color);
            text-decoration: none;
        }

        /* Keep all existing animations and functionality styles */
        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-link::after {
            background: var(--accent-color);
        }

        /* Form styling improvements */
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.2) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
            box-shadow: #2F3592 !important;
            color: rgb(0, 0, 0) !important;
        }

        /* Accessibility improvements */
        .btn:focus,
        .form-control:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(232, 167, 53, 0.3);
            /* Using accent color */
        }

        /* Responsive improvements */
        @media (max-width: 991px) {
            .navbar-nav .nav-link::after {
                display: none;
            }

            .hero-buttons {
                text-align: center;
            }

            .hero-buttons .btn {
                display: block;
                margin: 0.5rem 0;
                width: 100%;
            }
        }

        /* Print styles */
        @media print {

            .navbar,
            .hero-section,
            .contact-section {
                display: none !important;
            }

            .section-padding {
                padding: 2rem 0;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }




        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="800" r="150" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="300" r="80" fill="rgba(255,255,255,0.1)"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-primary {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .btn-outline-light {
            border: 2px solid white;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature-description {
            color: var(--text-light);
            line-height: 1.6;
        }

        .stats-section {
            background: var(--bg-light);
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--text-dark);
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .services-section {
            background: var(--bg-light);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.3rem;
        }

        .contact-section {
            background: #ffffff;
            color: #2F3592;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .contact-info {
            background: #F79520;
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .footer {
            background: #2F3592;
            color: white;
            padding: 3rem 0 1rem;
        }




        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

        .values-section {
            background: white;
        }

        .value-item {
            text-align: center;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .feature-card {
                margin-bottom: 2rem;
            }
        }
    
        /* Authentication Dropdown Styles */
        .auth-dropdown {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px !important;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .auth-dropdown:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .auth-dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-top: 0.5rem;
            min-width: 200px;
        }

        .auth-dropdown-menu .dropdown-item {
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0.2rem 0.5rem;
        }

        .auth-dropdown-menu .dropdown-item:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateX(5px);
        }

        /* User Dropdown Styles */
        .user-dropdown {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px !important;
            padding: 0.4rem 1rem !important;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .user-dropdown:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        }

        .user-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            font-size: 1.2rem;
            color: white;
        }

        .user-name {
            font-weight: 500;
            color: white;
        }

        .user-dropdown-menu {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border: none;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
            min-width: 280px;
            padding: 1rem 0;
        }

        .user-dropdown-menu .dropdown-header {
            padding: 1rem 1.5rem 0.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom: 1px solid rgba(102, 126, 234, 0.1);
            margin-bottom: 0.5rem;
        }

        .user-dropdown-menu .dropdown-item {
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0.2rem 0.5rem;
            display: flex;
            align-items: center;
        }

        .user-dropdown-menu .dropdown-item:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateX(5px);
        }

        .user-dropdown-menu .dropdown-item i {
            width: 20px;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 991px) {

            .user-dropdown,
            .auth-dropdown {
                border-radius: 8px !important;
                background: rgba(255, 255, 255, 0.1) !important;
                margin: 0.5rem 0;
            }

            .user-dropdown-menu,
            .auth-dropdown-menu {
                position: static !important;
                transform: none !important;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 8px;
                margin: 0.5rem 0;
            }

            .navbar-nav .dropdown-menu {
                border: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        /* Animation for dropdown appearance */
        @keyframes dropdownSlideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu.show {
            animation: dropdownSlideIn 0.3s ease-out;
        }
 

        /* Additional CSS for Blog App - Add to your existing style.css */

/* Blog-specific styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
}

/* Blog Cards */
.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.blog-card .card-img-top {
    border-radius: 0;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Blog Content Styling */
.blog-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: var(--dark-color);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h1 { font-size: 2.5rem; }
.blog-content h2 { font-size: 2rem; }
.blog-content h3 { font-size: 1.75rem; }
.blog-content h4 { font-size: 1.5rem; }

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content code {
    background-color: #f1f5f9;
    color: #dc2626;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-content pre {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-content th,
.blog-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.blog-content th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* Premium Badge */
.badge-warning {
    background-color: var(--accent-color);
    color: white;
}

/* Video Container */
.video-container {
    position: relative;
    margin: 2rem 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive iframe,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Attachment Styles */
.attachment-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.attachment-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.attachment-item .fas {
    color: var(--primary-color);
}

/* Sidebar */
.sidebar .card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar .card-header {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    border: none;
}

.related-post:hover {
    background-color: var(--light-color);
}

.related-thumb {
    flex-shrink: 0;
}

/* Form Styling */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-label i {
    margin-right: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Navigation Badges */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.badge-primary {
    background: var(--primary-color);
}

.badge-secondary {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-content h1 { font-size: 2rem; }
    .blog-content h2 { font-size: 1.75rem; }
    .blog-content h3 { font-size: 1.5rem; }
    .blog-content h4 { font-size: 1.25rem; }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .sidebar,
    .navbar,
    .btn,
    .video-container {
        display: none !important;
    }
    
    .blog-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .blog-content h1,
    .blog-content h2,
    .blog-content h3 {
        page-break-after: avoid;
    }
    
    .blog-content img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .blog-card {
        border: 2px solid var(--dark-color);
    }
    
    .btn-primary {
        background: var(--dark-color);
        border: 2px solid var(--dark-color);
    }
}



        /* Enhanced form control styling */
        .form-control {
            height: 45px !important;
            padding: 10px 15px !important;
            font-size: 15px !important;
            line-height: 1.5 !important;
            border-radius: 6px !important;
            border: 2px solid #e9ecef !important;
            transition: all 0.3s ease !important;
        }

        .form-control:focus {
            border-color: #007bff !important;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
            outline: none !important;
        }

        /* Select dropdown specific styling */
        select.form-control {
            cursor: pointer !important;
            background-position: right 12px center !important;
            background-size: 16px 12px !important;
            padding-right: 40px !important;
        }

        /* Form labels */
        .form-label {
            font-weight: 600 !important;
            color: #495057 !important;
            margin-bottom: 8px !important;
        }

   /* Hamburger menu styling */
.navbar-toggler {
    border: 2px solid #2206af !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 6, 175, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232206af' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}