<style>
    
        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #222;
        }

        /* Fade-up animation */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.9s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Dark Mode */
        @media (prefers-color-scheme: dark) {
            body { background: #0d0d0d; color: #e6e6e6; }
            .nav-wrapper { background: rgba(20,20,20,0.6); }
            .nav-links a { color: #c8d8ff; }
            .nav-links a:hover::after { background: #5fa0ff; }
            .dropdown-menu { background: #1a1a1a; }
            .dropdown-menu a { color: #c8d8ff; }
            .dropdown-menu a:hover { background: #0f1a2b; }
            .hero::before { background: rgba(0,0,0,0.6); }
        }

        /* Sticky Glass Navigation */
        .nav-wrapper {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: rgba(255,255,255,0.6);
            border-bottom: 1px solid rgba(255,255,255,0.4);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 40px;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 600;
            color: #0a3a7a;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #0a3a7a;
            font-weight: 500;
            position: relative;
            padding-bottom: 4px;
        }

        /* Animated underline */
        .nav-links a::after,
        .dropdown-toggle::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background: #0a6cff;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover::after,
        .dropdown:hover .dropdown-toggle::after {
            width: 100%;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 28px;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            padding: 10px 0;
            display: none;
            min-width: 200px;
            z-index: 999;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            color: #0a3a7a;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: #f0f6ff;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            padding: 15px;
            background: #0a6cff;
            color: white;
            text-align: center;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 20px;
            }
            .dropdown-menu {
                position: relative;
                box-shadow: none;
                background: transparent;
                padding: 0;
            }
            .dropdown-menu a {
                padding-left: 0;
            }
        }

        /* Hero */
        .hero {
            height: 480px;
            background: url('https://waterworkspressurecleaning.com/wp-content/uploads/2021/07/window-cleaning-professional.jpg') center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.25);
        }
        .hero-content {
            position: relative;
            text-align: center;
            color: white;
            padding: 30px 50px;
            border-radius: 14px;
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.15);
	               }
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 300;
            margin: 0;
        }

        /* Section Titles */
        h2 {
            font-size: 2rem;
            font-weight: 400;
            text-align: center;
            margin-top: 60px;
            margin-bottom: 30px;
        }

        /* CLICKABLE SERVICE CARDS */
        .service-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto 60px;
            padding: 0 20px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .service-link:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .service-link img {
            width: 50%;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .service-card-text {
            width: 50%;
        }

        .service-card-text h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .service-card-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #444;
        }

        @media (max-width: 900px) {
            .service-link {
                flex-direction: column;
                text-align: center;
            }
            .service-link img,
            .service-link .service-card-text {
                width: 100%;
            }
        }

        /* Why Choose Us */
        .why {
            max-width: 1100px;
            margin: 60px auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            text-align: center;
        }
        .why div {
            width: 30%;
            padding: 20px;
        }
        .why h3 { font-size: 1.4rem; margin-bottom: 10px; }
        .why p { color: #555; }

        @media (max-width: 900px) {
            .why { flex-direction: column; gap: 30px; }
            .why div { width: 100%; }
        }

        /* Testimonials */
        .testimonials {
            background: #f5f7fa;
            padding: 60px 20px;
            text-align: center;
        }
        .testimonials p {
            font-size: 1.3rem;
            font-style: italic;
            max-width: 700px;
            margin: auto;
        }

        /* Call to Action */
        .cta {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #0a6cff, #003a8c);
            color: white;
        }
        .cta h2 { color: white; }
        .cta button {
            margin-top: 20px;
            padding: 14px 28px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            background: white;
            color: #003a8c;
            cursor: pointer;
            transition: 0.3s;
        }
        .cta button:hover { background: #e6e6e6; }

        /* Footer */
        footer {
            background: #0a6cff;
            color: white;
            text-align: center;
            padding: 25px;
        }

.services-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-section h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #222;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}


/* Overlay card base */
.overlay-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.overlay-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.overlay-card:hover img {
    transform: scale(1.05);
}

/* Title at bottom */
.overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Hidden description overlay */
.overlay-description {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

/* When active (clicked) */
.overlay-card.active .overlay-description {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

html {
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

/* FAQ Item (glassy card) */
.faq-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    color: #0a3a7a;
    position: relative;
}

/* Add a subtle + icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    display: block;
}

.service-area {
  padding: 80px 20px;
  text-align: center;
}

.service-area h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

/* Map container */
#map {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  
}

/* Pulse circle */
.pulse-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0.0.0.0);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite ease-out;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Floating dots container */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

/* Individual dots */
.floating-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(1px);
 
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
}

/* Layout for the two columns */
.service-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px; /* tighter, more Apple-like */
  margin-top: 50px;
  text-align: left;
}



/* Soft card style */
.service-info > div {
  background: rgba(255, 255, 255, 0.6); /* soft, airy */
  backdrop-filter: blur(8px); /* subtle glass effect */
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06); /* Apple shadow */
  width: 280px; /* consistent card width */
}

/* Headings inside cards */
.service-info h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Towns list spacing */
.towns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.towns li {
  margin-bottom: 8px;
  font-size: 1rem;
  opacity: 0.85;
}

/* Postcode checker spacing */
.postcode-checker input {
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

.postcode-checker button {
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 4px;
}
	</style>