  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Contact Page Specific Styles */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                        url('../assets/3813.jpg') center/cover;
            color: white;
            padding: 120px 20px;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .contact-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .contact-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 25px;
        }

        .contact-content p:first-child {
            font-size: 1.2rem;
            font-weight: 500;
            color: #1a3d5c;
        }

        .contact-main-section {
            display: flex;
            gap: 80px;
            align-items: center;
            margin-bottom: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .contact-text-content {
            flex: 1.2;
        }

        .contact-image-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .contact-image-content img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        @media (max-width: 968px) {
            .contact-main-section {
                flex-direction: column;
                gap: 40px;
                padding: 0;
            }

            .contact-image-content {
                min-height: 300px;
            }

            .contact-text-content h2 {
                font-size: 1.8rem !important;
            }
        }

        @media (max-width: 640px) {
            .contact-text-content h2 {
                font-size: 1.5rem !important;
            }

            .contact-main-section {
                gap: 30px;
            }

            .contact-image-content {
                min-height: 250px;
            }
        }

        .contact-cta {
            margin: 60px 0;
            padding: 50px 40px;
            background: linear-gradient(135deg, rgba(95, 42, 82, 0.05), rgba(134, 42, 42, 0.05));
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
        }

        .contact-cta p {
            font-size: 1.25rem;
            font-weight: 500;
            color: #2d3748;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 35px;
        }

        .office-info {
            margin-top: 60px;
            text-align: center;
            padding: 40px;
            background: #f8fafc;
            border-radius: 10px;
        }

        .office-info h3 {
            font-size: 1.4rem;
            color: #1a3d5c;
            margin-bottom: 20px;
        }

        .office-address {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
        }

        .contact-us-btn {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 16px 40px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(95, 42, 82, 0.3);
        }

        .contact-us-btn:hover {
            background: linear-gradient(135deg, #4a1f3f, #6b2020);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.6);
            color: white;
        }

        /* Footer Styles */
        .harshwal-footer {
            background: #000000;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .harshwal-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
            color: white;
        }

        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #4299e1;
        }

        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: #4299e1;
            transform: translateY(-2px);
            color: white;
        }

        .harshwal-contact-info {
            margin-bottom: 1.2rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #4299e1;
        }

        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #4299e1;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
                background: #f8f9fa;
                padding: 0;
                opacity: 0;
                max-height: 0;
                overflow: hidden;
                visibility: hidden;
                transform: none;
                transition: all 0.3s ease;
            }

            .harshwal-nav-item-active .harshwal-nav-dropdown {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0;
            }

            .harshwal-nav-dropdown-item {
                padding: 10px 30px;
                border-left: 3px solid transparent;
            }

            .harshwal-nav-dropdown-item:hover {
                border-left-color: #1a3d5c;
                background: #ffffff;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-content {
                padding: 60px 20px;
            }

            .contact-cta {
                padding: 30px 20px;
            }

            .office-info {
                padding: 30px 20px;
            }

            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .harshwal-footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .contact-hero {
                padding: 80px 20px;
            }

            .contact-hero h1 {
                font-size: 1.75rem;
            }

            .contact-content p {
                font-size: 1rem;
            }

            .contact-cta p {
                font-size: 1.1rem;
            }

            .contact-us-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }

            .harshwal-cta-title {
                font-size: 1.5rem;
            }

            .harshwal-footer-legal {
                gap: 1rem;
            }
        }
 