 /* =========================================
       1. DESKTOP STYLES (Default)
       ========================================= */
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

        .logo img {
            max-height: 55px;
            transition: all 0.3s ease;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Desktop Icons */
        .header-icons .svg {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #f5f5f5;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-icons .svg svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        /* Desktop Button */
        .btn-free-demo {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #007bff;
            color: #ffffff !important;
            padding: 0 20px;
            height: 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .btn-free-demo svg {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }

        /* Hover Effects */
        .header-icons .svg:hover,
        .btn-free-demo:hover {
            transform: translateY(-3px);
            background-color: #0056b3;
        }

        .header-icons .svg:hover {
            background-color: #2575fc;
        }

        .header-icons .svg:hover svg path {
            fill: #ffffff;
        }


        /* =========================================
       2. MOBILE STYLES (Your Custom Layout)
       ========================================= */
        @media (max-width: 580px) {

            /* Layout Container */
            .header-inner {
                padding: 8px 0;
                justify-content: space-between;
                /* Keeps Logo Left, Icons Right */
            }

            /* 1. Logo: Left Side (User Settings) */
            .logo img {
                max-height: 30px;
                max-width: 100px;
                width: auto;
                position: relative;
                left: -14px;
                /* Pulls logo to the edge */
            }

            /* Container for Icons & Button */
            .header-icons {
                gap: 8px;
                /* Balanced gap */
                margin-right: -2px;
                /* Slight tweak to align button to right edge */
            }

            /* 2. WhatsApp/Email Icons: Bigger Size */
            .header-icons .svg {
                width: 38px;
                /* Increased from 32px to 38px */
                height: 38px;
            }

            .header-icons .svg svg {
                width: 18px;
                /* Icon inside bigger too */
                height: 18px;
            }

            /* 3. Free Demo Button: Right Aligned & Compact */
            .btn-free-demo {
                height: 38px;
                /* Matches icon height */
                padding: 0 12px;
                font-size: 11px;
                font-weight: 700;
            }

            .btn-free-demo svg {
                width: 10px;
                height: 10px;
                margin-right: 4px;
            }
        }
         .insta-gradient {
            /* Define the Instagram radial gradient */
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            /* Clip the background to the text (the icon) */
            -webkit-background-clip: text;
            background-clip: text;
            /* Make the text itself transparent so the background shows through */
            -webkit-text-fill-color: transparent;
            /* Ensure the element behaves correctly for background clipping */
            display: inline-block;
        }
        /* Glassmorphism Form Container */
.glass-form {
    background: rgba(255, 255, 255, 0.85); /* Thoda transparent */
    backdrop-filter: blur(12px); /* Piche ka background blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
}

/* Heading Style inside form */
.glass-form h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

/* Input Fields Styling */
.glass-form .form-control {
    background: #f8f9fa; /* Light grey bg */
    border: 1px solid transparent;
    border-radius: 12px; /* Soft corners */
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none;
}

/* Input Focus Effect */
.glass-form .form-control:focus {
    background: #ffffff;
    border-color: #007bff; /* Aapki theme color */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

/* Submit Button */
.glass-form .btn-submit {
    width: 100%;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.glass-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}.btn-free-demo {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}
 /* --- Modern Service Cards --- */
        .modern-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .modern-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: transparent;
        }

        .modern-card .icon-box {
            width: 60px;
            height: 60px;
            background: rgba(13, 110, 253, 0.1);
            color: var(--primary-color);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        /* --- Portfolio Clean Grid --- */
        .portfolio-clean {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .portfolio-clean img {
            transition: transform 0.5s ease;
            width: 100%;
        }

        .portfolio-clean:hover img {
            transform: scale(1.05);
        }

        .portfolio-clean .overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-clean:hover .overlay {
            opacity: 1;
        }

        /* --- Section Spacing --- */
        section {
            padding: 80px 0;
        }

        /* --- Mobile Order Fix --- */
        @media (max-width: 991px) {
            .order-mobile-1 {
                order: 1 !important;
            }

            /* Text on Top */
            .order-mobile-2 {
                order: 2 !important;
            }

            /* Form on Bottom */
            .glass-form {
                margin-top: 40px;
            }

            h1 {
                font-size: 2rem;
            }
        }