        :root {
            --primary-color: #4f46e5; /* Indigo */
            --secondary-color: #8b5cf6; /* Violet */
            --light-bg: #f3f4f6; /* Gray 100 */
        }
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }
        /* 1. Custom Header (Popup Design) */
        .custom-header {
            background-color: white;
            padding: 1rem 0;
            border-bottom-left-radius: 1.5rem; /* Rounded bottom-left */
            border-bottom-right-radius: 1.5rem; /* Rounded bottom-right */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
            /* Creating the "popup" effect by slightly reducing the width in the container */
            /* margin-left: 0.75rem;
            margin-right: 0.75rem; */
            padding-left: 50px;
            padding-right: 50px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: #374151; /* Dark Gray */
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            background-color: var(--light-bg);
        }

        /* 4. Features Cards Hover Effect */
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 1rem;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1), 0 4px 6px -4px rgba(79, 70, 229, 0.1);
            border-color: var(--primary-color) !important;
        }

        /* Hero Section Styling */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 6rem 0 4rem;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        /* Responsive Navbar adjustments for mobile */
        @media (max-width: 991.98px) {
            .custom-header .navbar-toggler {
                order: 1; /* Place the toggler between logo and button on small screens */
                margin-left: 1rem;
                margin-right: 1rem;
            }
            .custom-header .navbar-brand {
                order: 0; /* Keep logo on the left */
            }
            .custom-header .call-us-btn-mobile {
                order: 2; /* Keep button on the right */
            }
            .custom-header .navbar-collapse {
                width: 100%; /* Full width for collapsed menu */
                margin-top: 1rem;
            }
            .custom-header {
                margin: 0; /* Remove side margins on smallest screens */
                border-radius: 0;
            }
        }
        .custom-header{
            max-width: 1450px !important;
        }
        .navbar-nav .nav-item{
            padding: 10px;
        }