   
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: #0056b3;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background: #0056b3;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #003d82;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-whatsapp {
            background: #25D366;
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
        }
        
        .btn-secondary {
            background: #ff6b00;
        }
        
        .btn-secondary:hover {
            background: #e05a00;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0056b3;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: #ff6b00;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #0056b3;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #0056b3;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://placeholder-image-service.onrender.com/image/1200x600?prompt=Professional%20appliance%20technician%20repairing%20refrigerator%20in%20modern%20kitchen&id=1') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin: 0 auto 30px;
            max-width: 700px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            max-width: 900px;
            margin: 50px auto 0;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 10px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff6b00;
            display: block;
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 1rem;
            color: white;
        }
        
        /* Services Section */
        .services {
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://placeholder-image-service.onrender.com/image/100x100?prompt=Subtle%20geometric%20pattern%20in%20light%20blue&id=2') repeat;
            opacity: 0.05;
            z-index: -1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-icon {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #0056b3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Booking Section */
        .booking {
            background: linear-gradient(rgba(238, 245, 255, 0.9), rgba(238, 245, 255, 0.9)), url('https://placeholder-image-service.onrender.com/image/100x100?prompt=Subtle%20texture%20background%20with%20light%20blue%20tones&id=3') repeat;
            position: relative;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .booking-form {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        }
        
        /* Testimonials Section */
        .testimonials {
            background: white;
        }
        
        .testimonials-slider {
            margin: 40px auto;
            max-width: 1000px;
        }
        
        .testimonial-slide {
            padding: 20px;
            outline: none;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #eee;
            margin: 0 15px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid #0056b3;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin: 10px 0;
            font-size: 1.2rem;
        }
        
        .slick-dots {
            bottom: -50px;
        }
        
        .slick-dots li button:before {
            font-size: 12px;
            color: #0056b3;
        }
        
        .slick-dots li.slick-active button:before {
            color: #0056b3;
        }
        
        /* Brands Section */
        .brands {
            background: #f5f9ff;
            padding: 40px 0;
        }
        
        .brands-slider {
            margin: 30px auto;
            max-width: 1000px;
        }
        
        .brand-slide {
            padding: 20px;
            outline: none;
            text-align: center;
        }
        
        .brand-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .brand-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .brand-logo img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
        }
        
        /* About Section */
        .about {
            position: relative;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .about-content {
            padding-right: 20px;
        }
        
        .features-list {
            list-style: none;
        }
        
        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .features-list li i {
            color: #0056b3;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://placeholder-image-service.onrender.com/image/1200x400?prompt=Technician%20repairing%20air%20conditioner%20with%20professional%20tools&id=4') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background: #0056b3;
            color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-method i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: white;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Footer */
        footer {
            background: #003d82;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .footer-logo-img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .footer-logo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .footer-links h3 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #0056b3;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }
        
        /* Badge */
        .badge {
            display: inline-block;
            padding: 5px 12px;
            background: #ff6b00;
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 5px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .mobile-nav {
                display: none;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .booking-container,
            .about-container,
            .contact-container,
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                padding-right: 0;
            }
            
            .testimonial-slide,
            .brand-slide {
                padding: 10px;
            }
        }
  

    /* Global Reset & Base */
    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    /* Hero Section Styling */
    .hero {
        padding: 100px 20px;
        position: relative;
        color: #fff;
        background-color: #333; /* fallback */
        text-align: center;
        background-image: url('https://ncrrefrigeration.shop/hero.png'); /* default image */
        background-size: cover;
        background-position: center;
        transition: background-image 1s ease-in-out;
    }

    .overlay {
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: auto;
    }

    /* Typography */
    .hero-headline {
        font-size: 3.2rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
        line-height: 1.2;
    }

    .hero-subtext {
        font-size: 1.4rem;
        max-width: 850px;
        margin: 0 auto 40px;
        line-height: 1.5;
        font-weight: 300;
    }

    .cta-prompt {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #ffcc00;
    }

    /* Buttons */
    .hero-buttons {
        margin: 30px 0;
    }

    .btn {
        padding: 14px 30px;
        border-radius: 5px;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        margin: 10px 10px;
        display: inline-block;
        font-size: 1rem;
        transition: background-color 0.3s, transform 0.3s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .primary-btn {
        background: #ff6600;
    }
    .primary-btn:hover {
        background: #e65c00;
        transform: translateY(-2px);
    }

    .secondary-btn {
        background: #007bff;
    }
    .secondary-btn:hover {
        background: #0056b3;
        transform: translateY(-2px);
    }

    .whatsapp-btn {
        background: #25D366;
        font-size: 0.95rem;
    }
    .whatsapp-btn:hover {
        background: #1eaf53;
        transform: translateY(-2px);
    }

    /* Trust Badges */
    .trust-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
    }
    .badge-item {
        background: #ffffff;
        color: #333;
        padding: 12px 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        font-size: 0.9rem;
        font-weight: 600;
        min-width: 150px;
    }

    /* Stats */
    .stats-container {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 50px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        display: block;
        color: #ffcc00;
        line-height: 1;
    }
    .stat-text {
        display: block;
        font-size: 0.9rem;
        font-weight: 400;
        margin-top: 5px;
    }

    /* Rating & Location */
    .rating-box {
        margin-top: 40px;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .location-seo {
        margin-top: 30px;
        font-size: 0.95rem;
        color: #cccccc;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero {
            padding: 80px 15px;
        }
        .hero-headline {
            font-size: 2.2rem;
        }
        .hero-subtext {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        .hero-buttons .btn {
            display: block;
            width: 80%;
            max-width: 300px;
            margin: 10px auto;
        }
        .trust-badges {
            gap: 10px;
        }
        .stats-container {
            gap: 30px;
            margin-top: 40px;
        }
        .stat-number {
            font-size: 2rem;
        }
    }

/* Common Styles */
.float-call, .float-whatsapp {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
}

/* Call Button (Right Side) */
.float-call {
  bottom: 20px;
  right: 15px;
  background: linear-gradient(90deg, #0d47a1, #1976d2);
  color: #ffeb3b;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.float-call i {
  font-size: 20px;
  margin-right: 8px;
  color: #fff;
}

.float-call:hover {
  transform: scale(1.05);
}

/* WhatsApp Button (Left Side) */
.float-whatsapp {
  bottom: 20px;
  left: 15px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  color: #fff;
}

.float-whatsapp i {
  font-size: 28px;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .float-call {
    font-size: 15px;
    padding: 10px 14px;
    right: 10px;
    bottom: 15px;
  }

  .float-call i {
    font-size: 18px;
  }

  .float-whatsapp {
    left: 10px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  .float-whatsapp i {
    font-size: 25px;
  }
}
