    <style>





    
        /* New Slider Styles */
        .new-slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 500px;
            margin: 5px auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, #f8f8f8 0%, #e0e0e0 100%);
        }
        .new-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        .new-slide {
            min-width: 100%;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .new-slide-content {
            width: 50%;
            padding: 5px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .new-slide-content h3 {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2563eb;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .new-slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            box-sizing: border-box;
        }
        .new-slider-nav button {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .new-slider-nav button:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .new-slider-dots {
            position: absolute;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .new-slider-dots .dot {
            height: 12px;
            width: 12px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .new-slider-dots .dot.active {
            background-color: #2563eb;
            transform: scale(1.2);
        }
        
        /* Multi-image slides layout */
        .multi-image-container {
            width: 50%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            padding: 15px;
            box-sizing: border-box;
            background-color: #f0f0f0;
        }
        .multi-image-container img {
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 5px;
            border: 2px solid #ddd;
        }
        
        /* Single image slides */
        .single-image-container {
            width: 50%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f0f0f0;
            padding: 20px;
            box-sizing: border-box;
        }
        .single-image-container img {
            max-width: 100%;
            max-height: 95%;
            object-fit: contain;
            border-radius: 5px;
            border: 2px solid #ddd;
        }
        
        /* Sticky Header */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        /* Sticky Genie Image */
        .sticky-genie {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            z-index: 999;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .sticky-genie:hover {
            transform: scale(1.1);
        }
        .sticky-genie img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        /* Services Grid Styles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            background: #f8f8f8;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
        }
        .service-card img {
            max-width: 40%;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            margin-right: 20px;
        }
        .service-content {
            max-width: 60%;
        }
        .service-content h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .service-content p {
            font-size: 1rem;
            color: #333;
            margin-bottom: 10px;
        }
        .service-content a {
            color: #2563eb;
            text-decoration: underline;
        }
        
        /* Magic Calculator Section */
        .calculator-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }
        .calculator-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .calculator-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }
        .calculator-card:hover {
            transform: translateY(-5px);
        }
        .calculator-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        .calculator-card p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .calculator-btn {
            background: #fff;
            color: #667eea;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .calculator-btn:hover {
            background: #f8f9fa;
            transform: scale(1.05);
        }
        
        @media (max-width: 768px) {
            .new-slider-container {
                height: 600px;
            }
            
            .new-slide {
                flex-direction: column;
            }
            .new-slide-content, .multi-image-container, .single-image-container {
                width: 100%;
            }
            .multi-image-container {
                height: 50%;
                order: 1;
            }
            .new-slide-content {
                height: 50%;
                padding: 20px;
                order: 2;
            }
            .new-slide-content h3 {
                font-size: 1.8rem;
            }
            
            .single-image-container {
                height: 50%;
                order: 1;
            }
            .single-image-container img {
                max-height: 80%;
            }
            
            .sticky-genie {
                width: 60px;
                height: 60px;
                bottom: 15px;
                right: 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            .service-card {
                flex-direction: column;
                text-align: center;
            }
            .service-card img {
                max-width: 70%;
                margin-right: 0;
                margin-bottom: 15px;
            }
            .service-content {
                max-width: 100%;
            }
            
            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    </style>