
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #00c853;
            --dark-bg: #1e293b;
            --light-bg: #f0f2f5;
            --card-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        body {
            background: var(--light-bg);
            font-family: 'Poppins', 'Hind', sans-serif;
            color: #333;
        }

        /* Navbar Styling */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 0;
            
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            color: #555 !important;
            margin: 0 5px;
            transition: 0.3s;
            position: relative;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
        }
        .nav-link.active {
            font-weight: 600;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: var(--primary-color);
            bottom: -8px;
            left: 20%;
            border-radius: 3px;
        }

            /* Profile Dropdown Tweaks */
            .user-avatar {
                width: 35px;
                height: 35px;
                object-fit: cover;
                border: 2px solid var(--primary-color, #0d6efd);
            }
            .dropdown-item i {
                width: 20px;
                text-align: center;
            }
            /* Service Card Enhancements */
            .service-card {
                display: block;
                text-decoration: none;
                color: #333;
                text-align: center;
                background: #fff;
                padding: 15px;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.05);
                transition: all 0.3s ease;
                height: 100%;
                border: 1px solid transparent;
            }
            .service-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
                border-color: #e0e0e0;
            }
            .service-icon-box {
                width: 60px;
                height: 60px;
                margin: 0 auto 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: #f0f2f5;
                font-size: 24px;
                color: #0d6efd;
            }
            /* Services List Item */
            .services-list .service-item {
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
                transition: 0.2s;
            }
            .services-list .service-item:hover {
                background-color: #f9fafb;
                padding-left: 5px;
            }
            .services-list .service-item:last-child {
                border-bottom: none;
            }

            /* Footer */
            footer {
                background: var(--dark-bg);
                color: #a0aec0;
                padding: 50px 0 20px;
                margin-top: 60px;
                font-size: 14px;
            }
            footer h5 { color: white; margin-bottom: 20px; font-weight: 600; }
            footer a { color: #a0aec0; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
            footer a:hover { color: white; padding-left: 5px; }

            .social-circle {
                width: 35px; height: 35px; background: rgba(255,255,255,0.1);
                display: inline-flex; justify-content: center; align-items: center;
                border-radius: 50%; margin-right: 5px; color: white; transition: 0.3s;
            }
            .social-circle:hover { background: var(--primary-color); transform: translateY(-3px); }

            /* Visitor Box */
            .visitor-counter {
                background: #f8f9fa;
                padding: 15px;
                border-radius: 8px;
                text-align: center;
                border: 1px solid #eee;
                margin-top: 15px;
            }
            .digit-box {
                background: #333;
                color: white;
                padding: 2px 6px;
                border-radius: 3px;
                font-family: monospace;
                font-size: 18px;
                letter-spacing: 2px;
            }

            /* Floating Button */
            .floating-btn {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 60px;
                height: 60px;
                background: linear-gradient(45deg, #ff357a, #fff172);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 24px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.3);
                z-index: 1000;
                transition: 0.3s;
            }
            .floating-btn:hover { transform: rotate(15deg); color: white; }

            /* Services List Styling */
            .services-list {
                list-style: none;
                padding: 0;
            }

            .services-list .d-flex {
                padding: 12px 0 !important;
                transition: background-color 0.2s ease;
            }

            .services-list .d-flex:hover {
                background-color: #f8f9fa;
                padding-left: 12px !important;
            }

            .services-list a {
                font-weight: 500;
                color: #333 !important;
                transition: color 0.2s ease;
            }

            .services-list a:hover {
                color: var(--primary-color) !important;
            }

            .services-list .fa-circle-check {
                flex-shrink: 0;
            }
            .btn-use {
                background: #f8f9fa; color: var(--primary-color); border: 1px solid #e9ecef;
                padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; transition: 0.3s;
            }
            .service-card:hover .btn-use { background: var(--primary-color); color: white; border-color: var(--primary-color); }


        @media (max-width: 768px) {
            .hero-section { padding: 40px 0; text-align: center; }
            .service-card { margin-bottom: 10px; }
            .offcanvas {
              max-width: 75%; /* मोबाइल पर स्क्रीन का 75% हिस्सा लेगा */
            }
            .nav-link {
              padding: 10px 0; /* लिंक्स के बीच गैप बढ़ाएं */
              font-size: 15px;
              border-bottom: 1px solid #f0f0f0;
            }
        }

        #countdownBox{
          background: black;
          color: white;
          z-index: 5000;
          position: fixed;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100vh;

        }
