@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

        :root {
            --primary-color: #0052cc;
            --primary-dark: #003d99;
            --primary-light: #4d8df3;
            --secondary-color: #ff6b00;
            --secondary-light: #ff8c33;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --success-color: #28a745;
            --error-color: #dc3545;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #1a1a1a;
        }

        /* Animated Get Quote Button */
        .btn-quote {
            background: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
            color: white;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
            animation: pulse 2s infinite;
            z-index: 1;
        }

        .btn-quote:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-light), var(--secondary-color));
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-quote:hover:before {
            left: 0;
        }

        .btn-quote:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
            }
        }

        /* Navigation */
        .navbar {
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        /* Service Cards */
        .service-card {
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
            color: white;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }

        /* Portfolio Items */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .portfolio-item img {
            transition: all 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 82, 204, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonial-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 99;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Form Styles */
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 10px 15px;
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 15px;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
            outline: none;
        }

        /* Footer Styles */
        .footer {
            background-color: #1a1a1a;
            color: #f8f9fa;
            padding: 70px 0 0;
        }

        .footer h3 {
            color: white;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .footer h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links li a {
            color: #f8f9fa;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .footer-links li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: #111;
            padding: 20px 0;
            margin-top: 50px;
            color: #f8f9fa;
        }

        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* Form Message */
        .form-message {
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            display: none;
        }

        .form-message.success {
            background-color: rgba(40, 167, 69, 0.1);
            border: 1px solid #28a745;
            color: #28a745;
        }

        .form-message.error {
            background-color: rgba(220, 53, 69, 0.1);
            border: 1px solid #dc3545;
            color: #dc3545;
        }

        /* Map Styles */
        .map-container {
            height: 450px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        /* Counters */
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Location Info Cards */
        .location-info {
            margin-top: 30px;
        }

        .info-card {
            padding: 25px;
            background-color: #f8fafc;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .info-card i {
            font-size: 2rem;
            color: #0ea5e9;
            margin-bottom: 15px;
        }

        .info-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #1e3a8a;
        }

        .info-card p {
            margin-bottom: 0;
            color: #64748b;
        }

        .info-card a {
            color: #0ea5e9;
            text-decoration: none;
            font-weight: 500;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        /* Map container styling */
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        /* Tailwind-compatible color utilities */
        .text-primary-color { color: var(--primary-color); }
        .text-primary-dark { color: var(--primary-dark); }
        .text-secondary-color { color: var(--secondary-color); }
        .bg-primary-color { background-color: var(--primary-color); }
        .bg-secondary-color { background-color: var(--secondary-color); }
        .hover\:bg-secondary-light:hover { background-color: var(--secondary-light); }

        /* Subpage header */
        .page-header {
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
            color: white;
            text-align: center;
        }

        .page-header h1 {
            color: white;
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            max-width: 42rem;
            margin: 0 auto;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background-color: #f8fafc;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.875rem;
        }

        .breadcrumb-list li {
            color: #64748b;
        }

        .breadcrumb-list li:not(:last-child)::after {
            content: '/';
            margin: 0 0.5rem;
            color: #94a3b8;
        }

        .breadcrumb-list a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-list a:hover {
            text-decoration: underline;
        }

        /* Services dropdown */
        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            padding: 0.5rem 0;
            z-index: 100;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown.open .nav-dropdown-menu {
            display: block;
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #374151;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .nav-dropdown-menu a:hover {
            background-color: #f3f4f6;
            color: var(--primary-color);
            padding-left: 1.25rem;
        }

        .nav-link-active {
            color: var(--primary-color) !important;
            font-weight: 600;
        }

        /* Service page content */
        .service-page-content h2 {
            font-size: 1.75rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .service-page-content h3 {
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .service-feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .service-feature-list li {
            padding: 0.5rem 0;
            padding-left: 1.75rem;
            position: relative;
            color: #4b5563;
        }

        .service-feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #22c55e;
        }

        .quote-sidebar {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            position: sticky;
            top: 6rem;
        }

        .quote-sidebar h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .related-services a {
            display: block;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            margin-bottom: 0.75rem;
            color: #374151;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .related-services a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            color: var(--primary-color);
        }