 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            width: 100%;
        }
        
        .gallery-section {
            margin: 40px 0;
            position: relative;
            width: 100%;
        }

        .gallery-section h2 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #2c3e50;
            padding-left: 10px;
        }
        
        .gallery-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .gallery-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 15px;
            padding: 15px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .gallery-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .gallery-item {
            flex: 0 0 auto;
            width: 500px;
            height: 300px;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: bold;
            border-radius: 12px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-card {
            flex: 0 0 auto;
            width: 300px;
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border-color: #0b0b0bff;
        }
        
        .gallery-image {
            width: 100%;
            height: 200px;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: bold;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-content {
            padding: 20px;
            text-align: center;
            border-top: 2px solid #f0f0f0;
            background: #fafafa;
        }

        .gallery-name {
            font-weight: bold;
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-weight: normal;
            border: 1px solid #e0e0e0;
        }
        
        .scroll-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transform: translateY(-50%) scale(1.05);
        }
        
        .scroll-left {
            left: -20px;
            display: none;
        }
        
        .scroll-right {
            right: -20px;
        }

        .wall-makeover-container {
            background: white;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 40px 0;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            width: 100%;
            position: relative;
            cursor: pointer;
        }

        .wall-makeover-container:hover {
            border-color: transparent;
            box-shadow: 0 12px 35px rgba(155, 89, 182, 0.2);
        }

        .wall-makeover-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .wall-poster-header {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
            padding: 50px 30px;
            text-align: center;
            flex: 1;
        }

        .wall-poster-header h3 {
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .wall-poster-header p {
            font-size: 22px;
            opacity: 0.9;
            font-style: italic;
            margin-bottom: 10px;
        }

        .wall-poster-content {
            padding: 40px 30px;
            text-align: center;
            background: linear-gradient(45deg, #f8f9fa, #e9ecef);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .wall-book-now-btn {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
            border: none;
            padding: 18px 50px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
            margin-top: 20px;
            border-radius: 8px;
        }

        .wall-book-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
        }
        
        .blog-section {
            margin: 60px 0;
            width: 100%;
        }
        
        .blog-section h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #2c3e50;
            text-align: center;
            position: relative;
        }
        
        .blog-section h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #3498db;
            margin: 10px auto 0;
        }
        
        .blog-container {
            display: flex;
            overflow-x: auto;
            gap: 25px;
            padding: 15px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .blog-container::-webkit-scrollbar {
            display: none;
        }
        
        .blog-card {
            flex: 0 0 auto;
            width: 350px;
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        .blog-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .blog-category {
            display: inline-block;
            padding: 6px 15px;
            background: #3498db;
            color: white;
            font-size: 12px;
            font-weight: bold;
            border-radius: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }
        
        .blog-category.maintenance {
            background: #e74c3c;
        }
        
        .blog-category.design {
            background: #9b59b6;
        }
        
        .blog-category.education {
            background: #2ecc71;
        }
        
        .blog-category.finance {
            background: #f39c12;
        }
        
        .blog-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #2c3e50;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .read-more {
            color: #3498db;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            margin-top: auto;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        .app-section {
            display: flex;
            width: 100%;
            background-color: white;
            margin: 40px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-radius: 12px;
            overflow: hidden;
        }

        .app-image {
            flex: 1;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            order: 2;
        }

        .app-image img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            display: block;
        }

        .app-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            order: 1;
        }

        .app-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .app-subtitle {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .app-features {
            margin-bottom: 30px;
        }

        .app-feature {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            font-size: 16px;
        }

        .app-feature:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #4a90e2;
            font-size: 24px;
            line-height: 1;
        }

        .download-section {
            margin-top: 20px;
        }

        .download-text {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            font-size: 18px;
        }

        .download-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .download-btn {
            height: 60px;
            transition: transform 0.3s ease;
            border-radius: 8px;
            display: block;
        }

        .download-btn:hover {
            transform: scale(1.05);
        }

        .platforms {
            font-size: 16px;
            color: #777;
            margin-top: 10px;
        }
        
        .main-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            width: 100%;
        }
        
        .hero-section {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .hero-section h1 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .hero-section p {
            font-size: 18px;
            color: #666;
        }
        
        .services-container {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            width: 100%;
        }
        
        .services-left {
            flex: 1;
            width: 100%;
        }
        
        .services-heading {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .services-list {
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 15px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            border-radius: 12px;
            border: 1px solid #5e5a5aff;
            width: 100%;
        }
        
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 12px 8px;
            border: 1px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            min-height: 100px;
            position: relative;
            background: white;
            border-radius: 8px;
        }
        
        .service-item:hover {
            background-color: #f9f9f9;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .service-item:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: #f5833cff;
            border-radius: 1px;
            transition: all 0.5s ease;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
        }
        
        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .service-name {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
        }
        
        .services-right {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 15px;
            height: 100%;
            border-radius: 12px;
            padding: 15px;
            background: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .grid-item {
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border-radius: 8px;
        }
        
        .grid-item:nth-child(1) {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            height: 160px;
        }
        
        .grid-item:nth-child(2) {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            height: 340px;
        }
        
        .grid-item:nth-child(3) {
            grid-column: 1 / 2;
            grid-row: 2 / 4;
            height: 340px;
        }
        
        .grid-item:nth-child(4) {
            grid-column: 2 / 3;
            grid-row: 3 / 4;
            height: 160px;
        }
        
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            display: block;
        }
        
        .grid-item:hover img {
            transform: scale(1.05);
        }
        
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }
        
        .loading-logo {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .loading-logo img {
            max-height: 80px;
            width: auto;
            display: block;
        }
        
        .loading-logo h1 {
            margin-top: 5px;
            color: #0f2857ff;
            font-weight: 600;
            font-size: 24px;
        }
        
        .progress-container {
            width: 30%;
            max-width: 250px;
            background-color: #e0e0e0;
            overflow: hidden;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 10px;
        }
        
        .progress-bar {
            height: 8px;
            background-color: #0f2857ff;
            width: 0%;
            transition: width 0.2s ease;
        }
        
        .loading-text {
            font-size: 16px;
            color: #5f6368;
            margin-top: 10px;
        }
        
        .service-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .service-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: white;
            padding: 20px;
            max-width: 600px;
            width: 95%;
            position: relative;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.7) translateY(-50px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-popup.active .popup-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.3rem;
            color: #7f8c8d;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 10;
        }
        
        .popup-close:hover {
            color: #e74c3c;
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .popup-header {
            text-align: center;
            margin-bottom: 25px;
            padding-right: 25px;
        }
        
        .popup-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .categories-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .category-section {
            padding-bottom: 0;
        }
        
        .category-section:last-child {
            padding-bottom: 0;
        }
        
        .category-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: left;
            font-weight: bold;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
        }
        
        .service-square {
            background: white;
            padding: 0;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 150px;
            position: relative;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .service-square:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .service-image {
            width: 100%;
            height: 100px;
            object-fit: cover;
            transition: all 0.3s ease;
            background: transparent;
            display: block;
            border-radius: 12px 12px 0 0;
        }
        
        .service-square:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-name {
            font-size: 0.85rem;
            color: #2c3e50;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
            padding: 12px 8px;
            width: 100%;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-square:hover .service-name {
            color: #2c3e50;
        }
        
        .compact-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 12px;
        }
        
        .compact-service {
            background: white;
            padding: 0;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 130px;
            position: relative;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .compact-service .service-image {
            width: 100%;
            height: 80px;
            margin-bottom: 0;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }
        
        .compact-service .service-name {
            font-size: 0.8rem;
            line-height: 1.2;
            padding: 10px 6px;
        }
        
        .coming-soon-container {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .coming-soon-icon {
            font-size: 64px;
            color: #9b59b6;
            margin-bottom: 20px;
        }
        
        .coming-soon-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .coming-soon-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .coming-soon-btn {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
            border-radius: 6px;
        }
        
        .coming-soon-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
        }
        
        .mobile-gallery-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .mobile-gallery-scroll {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 15px;
            padding: 15px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .mobile-gallery-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .mobile-gallery-card {
            flex: 0 0 auto;
            width: 280px;
            background: white;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            border-radius: 12px;
            cursor: pointer;
        }
        
        .mobile-gallery-image {
            width: 100%;
            height: 180px;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: bold;
            overflow: hidden;
            position: relative;
        }
        
        .mobile-gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .mobile-gallery-content {
            padding: 15px;
            text-align: center;
            border-top: 2px solid #f0f0f0;
            background: #fafafa;
        }
        
        .mobile-gallery-name {
            font-weight: bold;
            font-size: 16px;
            color: #2c3e50;
        }
        
        .mobile-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-weight: normal;
            border: 1px solid #e0e0e0;
        }
        
        .mobile-scroll-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transform: translateY(-50%) scale(1.05);
        }
        
        .mobile-scroll-left {
            left: 10px;
            display: none;
        }
        
        .mobile-scroll-right {
            right: 10px;
        }
        
        .mobile-image-gallery {
            display: none;
        }

        /* NEW: Contact Section Styles */
        .contact-section {
            background: white;
            margin: 40px 0;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .contact-section h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #2c3e50;
            text-align: center;
            position: relative;
        }

        .contact-section h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #3498db;
            margin: 10px auto 0;
        }

        .contact-container {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        .contact-form {
            flex: 1;
        }

        .contact-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c3e50;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }

        .map-container {
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-details {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }

        .contact-details h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .contact-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-details i {
            color: #3498db;
            width: 20px;
        }
        
        /* FIXED: Image responsive fixes */
        .gallery-image img,
        .mobile-gallery-image img,
        .wall-makeover-img,
        .blog-image,
        .grid-item img,
        .mobile-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* FIXED: Mobile responsive image fixes */
        .mobile-gallery-image,
        .gallery-image {
            position: relative;
            overflow: hidden;
        }
        
        /* FIXED: Blog section improvements */
        .blog-card {
            height: auto;
            min-height: 400px;
        }
        
        .blog-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-excerpt {
            flex-grow: 1;
        }
        
        /* FIXED: Contact form mobile improvements */
        .contact-form-container {
            width: 100%;
        }
        
        /* NEW: Image fixes for responsive design */
        .gallery-item img,
        .gallery-image img,
        .mobile-gallery-image img,
        .blog-image,
        .grid-item img {
            object-fit: cover !important;
            object-position: center !important;
            width: 100% !important;
            height: 100% !important;
        }
        
        .gallery-item,
        .gallery-image,
        .mobile-gallery-image,
        .blog-image-container,
        .grid-item {
            overflow: hidden;
            position: relative;
        }
        
        @media (max-width: 1200px) {
            .container {
                padding: 15px;
            }
        }
        
        @media (max-width: 1024px) {
            .services-container {
                flex-direction: column;
            }
            
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
            }
            
            .grid-item:nth-child(1) {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                height: 180px;
            }
            
            .grid-item:nth-child(2) {
                grid-column: 2 / 3;
                grid-row: 1 / 2;
                height: 180px;
            }
            
            .grid-item:nth-child(3) {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
                height: 180px;
            }
            
            .grid-item:nth-child(4) {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
                height: 180px;
            }
            
            .services-list {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .services-right {
                display: none;
            }

            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .gallery-section h2 {
                font-size: 20px;
                text-align: center;
                padding-left: 0;
            }
            
            .gallery-item {
                width: 280px;
                height: 160px;
            }
            
            .gallery-card {
                width: 240px;
            }
            
            .gallery-image {
                height: 160px;
            }
            
            .scroll-btn {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }

            .scroll-left {
                left: -15px;
            }
            
            .scroll-right {
                right: -15px;
            }

            .wall-makeover-container {
                margin: 25px 0;
                border-radius: 10px;
                overflow: hidden;
                width: 100%;
            }

            .wall-makeover-img {
                width: 100%;
                height: auto;
                max-height: 250px;
                object-fit: cover;
            }

            .wall-poster-header {
                padding: 25px 20px;
            }

            .wall-poster-header h3 {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .wall-poster-header p {
                font-size: 16px;
            }

            .wall-poster-content {
                padding: 25px 20px;
            }

            .wall-book-now-btn {
                padding: 15px 35px;
                font-size: 16px;
                width: auto;
                max-width: none;
            }
            
            .blog-section {
                margin: 40px 0;
            }
            
            .blog-section h2 {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .blog-card {
                width: 300px;
                min-height: 380px;
            }
            
            .blog-content {
                padding: 20px;
            }
            
            .blog-title {
                font-size: 18px;
            }
            
            .blog-excerpt {
                font-size: 14px;
            }
            
            .app-section {
                flex-direction: column;
                margin: 30px 0;
                border-radius: 12px;
                overflow: hidden;
                width: 100%;
            }
            
            .app-image {
                order: 2;
                padding: 20px;
                background-color: #f8f9fa;
            }
            
            .app-image img {
                width: 100%;
                height: auto;
                max-height: 300px;
                object-fit: contain;
            }
            
            .app-content {
                order: 1;
                padding: 30px 25px;
                text-align: left;
            }
            
            .app-title {
                font-size: 24px;
                text-align: left;
                line-height: 1.3;
            }
            
            .app-subtitle {
                font-size: 16px;
                text-align: left;
                line-height: 1.5;
            }
            
            .app-features {
                text-align: left;
                margin: 0 0 30px 0;
                max-width: none;
            }
            
            .download-buttons {
                justify-content: flex-start;
            }
            
            .download-btn {
                height: 50px;
            }
            
            .loading-logo img {
                max-height: 70px;
            }
            
            .progress-container {
                width: 60%;
            }
            
            .services-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .services-right {
                display: none;
            }
            
            .services-left {
                width: 100%;
            }
            
            .services-list {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                padding: 15px;
            }
            
            .service-item {
                padding: 12px 8px;
                min-height: 100px;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 8px;
            }
            
            .service-name {
                font-size: 12px;
                line-height: 1.3;
            }
            
            .services-heading {
                font-size: 20px;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .image-grid {
                display: none;
            }
            
            .popup-content {
                width: 95%;
                max-width: 450px;
            }
            
            .popup-title {
                font-size: 1.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .compact-services {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            
            .service-square {
                padding: 0;
                min-height: 140px;
            }
            
            .service-image {
                width: 100%;
                height: 100px;
            }
            
            .compact-service {
                min-height: 120px;
                padding: 0;
            }
            
            .compact-service .service-image {
                width: 100%;
                height: 80px;
            }
            
            .gallery-container {
                display: none;
            }
            
            .mobile-gallery-container {
                display: block;
            }
            
            .mobile-image-gallery {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                margin-top: 20px;
            }
            
            .mobile-image-item {
                width: 100%;
                height: 150px;
                overflow: hidden;
                border-radius: 8px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
            
            .mobile-gallery-card {
                width: 85vw;
                max-width: 300px;
            }
            
            .mobile-gallery-image {
                height: 180px;
            }
            
            .contact-section {
                padding: 25px 20px;
            }

            .contact-section h2 {
                font-size: 24px;
            }
            
            .contact-container {
                gap: 25px;
            }
            
            .map-container {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-item {
                width: 85vw;
                height: 150px;
                max-width: 300px;
            }
            
            .gallery-card {
                width: 85vw;
                max-width: 280px;
            }
            
            .gallery-image {
                height: 150px;
            }
            
            .gallery-content {
                padding: 12px;
            }
            
            .gallery-name {
                font-size: 15px;
            }

            .scroll-btn {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .scroll-left {
                left: -10px;
            }
            
            .scroll-right {
                right: -10px;
            }

            .wall-makeover-container {
                margin: 20px 0;
                border-radius: 8px;
                width: 100%;
            }

            .wall-makeover-img {
                width: 100%;
                height: auto;
                max-height: 200px;
            }

            .wall-poster-header {
                padding: 20px 15px;
            }

            .wall-poster-header h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .wall-poster-header p {
                font-size: 14px;
            }

            .wall-poster-content {
                padding: 20px 15px;
            }

            .wall-book-now-btn {
                padding: 14px 30px;
                font-size: 15px;
                width: 100%;
                max-width: 280px;
            }
            
            .blog-section {
                margin: 30px 0;
            }
            
            .blog-section h2 {
                font-size: 20px;
            }
            
            .blog-card {
                width: 85vw;
                max-width: 280px;
                min-height: 360px;
            }
            
            .blog-content {
                padding: 15px;
            }
            
            .blog-title {
                font-size: 16px;
            }
            
            .blog-excerpt {
                font-size: 13px;
            }
            
            .app-section {
                margin: 20px 0;
                border-radius: 8px;
                width: 100%;
            }
            
            .app-content {
                padding: 25px 20px;
            }
            
            .app-title {
                font-size: 20px;
                line-height: 1.3;
            }
            
            .app-subtitle {
                font-size: 14px;
                line-height: 1.4;
            }
            
            .app-feature {
                font-size: 14px;
            }
            
            .download-btn {
                height: 45px;
            }
            
            .platforms {
                font-size: 14px;
            }
            
            .loading-logo img {
                max-height: 60px;
            }
            
            .progress-container {
                width: 80%;
            }
            
            .services-list {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                padding: 12px;
            }
            
            .service-item {
                padding: 10px 5px;
                min-height: 90px;
            }
            
            .service-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 6px;
            }
            
            .service-name {
                font-size: 11px;
                line-height: 1.3;
            }
            
            .services-heading {
                font-size: 18px;
                margin-bottom: 15px;
            }
            
            .popup-content {
                width: 98%;
                max-width: 400px;
            }
            
            .popup-title {
                font-size: 1.4rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .compact-services {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mobile-image-gallery {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .mobile-image-item {
                height: 120px;
            }
            
            .mobile-gallery-card {
                width: 85vw;
                max-width: 260px;
            }
            
            .mobile-gallery-image {
                height: 150px;
            }
            
            .mobile-scroll-btn {
                width: 35px;
                height: 35px;
                font-size: 20px;
            }

            .contact-section {
                padding: 20px 15px;
            }

            .contact-section h2 {
                font-size: 20px;
            }
            
            .contact-container {
                gap: 20px;
            }
            
            .map-container {
                height: 200px;
            }
            
            .contact-details {
                padding: 15px;
            }
            
            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 10px;
                font-size: 14px;
            }
            
            .submit-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            .wall-makeover-img {
                width: 100%;
                height: auto;
                max-height: 180px;
            }
            
            .wall-poster-header {
                padding: 15px 12px;
            }
            
            .wall-poster-header h3 {
                font-size: 18px;
            }
            
            .wall-book-now-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .mobile-gallery-card {
                width: 90vw;
                max-width: 240px;
            }
            
            .gallery-card {
                width: 90vw;
                max-width: 240px;
            }
            
            .gallery-item {
                width: 90vw;
                max-width: 240px;
            }
            
            .services-list {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 10px;
            }
            
            .service-item {
                padding: 8px 4px;
                min-height: 85px;
            }
            
            .service-icon {
                width: 35px;
                height: 35px;
                margin-bottom: 4px;
            }
            
            .service-name {
                font-size: 10px;
                line-height: 1.2;
            }
            
            .blog-card {
                min-height: 340px;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-gallery-container {
                display: none;
            }
            
            .mobile-image-gallery {
                display: none;
            }
            
            .services-right {
                display: flex;
            }
        }

        @media (max-width: 320px) {
            .services-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .service-item:nth-child(9) {
                grid-column: 1 / 3;
            }
        }