  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }
  :root {
            --primary-color: #363b75;
            --secondary-color: #e9b432;
            --text-color: #1f2937;
            --accent-color: #e9b432;
            --bg-color: #fcfcfc;
            --navbar-height: 80px;
            --font-size-h1: 42px;
            --font-size-h2: 36px;
            --font-size-p: 18px;
            --button-padding: 12px 24px;
            --icon-size: 24px;
            --dropdown-width: 200px;
            --service-box-size: 300px;
            --section-max-width: 1200px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            position: relative;
            margin: 0;
        }



       /* Header Styles */
        .wh-pg-header {
            position: relative;
            min-height: 300px;
            background: linear-gradient(to right, #5c51f0, #030e72);
            overflow: hidden;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Starry Background */
        .wh-pg-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .wh-pg-star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: wh-pg-twinkle 2s infinite;
        }

        @keyframes wh-pg-twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .wh-pg-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .wh-pg-header-text,
        .wh-pg-header-image {
            flex: 1;
            min-width: 300px;
            max-width: 50%;
        }

        .wh-pg-header-text {
            color: white;
            padding: 20px;
        }

        .wh-pg-header-text h1 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            margin-bottom: 10px;
        }

        .wh-pg-header-text p {
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            line-height: 1.6;
        }

        .wh-pg-header-image img {
            width: 100%;
            max-width: 300px;
            /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
            object-fit: cover;
        }

        /* Search Bar */
        .wh-pg-search-container {
            position: relative;
            max-width: 700px;
            margin: 20px auto;
        }

        .wh-pg-search-container input {
            width: 100%;
            padding: 15px 50px;
            font-size: clamp(1rem, 3vw, 1.2rem);
            border: none;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            color: rgb(0, 0, 0);
            outline: none;
            transition: all 0.3s ease;
        }

        .wh-pg-search-container input::placeholder {
            color: rgba(27, 27, 27, 0.7);
        }

        .wh-pg-search-container input:focus {
            background: rgba(255, 255, 255, 0.9);
            /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); */
        }

        .wh-pg-search-container i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(27, 27, 27, 0.7);
            font-size: 1rem;
        }

        /* Main Content */
        .wh-pg-content {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .wh-pg-boxes {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .wh-pg-box {
            position: relative;
            max-width: 360px;
            margin: 15px;
            padding: 10px;
            background: linear-gradient(135deg, rgba(173, 216, 230, 0.3), rgba(135, 206, 235, 0.2));
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(13, 70, 255, 0.1);
        }

        .wh-pg-inner-box {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: left;
        }

        .wh-pg-box-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .wh-pg-box-content img.wh-pg-feature-icon {
            width: 40px;
            height: 40px;
            object-fit: cover;
        }

        .wh-pg-box-content img.wh-pg-feature-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .wh-pg-box h2 {
            font-size: clamp(1.3rem, 4vw, 1.5rem);
            margin-bottom: 10px;
            color: #2a5298;
        }

        .wh-pg-box p {
            font-size: clamp(0.9rem, 3vw, 1rem);
            line-height: 1.6;
            margin-bottom: 15px;
            color: #555;
             display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
        }

        /* Enhanced 3D Button */
        .wh-pg-cool-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            font-size: clamp(0.9rem, 3vw, 1.1rem);
            font-weight: bold;
            color: white;
            background: linear-gradient(45deg, #2a5298, #4a78c2);
            border: none;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .wh-pg-cool-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.5s ease;
        }

        .wh-pg-cool-button:hover::before {
            left: 100%;
        }

        .wh-pg-cool-button a{
            color: #fff;
        }

        .wh-pg-cool-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
            background: linear-gradient(45deg, #3b6ab5, #5a88d2);
        }

        .wh-pg-cool-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
        }

        .wh-pg-cool-button i {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
        }

        /* No Results Message */
        .wh-pg-no-results {
            display: none;
            text-align: center;
            font-size: clamp(1rem, 3vw, 1.2rem);
            color: #555;
            margin: 40px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wh-pg-header-content {
                flex-direction: column;
                text-align: center;
            }

            .wh-pg-header-text,
            .wh-pg-header-image {
                max-width: 100%;
            }

            .wh-pg-header-image img {
                max-width: 300px;
                margin-top: 20px;
            }

            .wh-pg-search-container {
                max-width: 90%;
            }

            .wh-pg-boxes {
                grid-template-columns: 1fr;
            }

            .wh-pg-box-content img.wh-pg-feature-image {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .wh-pg-header-text h1 {
                font-size: 1.5rem;
            }

            .wh-pg-search-container input {
                padding: 12px 40px;
                font-size: 1rem;
            }

            .wh-pg-search-container i {
                left: 15px;
                font-size: 1.2rem;
            }

            .wh-pg-box-content {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .wh-pg-box-content img.wh-pg-feature-icon,
            .wh-pg-box-content img.wh-pg-feature-image {
                width: 50px;
                height: 50px;
            }
        }