        /* Top Bar Styles */
        .top-bar {
            background: #2a7e33;
            color: white;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1001;
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2px 12rem;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .contact-item1 {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0rem;
            padding: 0.75rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            color: #fdfdfd;
            text-decoration: none;
        }

        .contact-item1:hover {
            background: rgba(255, 255, 255, 0.08);
            border-left-color: #4a90e2;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-link {
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: #ffd700;
            color: #2c5aa0;
            transform: translateY(-2px);
        }

        /* Header Styles - Updated */
        .header {
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 50px; /* Positioned below top bar */
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo img {
            height: auto;
            width: auto;
            max-width: 270px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 20px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-menu a:hover {
            color: #2c5aa0;
            background: rgba(44, 90, 160, 0.1);
        }

        .nav-menu a.active {
            color: #2c5aa0;
            background: rgba(44, 90, 160, 0.1);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: "▼";
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
            padding: 0.5rem 0;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            padding: 0.75rem 1.5rem;
            border-radius: 0;
            color: #333;
            font-weight: 400;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background: rgba(44, 90, 160, 0.1);
            border-left-color: #2c5aa0;
            padding-left: 2rem;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            body {
                padding-top: 70px; /* Reset to single header height */
            }

            /* Hide Top Bar on Mobile */
            .top-bar {
                display: none;
            }

            /* Header Mobile */
            .header {
                top: 0; /* Header starts at top on mobile */
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 120px; /* Adjusted for two-level header */
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                gap: 0;
                padding: 2rem 0;
                height: calc(100vh - 120px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu > li {
                margin: 0;
                width: 100%;
            }

            .nav-menu a {
                padding: 1rem 2rem;
                border-radius: 0;
                width: 100%;
                justify-content: center;
            }

            /* Mobile Dropdown Styles */
            .dropdown-menu {
                position: static;
                box-shadow: none;
                background: rgba(44, 90, 160, 0.05);
                border-radius: 0;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                min-width: 100%;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                padding: 0.75rem 3rem;
                font-size: 0.9rem;
                color: #666;
            }

            .dropdown-menu a:hover {
                background: rgba(44, 90, 160, 0.1);
                border-left: none;
                padding-left: 3rem;
            }

            /* Hide "Branches" text on mobile, show individual branches */
            .mobile-branch-items {
                display: block;
            }

            .desktop-branch-dropdown {
                display: none;
            }
        }

        /* Desktop: Hide individual branch items, show dropdown */
        @media (min-width: 769px) {
            .mobile-branch-items {
                display: none;
            }

            .desktop-branch-dropdown {
                display: block;
            }
        }

        /* Demo content */
        .demo-content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-content h1 {
            color: #333;
            margin-bottom: 1rem;
        }

        .demo-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }



/* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 3rem 0 1rem 0;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4a90e2, #74b9ff, #4a90e2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-top-row {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-row {
            display: contents;
        }

        .footer-section {
            position: relative;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            border-radius: 2px;
        }

        /* Logo Section */
        .footer-logo {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: auto;
            width: auto;
            max-width: 300px;
            filter: brightness(1.1);
        }

        .footer-section p {
            color: #bdc3c7;
            line-height: 1.7;
            text-align: justify;
        }

        /* Quick Links Styling */
        .quick-links {
            list-style: none;
            padding: 0;
        }

        .quick-links li {
            margin-bottom: 0.75rem;
            transition: transform 0.3s ease;
        }

        .quick-links li:hover {
            transform: translateX(5px);
        }

        .quick-links a {
            color: #bdc3c7;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }

        .quick-links a:hover {
            color: #4a90e2;
            padding-left: 1rem;
        }

        .quick-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 100%;
            background: rgba(74, 144, 226, 0.1);
            transition: width 0.3s ease;
            border-radius: 4px;
            z-index: -1;
        }

        .quick-links a:hover::before {
            width: 100%;
        }

        .quick-links i {
            color: #ffffff;
            width: 16px;
            text-align: center;
        }

        /* Contact Information Styling */
        .contact-list {
            list-style: none;
            padding: 0;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-left-color: #4a90e2;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contact-content {
            flex: 1;
        }

        .contact-label {
            font-weight: 600;
            color: #ecf0f1;
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }

        .contact-value {
            color: #bdc3c7;
            line-height: 1.4;
        }

        .contact-value a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: #4a90e2;
        }

        /* Special styles */
        .service-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(74, 144, 226, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            border: 1px solid rgba(74, 144, 226, 0.3);
            font-size: 0.9rem;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .payment-icons {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .payment-icons i {
            font-size: 1.3rem;
            color: #4a90e2;
            transition: transform 0.3s ease;
        }

        .payment-icons i:hover {
            transform: scale(1.2);
        }

        .address-lines {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 1px;
            background: #4a90e2;
        }

        /* Social Media Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #bdc3c7;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #4a90e2;
            color: white;
            transform: translateY(-3px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-top-row {
                grid-template-columns: 1fr;
            }

            /* Only center the first section (logo section) */
            .footer-section:first-child {
                text-align: center;
            }

            /* Keep other sections left-aligned */
            .footer-section:not(:first-child) {
                text-align: left;
            }

            /* Center the logo section heading underline */
            .footer-section:first-child h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            /* Keep other section headings left-aligned */
            .footer-section:not(:first-child) h3::after {
                left: 0;
                transform: none;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-logo img {
                max-width: 200px;
            }

            /* Keep contact items in their original flex layout */
            .contact-item {
                flex-direction: row; /* Keep horizontal layout */
                text-align: left; /* Keep text left-aligned */
                gap: 1rem; /* Restore original gap */
            }

            .contact-item:hover {
                transform: translateX(5px); /* Keep hover effect */
            }

            .contact-icon {
                align-self: flex-start; /* Align to top */
                margin-top: 2px; /* Restore original margin */
            }

            /* Remove centering for quick links */
            .quick-links {
                text-align: left;
            }

            .quick-links a:hover {
                padding-left: 1rem; /* Keep hover effect */
            }

            .quick-links li:hover {
                transform: translateX(5px); /* Keep hover effect */
            }

            .payment-methods {
                justify-content: flex-start; /* Left align payment methods */
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 2rem 0 1rem 0;
            }

            .container {
                padding: 0 1rem;
            }

            .footer-section h3 {
                font-size: 1.3rem;
            }

            .contact-item {
                padding: 0.75rem; /* Keep original padding */
            }
        }