@charset "UTF-8";

/*// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/


/* =====================================================
   TAILORED CLEANING SOLUTIONS - MASTER STYLESHEET
   ===================================================== */

/* =====================================================
   GLOBAL RESETS & BASE STYLES
   ===================================================== */

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background: #ffffff;
  width: 100%;
}

img {
  border: 0;
}

a {
  transition: 300ms linear;
  outline: 0;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#content-wrapper {
  display: none;
}



#margin{display: block; margin: 80px 0px;}

#margin2{display: block; margin: 120px 0px;}

#img-margin{margin-top: 50px;}

/* =====================================================
   CLEARFIX UTILITY
   ===================================================== */

.clearfix:after,
.footer-columns:after{
  content: "";
  display: block;
  clear: both;
}




/* =====================================================
   HERO SECTIONS
   ===================================================== */

/* Default Hero */
.homelands-hero,
.hero-centered {
  float: left;
  width: 100%;
  background: url("../images/bkgs/home-main-bgi.jpg");
  background-size: cover;
  padding: 180px 0px 80px 0px; /* Top padding increased to account for fixed nav */
}

.hero-container,
.hero-centered-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box;
}

.hero-centered-container {
  text-align: center;
}

#about-banner{background: url("../images/banners/main/about.jpg"); background-size: cover;}
#areas-banner{background: url("../images/banners/main/areas-covered.jpg"); background-size: cover;}
#contact-banner{background: url("../images/banners/main/contact-tailored-cleaning.jpg"); background-size: cover;}
#faqs-banner{background: url("../images/banners/main/frequently-asked-questions.jpg"); background-size: cover;}
#gallery-banner{background: url("../images/banners/main/gallery.jpg"); background-size: cover;}
#pricing-banner{background: url("../images/banners/main/pricing-cleaning-services.jpg"); background-size: cover;}
#reviews-banner{background: url("../images/banners/main/professional-cleaning-services-reviews.jpg"); background-size: cover;}
#tcs-banner{background: url("../images/banners/main/tailored-cleaning-solutions.jpg"); background-size: cover;}
#latest-news-banner{background: url("../images/banners/main/latest-news.jpg"); background-size: cover;}
#privacy-banner{background: url("../images/banners/main/privacy-policy.jpg"); background-size: cover;}
#terms-banner{background: url("../images/banners/main/terms.jpg"); background-size: cover;}

#professional-cleaning-services{background: url("../images/banners/services/professional-cleaning-services.jpg"); background-size: cover;}
#window-cleaning{background: url("../images/banners/services/window-cleaning-services.jpg"); background-size: cover;}
#carpet-cleaning{background: url("../images/banners/services/carpet-cleaning-services.jpg"); background-size: cover;}
#roof-cleaning{background: url("../images/banners/services/roof-cleaning-services.jpg"); background-size: cover;}
#upholstery-cleaning{background: url("../images/banners/services/upholstery-cleaning-services.jpg"); background-size: cover;}
#gutter-cleaning{background: url("../images/banners/services/gutter-cleaning-services.jpg"); background-size: cover;}
#gutter-repairs{background: url("../images/banners/services/gutter-repair-services.jpg"); background-size: cover;}
#pressure-washing{background: url("../images/banners/services/pressure-washing-services.jpg"); background-size: cover;}




/* =====================================================
   MASTER CONTAINER
   ===================================================== */

#master-container {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  background: #FFF;
  padding: 60px 0px;
}





/* =====================================================
  TOP BAR - FIXED AT TOP
   ===================================================== */

/* Top Bar */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
  NAVIGATION - FIXED BELOW TOP BAR WITH SCROLL EFFECT
   ===================================================== */

/* Navigation Container - Fixed positioning */
.nav-wrapper {
    position: fixed;
    top: 38px; /* Position below top bar */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Transparent background so hero shows through */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    padding: 0;
}

/* Scrolled state - Add background when scrolling */
.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Alternative scrolled state with darker background */
/* Uncomment this version if you prefer a more solid look */
/*
.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
*/

/* Alternative scrolled state with colored tint */
/* Uncomment this version if you want a subtle blue tint */
/*
.nav-wrapper.scrolled {
    background: linear-gradient(to bottom, rgba(240, 249, 255, 0.95), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
*/

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

/* Optional: Slightly reduce padding when scrolled for a more compact look */
.nav-wrapper.scrolled nav {
    padding: 10px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: left;
    transition: transform 0.3s ease;
}

.logo img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

/* Optional: Slightly smaller logo when scrolled */
.nav-wrapper.scrolled .logo img {
    height: 70px;
}

/* Navigation Menu - Uses flexbox with visual grouping */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Group navigation items in a pill (excludes contact button) */
.nav-menu li:not(:last-child) {
    background: rgba(255, 255, 255, 0.95);
}

.nav-menu li:first-child {
    border-radius: 50px 0 0 50px;
}

.nav-menu li:nth-last-child(2) {
    border-radius: 0 50px 50px 0;
}

.nav-menu li:not(:first-child):not(:nth-last-child(2)):not(:last-child) {

}

/* Spacing after the nav group, before contact button */
.nav-menu li:nth-last-child(2) {
    margin-right: 20px;
}

.nav-menu li {
    position: relative;
}

/* Navigation Links */
.nav-menu > li:not(:last-child) a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    white-space: nowrap;
    background: transparent;
}

.nav-menu > li:not(:last-child) a:hover {
    background: #e0f2fe;
    color: #0284c7;
}

/* Active/Current Page */
.nav-menu > li:not(:last-child) a.active{
    background: #06b6d4;
    color: #ffffff;
}
/* Active/Current Page */
.nav-menu > li:not(:last-child) a.current{
    background: #e0f2fe;
    color: #0284c7;
}

/* Dropdown Arrow */
.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    z-index: 100;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.dropdown-menu a {
    padding: 10px 18px !important;
    display: block;
    border-radius: 12px !important;
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #e0f2fe !important;
    color: #0284c7 !important;
}

/* Contact Button - Separate, Larger Green Pill */
.nav-menu li:last-child {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.contact-btn {
    background: #4ade80 !important;
    color: #ffffff !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3) !important;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #22c55e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 222, 128, 0.4) !important;
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333333;
    border-radius: 3px;
    transition: all 0.3s ease;
}



/* =====================================================
   WELCOME PANEL COMPONENT - HERO SECTION
   ===================================================== */

.welcome-panel {
    background: rgba(20, 25, 35, 0.80);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px 60px;
    max-width: 500px;
    margin: 0;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: left;
}

/* Operating Hours Badge */
.operating-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.operating-hours-badge strong {
    font-weight: 600;
    color: #ffffff;
}

/* Main Heading */
.welcome-heading {
    font-family: "Inter", sans-serif;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.company-name {
    color: #0085E4;
    display: block;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
}

/* Subtitle */
.welcome-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #E6F3FC;
    margin: 0 0 20px 0;
    font-weight: 400;
}

/* Testimonial Quote */
.testimonial-action {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #5DC908;
    margin: 0 0 40px 0;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Quote Button */
.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0085E4;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.quote-button:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
}

/* Social Proof Section */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Client Photos */
.client-photos {
    display: flex;
    align-items: center;
}

.client-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.client-photo:first-child {
    margin-left: 0;
}

.client-photo:hover {
    transform: scale(1.1);
    z-index: 10;
}

/* Rating Info */
.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: 12px;
    line-height: 1.4;
    color: #e5e7eb;
    margin: 0;
}

.rating-text strong {
    font-weight: 600;
    color: #ffffff;
}

/* =====================================================
   HOME PAGE CONTENT
   ===================================================== */

.hpheaders{
width: 1098px;
padding: 20px 50px;
float: left;
text-align: center;
border-radius: 30px;
border: 1px solid #9DA0A8;
background: #FDFDFD;
margin-bottom: 80px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.hpheaders h1{
color: #151A24;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 120% */
letter-spacing: 0;
display: block;
margin-bottom: 20px;}

.hpheaders h2{
color: #747883;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 120% */
letter-spacing: 0;}

.hp-strips{float: left; width: 1200px; margin-bottom: 100px;}

.hps-left{float: left; width: 570px;}

.hps-right{float: right; width: 570px;}

.hps-title{
display: block;
margin-bottom: 20px;
width: 130px;
padding: 4px 12px;
border-radius: 10px;
background: #E6F3F9;
color: #00518A;
font-family: "Inter", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 142.857% */
letter-spacing:  -0.16px;}

.large-header{
display: block;
color: #151A24;
font-family: "Inter", sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 48px; /* 120% */
letter-spacing: -0.3px;
margin-bottom: 20px;
}
.sub-header{
display: block;
color: #151A24;
font-family: "Inter", sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 30px; /* 120% */
letter-spacing: -0.3px;
margin-bottom: 20px;
}

.hp-strips p{
color: #151A24;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 0;
margin-bottom: 20px;}

/* =====================================================
   FEATURE BADGES
   ===================================================== */

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BDE99A;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #397B05;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 201, 8, 0.2);
}

.badge-icon {
    width: 16px;
    height: 16px;
    display: block;
}

/* =====================================================
   TESTIMONIAL & EMERGENCY SERVICES SECTION
   ===================================================== */


.testimonial-section {
    width: 100%;
    padding: 80px 0 60px 0;
}

.testimonial-container {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Quote Styling */
.testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto 30px auto;
    quotes: """ """ "'" "'";
}

.testimonial-quote::before {
    content: open-quote;
}

.testimonial-quote::after {
    content: close-quote;
}

/* Author Attribution */
.testimonial-author {
    margin-bottom: 40px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
}

/* Meet Team Button */
.meet-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E1F4FF;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.meet-team-btn:hover {
    background: #C9E9FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 133, 228, 0.15);
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

/* =====================================================
   EMERGENCY SERVICES CARD
   ===================================================== */

.emergency-section {
	float: left;
    width: 100%;
    padding: 40px 0 80px 0;
}

.emergency-container {
    width: 1100px;
    margin: 0 auto;
}

.emergency-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.emergency-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Left Side - Icon & Text */
.emergency-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-icon {
    flex-shrink: 0;
}

.emergency-icon img {
    display: block;
    width: 80px;
    height: 80px;
}

.emergency-text {
    text-align: left;
}

.emergency-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.emergency-subtext {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Right Side - Phone Button */
.emergency-action {
    flex-shrink: 0;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0085E4;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 133, 228, 0.3);
}

.phone-button:hover {
    background: #006BB8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 133, 228, 0.4);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* =====================================================
   WHAT YOU NEED TO KNOW SECTION
   ===================================================== */

.need-to-know-section {
    width: 1200px;
	float: left;
    background: #ffffff;
    margin: 0px 0px 100px 0px;
}

.need-to-know-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 110px;
}

/* =====================================================
   LEFT COLUMN - ICON, HEADING & DESCRIPTION
   ===================================================== */

.know-content {
    flex: 0 0 500px;
}

/* Icon */
.know-icon {
    margin-bottom: 20px;
}

.know-icon img {
    display: block;
    width: 140px;
    height: 140px;
}

/* Heading */
.know-heading {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    color: #151A24;
    margin-bottom: 20px;
}

.know-sub{
color:#151A24;
font-size:16px;
font-style: normal;
font-weight:700;
line-height:24px; /* 150% */
letter-spacing:0;
margin-bottom: 10px;
}

/* Description */
.know-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #151A24;
	margin-bottom: 20px;
}

/* Inside Content */

.inside-content {
    flex: 0 0 500px;
}


/* =====================================================
   CONTACT BUTTONS
   ===================================================== */

.know-email a {
    display: inline-block;
    max-height: 28px;
    padding: 10px 24px 10px 40px;
    border-radius: 999px;
    border: 1px solid #E6F3F9;
    background: #E6F3F9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #151A24;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    background-image: url("../images/services/contact/email-button.png"); 
    background-repeat: no-repeat;
    background-position: 12px center;  /* Changed to fixed pixel position */
    margin: 12px 0px;
    transition: all 0.3s ease;
}

.know-whatsapp a {
    display: inline-block;
    padding: 10px 24px 10px 40px;
    max-height: 28px;
    border-radius: 999px;
    border: 1px solid #5DC908;
    background: #5DC908;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #151A24;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.16px;
    background-image: url("../images/services/contact/whatsapp-button.png"); 
    background-repeat: no-repeat;
    background-position: 12px center;  /* Changed to fixed pixel position */
    transition: all 0.3s ease;
}

/* Email Button Hover */
.know-email a:hover {
    transform: translateY(-3px);
    background-color: #D4EAF7;
    background-position: 12px center;  /* Keep icon in same position */
    box-shadow: 0 4px 12px rgba(0, 133, 228, 0.25);
}

/* WhatsApp Button Hover */
.know-whatsapp a:hover {
    transform: translateY(-3px);
    background-color: #4BAE07;
    background-position: 12px center;  /* Keep icon in same position */
    box-shadow: 0 4px 12px rgba(93, 201, 8, 0.3);
}

/* Active/Click State for Both Buttons */
.know-email a:active,
.know-whatsapp a:active {
    transform: translateY(-1px);
}



/* =====================================================
   RIGHT COLUMN - CHECKLIST
   ===================================================== */

.know-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
	padding-right: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e8f5e9;
    transform: translateX(4px);
}

/* Checkmark Icon */
.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Checklist Text */
.checklist-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #1a1a1a;
}


.checklist-item {
    background: transparent;
    border: 2px solid #e0e0e0;
}

.checklist-item:hover {
    border-color: #5DC908;
    background: transparent;
}

.top-push{margin-top: 70px;}


/* If you want the icon to have a background circle */
/*
.check-icon {
    background: #5DC908;
    border-radius: 50%;
    padding: 4px;
}
*/

/* If you want more spacing between items */
/*
.know-checklist {
    gap: 20px;
}
*/

/* If you want the left column to be wider */
/*
.know-content {
    flex: 0 0 480px;
}
*/

/* =====================================================
   SERVICES SECTION - TWO COLUMN LAYOUT
   ===================================================== */


.services-section {
    width: 1150px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

/* =====================================================
   HEADER ELEMENTS
   ===================================================== */

/* Logo */
.services-logo {
    margin-bottom: 30px;
}

.services-logo img {
    display: inline-block;
}

/* Section Label */
.section-label {
margin: 0 auto;
width: 124px;
color:#00518A;
text-transform: uppercase;
margin-bottom: 20px;
border-radius: 10px;
background: #E6F3F9;
padding: 8px 12px;
gap: 8px;
font-family: "Inter", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 142.857% */
letter-spacing:  -0.16px;
}

/* Main Heading */
.services-heading {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* Description */
.services-description {
    font-size: 18px;
	font-weight: 700;
    line-height: 28px;
    color: #151A24;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* =====================================================
   SERVICES GRID - TWO COLUMNS
   ===================================================== */

.services-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.services-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =====================================================
   SERVICE CARD
   ===================================================== */

.service-card {
    background: #FDFDFD;
    border-radius: 40px;
    padding: 40px;
    text-align: left;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
	height: 530px;
}

.service-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Icon */
.service-icon {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon img {
    display: block;
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Service Tagline */
.service-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #151A24;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Service Content */
.service-content {
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #151A24;
    line-height: 1.5;
}

/* Service Button */
.service-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5DC908;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-button:hover {
    background: #4BAE07;
    transform: translateX(4px);
}

.button-arrow {
    width: 18px;
    height: 18px;
}

/* =====================================================
   INSIDE SERVICES STRIP SECTIONS
   ===================================================== */

#sslast-strip{margin-bottom: 80px;}

.services-strips{
float: left; 
width: 1130px;
padding: 20px; 
border-radius: 40px;
background: #FDFDFD;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
margin: 0px 0px 40px 15px;}

.ssleft{float: left; width: 545px;}

.ssright{float: right; width: 545px;}

.ssicon{float: left; display: block; margin-bottom: 25px; width: 100%;}

.services-strips h3{
color: #151A24;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 38px; /* 118.75% */
letter-spacing: -0.2px;
margin-bottom: 8px;}


.ss-sub-header{
color: #151A24;
font-size: 16px;
font-style: normal;
font-weight: 700;
letter-spacing: 0;
margin: 0 0 16px 0; /* top right bottom left */
}

.services-strips h4{
color: #151A24;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px; /* 118.75% */
letter-spacing: -0.2px;
margin-bottom: 8px;}



.services-strips p{
color: #151A24;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 0;
margin: 0 0 16px 0; /* top right bottom left */}






/* =====================================================
   SERVICE FEATURE SECTION
   ===================================================== */

.service-feature {
	display: block;
    width: 600px;
    margin: 0px auto 100px auto;
    overflow: hidden;
}

.service-feature-icon {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    margin-right: 20px;
}

.service-feature-icon img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.service-feature-content {
    overflow: hidden;
	padding-top: 10px;
}

.service-feature-content h4 {
    color: #151A24;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 6px 0;
}

.service-feature-content p {
    color: #151A24;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

/* Clearfix */
.service-feature::after {
    content: "";
    display: table;
    clear: both;
}


/* =====================================================
   GALLERY CONTENT SECTION
   ===================================================== */

.gallery-container {
	       float:left;
	       align-content: center;
            width: 1160px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .gallery-section {
            margin-bottom: 40px;
            background: #ffffff;
            padding: 40px;
            border-radius: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .gallery-section-header {
            margin-bottom: 30px;
        }

        .gallery-section-header h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #151A24;
        }

        .gallery-section-header p {
            font-size: 18px;
            color: #151A24;
            font-weight: 400;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 6px;
            aspect-ratio: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }


        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
			border-radius:30px;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
			border-radius: 30px;
        }

        /* Placeholder styles for testing */
        .gallery-item .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
            font-weight: bold;
        }


        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0);
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .gallery-item-overlay {
            background: rgba(0,0,0,0.3);
        }

        .gallery-item-overlay::after {
            content: '🔍';
            font-size: 32px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay::after {
            opacity: 1;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #2B99E8;
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            border-radius: 4px;
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            color: #ffffff;
            font-size: 40px;
            cursor: pointer;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.2);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

/* Close Button */
.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    border-radius: 50%;
    z-index: 10001;
}
 .lightbox-close:hover {
            transform: rotate(90deg);
        }

/* Counter */
.lightbox-counter {
    position: fixed;
    top: 30px;
    left: 30px;
    color: #ffffff;
    font-size: 16px;
    padding: 15px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

/* Caption */
.lightbox-caption {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    padding: 15px;
    z-index: 10001;
}

/* =====================================================
           HOW WE TAILOR SECTION - UNIQUE CLASS NAMES
           ===================================================== */

        /* Main Container */
        .hwt-section {
            width: 1190px;
            margin: 0px auto 80px auto;
        }

        /* Main Heading */
        .hwt-main-heading {
            font-size: 32px;
            font-weight: 600;
            line-height: 38px;
            color: #151A24;
            text-align: center;
            margin-bottom: 60px;
        }



 /* Main Heading */
        .hwt-sub-heading {
            font-size: 18px;
            font-weight: 700;
            line-height: 26px;
            color: #151A24;
            text-align: center;
            margin-bottom: 60px;
        }

        /* Features Grid - 2x2 */
        .hwt-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        /* Feature Card */
        .hwt-card {
            background: #ffffff;
            border-radius: 40px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            display: flex;
            gap: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hwt-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        /* Icon Container */
        .hwt-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hwt-icon img {
            width: 40px;
            height: 40px;
        }

        /* Content Container */
        .hwt-content {
            flex: 1;
        }

        /* Feature Title */
.hwt-title {
    width: auto;
    font-size: 24px;
    font-weight: 600;
    color: #0085E4;
    margin-bottom: 12px;
    line-height: 1.3;
    display: inline-block;  /* Changed from "block" to "inline-block" */
    padding: 4px 12px;
    border-radius: 10px;
    background: #E6F3F9;
}

.isst-title {
    width: auto;
    font-size: 24px;
    font-weight: 600;
    color: #151A24;
    margin-bottom: 12px;
    line-height: 1.3;
    display: inline-block;  /* Changed from "block" to "inline-block" */
}

        /* Feature Subtitle */
        .hwt-subtitle {
            font-size: 16px;
            font-weight: 700;
            color: #151A24;
            margin-bottom: 16px;
            line-height: 1.5;
        }

/* Feature Description */
.hwt-description {
color: #747883;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 142.857% */
letter-spacing: 0;
margin-bottom: 20px;
}

#hwtt-margin{margin-top: 40px;}
#hwt-small-margin{margin-bottom: 10px;}


/* =====================================================
   AREAS COVERED SECTION
   ===================================================== */

#area-margin{margin-bottom: 80px;}

.area-titles{width: 1140px; display: block; margin-bottom: 20px; text-align: left; margin-left: 60px; font-size: 22px; color: #151A24;}

.service-area-section {
    display: flex;
    padding: 32px 30px;
    align-items: center;
    gap: 30px;
    width: 1040px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 40px;
    background: #FDFDFD;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.service-area-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-area-content {
    flex: 0 0 550px;
}

.icon-container {
    width: 112px;
    height: 112px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
}

.service-area-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    color: #151A24;
    letter-spacing: -0.15px;
}

.locations-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    row-gap: 15px;
}



.location-badge {
    background-color: #BDE99A;
    color: #397B05;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-badge:hover {
    background-color: #a8d485;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(57, 123, 5, 0.2);
}

.location-badge:active {
    transform: translateY(0) scale(0.98);
}

.location-badge img {
    width: 16px;
    height: 16px;
}

.tick-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    background-image: url("../images/services/areas-covered/pin.png");
    transition: transform 0.3s ease;
}

.location-badge:hover .tick-icon {
    transform: rotate(12deg) scale(1.1);
}

.img-map{
	width: 1100px;
	height: auto;
	border-radius: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin: 0px 50px 40px 50px;}

        
/* =====================================================
   CONTACT FORM - UNIQUE CLASS NAMES
   ===================================================== */



/* Main Container */
.cf-section {
    float: left;
    width: 1200px;
    margin: 0px auto 80px auto;
}

/* Form Wrapper */
.cf-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
        
        /* Header Section */
        .cf-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .cf-title {
            display: inline-block;
            font-size: 24px;
            font-weight: 600;
            color: #0085E4;
            background: #E6F3F9;
            padding: 8px 24px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        
        .cf-subtitle {
            font-size: 18px;
            font-weight: 700;
            color: #151A24;
            margin-bottom: 16px;
        }
        
        .cf-description {
            font-size: 16px;
            line-height: 24px;
            color: #151A24;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Form Styles */
        .cf-form {
            margin-top: 40px;
        }
        
        .cf-form-group {
            margin-bottom: 20px;
        }
        
        .cf-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        
        /* Input Fields */
.cf-input-wrapper {
    position: relative;
}

.cf-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}


.cf-input-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.cf-email-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 12px;
    pointer-events: none;
}


.cf-email-input-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.cf-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;  /* ADD THIS LINE */
}
        
        .cf-input::placeholder {
            color: #999999;
        }
        
        .cf-input:focus {
            outline: none;
            border-color: #0085E4;
            box-shadow: 0 0 0 3px rgba(0, 133, 228, 0.1);
        }
        
        .cf-input.cf-error {
            border-color: #96CFE6;
        }
        
        .cf-input.cf-error:focus {
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }
        
        /* Textarea */
        .cf-textarea-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        
        .cf-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 180px;
    background: #ffffff;
    box-sizing: border-box;  /* ADD THIS LINE */
}
        
        .cf-textarea::placeholder {
            color: #999999;
        }
        
        .cf-textarea:focus {
            outline: none;
            border-color: #0085E4;
            box-shadow: 0 0 0 3px rgba(0, 133, 228, 0.1);
        }
        
        .cf-textarea.cf-error {
            border-color: #96CFE6;
        }
        
        /* Error Message */
        .cf-error-message {
            display: none;
            font-size: 13px;
            color: #005C9F;
            margin-top: 6px;
            font-weight: 500;
        }
        
        .cf-error-message.cf-show {
            display: block;
        }
        
        /* Checkbox */
        .cf-checkbox-group {
            margin: 30px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .cf-checkbox {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #0085E4;
        }
        
        .cf-checkbox-label {
            font-size: 14px;
            line-height: 1.6;
            color: #666666;
            cursor: pointer;
        }
        
        /* reCAPTCHA Container */
        .cf-recaptcha {
            margin: 30px 0;
            display: flex;
            justify-content: center;
        }
        
        /* Submit Button */
        .cf-submit-btn {
            width: 100%;
            padding: 16px 32px;
            background: #0085E4;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 133, 228, 0.3);
        }
        
        .cf-submit-btn:hover {
            background: #006BB8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 133, 228, 0.4);
        }
        
        .cf-submit-btn:active {
            transform: translateY(0);
        }
        
        .cf-submit-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .cf-btn-icon {
            width: 20px;
            height: 20px;
        }
        
        /* Success/Error Messages */
        .cf-message {
            display: none;
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 20px;
            font-size: 15px;
            font-weight: 500;
            text-align: center;
        }
        
        .cf-message.cf-show {
            display: block;
        }
        
        .cf-message.cf-success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #6ee7b7;
        }
        
        .cf-message.cf-error-msg {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }
        
        /* Loading Spinner */
        .cf-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: cf-spin 0.8s linear infinite;
        }
        
        .cf-submit-btn.cf-loading .cf-spinner {
            display: block;
        }
        
        .cf-submit-btn.cf-loading .cf-btn-text {
            display: none;
        }
        
        @keyframes cf-spin {
            to { transform: rotate(360deg); }
        }

/* =====================================================
   BLOG NAVIGATION
   ===================================================== */


    .blog-nav {
      width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 6px -6px #ccc;
      overflow: hidden;
	 font-family: 'Kanit', sans-serif;
	 margin-bottom: 80px;
    }

    .blog-header {
      background-color: #0085E4;
      color: white;
      padding: 20px;
      text-align: center;
    }

    .latest-posts {
      padding: 20px;
    }

    .latest-posts h2 {
      margin-bottom: 15px;
      color: #0085E4;
      border-bottom: 2px solid #96CFE6;
      padding-bottom: 10px;
      font-weight: 400;
      font-family: 'Kanit', sans-serif;
      font-size: 20px;
    }

    .post-item {
      padding: 15px;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
    }

    .post-item:hover {
      background-color: #f9f9f9;
    }

    .post-item a {
      color: #0085E4;
      text-decoration: none;
      font-weight: 500;
      display: block;
	  font-size: 16px;
    }

    .post-item a:hover {
      color: #96CFE6;
    }

    .post-date {
      font-size: 15px;
      color: #000;
      margin-top: 5px;
    }

    /* CSS-only accordion */
    .blog-accordion {
      border-top: 1px solid #ddd;
    }
    
    .blog-accordion-header {
      display: block;
      padding: 15px 20px;
      background-color: #0085E4;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      position: relative;
	  font-size: 18px;
    }

    .blog-accordion-header:hover {
      background-color: #96CFE6;
	  color: #005C9F;
    }

    .blog-accordion-header::after {
      content: "▼";
      position: absolute;
      right: 20px;
      transition: transform 0.3s;
    }

    .archive-month {
      padding: 10px 20px;
      background-color: #E1E4E5;
      font-weight: 500;
      color: #005C9F;
    }

    /* Hide accordion content by default */
    .blog-accordion-content {
       max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
    }

    /* Show accordion content when checkbox is checked */
    #older-posts-toggle {
      display: none;
    }

    #older-posts-toggle:checked ~ .accordion-content {
       max-height: 9999px;
    }

    #older-posts-toggle:checked ~ .accordion-header::after {
      transform: rotate(180deg);
    }





    .table-container {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Kanit', sans-serif;
            font-size: 15px;
        }

        th, td {
            padding: 14px;
            text-align: left;
            border: 1px solid #000;
        }

        th {
            background-color: #000;
            color: #E3177A;
            font-weight: bold;
			font-size: 20px;
			
        }

        .feature-cell {
            font-weight: bold;
            background-color: #f0f0f0;
        }

        /* Mobile responsive styles */
        @media screen and (max-width: 768px) {
            table, thead, tbody, th, td, tr {
                display: block;
            }

            thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

            tbody tr {
                border: 2px solid #000;
                margin-bottom: 10px;
                padding: 10px;
                background-color: #fff;
            }

            td {
                border: none;
                border-bottom: 1px solid #ddd;
                position: relative;
                padding-left: 35%;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            td:before {
                content: attr(data-label) ": ";
                position: absolute;
                left: 6px;
                width: 30%;
                padding-right: 10px;
                white-space: nowrap;
                font-weight: bold;
            }

            .feature-cell {
                background-color: transparent;
                font-weight: bold;
            }

            .feature-cell:before {
                content: "Feature: ";
            }
        }



/* =====================================================
   REVIEWS TICKERS
   ===================================================== */

.reviews-main-page{ width: 1000px; margin: 0px auto 80px auto; align-content: center; justify-content: center;}
.reviews-parallel{width: 1180px; margin: 0px auto 80px auto; align-content: center; justify-content: center;}



/* =====================================================
   VIDEO SECTION
   ===================================================== */

.video{float: left; padding: 0px 90px 80px 90px;}

.video iframe {
  border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); width: 1020px; height: 574px;
}


/* =====================================================
   ACCREDITATIONS
   ===================================================== */

.accrditations{float: left; width: 1200px; height: 140px; margin-bottom: 80px;}


/* =====================================================
   UNIVERSAL CONTENT STARTS
   ===================================================== */

.universal-container {
    width: 1200px;
    margin: 0 auto;
	float: left;
}

/* Top Row Layout */
.top-row {
    display: flex;
    gap: 0;
	margin-bottom: 15px;
}

.panel {
    flex: 1;
    padding: 50px 60px;
    border-radius: 30px;
}

/* Dark Panel (Left) */
.panel-dark {
    background-color: #1a1d2e;
    color: #ffffff;
    margin-right: 15px;
	background-image: url("../images/bkgs/need-a-rapid-response.png");
	background-repeat: no-repeat;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Light Panel (Right) */
.panel-light {
    background-color: #e8f4f8;
    color: #1a1d2e;
	background-image: url("../images/bkgs/enjoy-reduced-rates.png");
	background-repeat: no-repeat;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Main Heading */
.main-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 16px;
}

.highlight-blue {
    color: #0085E4;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-text {
    flex: 1;
}

.call-text {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.call-text strong {
    font-weight: 700;
}

.phone-link {
    color: #00a9e0;
    text-decoration: none;
    font-weight: 700;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Body Text */
.body-text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    color: #E6F3FC;
}

.body-text strong {
    font-weight: 700;
    color: #ffffff;
}

/* Top Badge */
.top-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.badge-text {
    font-size: 14px;
    line-height: 20px;
    color: #1a1d2e;
    margin: 0;
}

.badge-text strong {
    font-weight: 700;
}

/* Section Heading */
.section-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #0085E4;
    margin-bottom: 16px;
}
.shbblack{color: #151A24;}

/* Subheading */
.subheading {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #151A24;
    margin-bottom: 8px;
}

/* Body Text Light */
.body-text-light {
    font-size: 14px;
	font-weight: 400;
    line-height: 20px;
    color: #151A24;
    margin-bottom: 20px;
}

.body-text-light strong {
    font-weight: 700;
}

/* Bottom Section */
.bottom-section {
    background-color: #f5f5f5;
    border-radius: 30px;
    margin-top: 8px;
    padding: 50px 60px;
    min-height: auto;
    background-image: url("../images/bkgs/book-your-clean-today.png");
    background-repeat: no-repeat;
	margin-bottom: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.bottom-content {
    max-width: 600px;
}

/* Book Heading */
.book-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #0085E4;
    margin-bottom: 16px;
}

.book-subheading {
    font-size: 32px;
    font-weight: 700;
	line-height: 38px;
    color: #151A24;
}

/* Contact Box Bottom */
.contact-box-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 16px 0;
}

.trusted-text {
    font-size: 18px;
    line-height: 28px;
    color: #151A24;
    margin: 0;
}

.trusted-text strong {
    font-weight: 700;
}

/* Coverage Heading */
.coverage-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 8px;
}

/* Body Text Bottom */
.body-text-bottom {
	width: 500px;
    font-size: 14px;
    line-height: 20px;
    color: #151A24;
    margin-bottom: 8px;
}

.body-text-bottom strong {
    font-weight: 700;
}

/* Icon Placeholders */
.icon-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* =====================================================
   TEAM SECTION STARTS
   ===================================================== */


/* Team Section - 700px centered */
.team-section {
    max-width: 700px;
    margin: 0px auto 160px auto;
	text-align: center;
}

/* Section Badge */
.team-badge {
	display: inline-block;
	text-align: center;    
    background-color: #E6F3F9;
    color: #00518A;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Main Heading */
.team-main-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #151A24;
    margin-bottom: 50px;
    text-align: center;
}

/* Team Member Section */
.team-member {
    margin-bottom: 50px;
	text-align: left;
}

/* Member Name */
.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Member Title */
.member-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blue-title {
    color: #0ea5e9;
}

.green-title {
    color: #397B05;
}

/* Quote Box */
.quote-box {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid;
}

.blue-quote {
    background-color: #E6F3F9;
    border-left-color: #0085E4;
}

.green-quote {
    background-color: #EFFAE6;
    border-left-color: #5DC908;
}

/* Quote Text */
.quote-text {
    font-size: 16px;
	font-weight: 500;
    line-height: 24px;
    color: #151A24;
    margin-bottom: 20px;
}

.quote-text em {
    font-style: italic;
}

/* Quote Attribution */
.quote-attribution {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Member Description */
.member-description {
    font-size: 16px;
    line-height: 24px;
	font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 30px;
}



/* =====================================================
   PARTNERING SECTION STARTS
   ===================================================== */



/* Team Section - 700px centered */
.title-section {
    max-width: 700px;
    margin: 0px auto 80px auto;
	text-align: center;
}

#ts-narrow{max-width: 500px;}

/* Section Badge */
.title-badge {
	display: inline-block;
	text-align: center;    
    background-color: #E6F3F9;
    color: #00518A;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Main Heading */
.title-main-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #151A24;
    margin-bottom: 16px;
    text-align: center;
}

.title-sub-heading{
color: #151A24;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 155.556% */
letter-spacing: 0;
}

.title-main{
color: #151A24;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 0;
}



/* =====================================================
   PARTNERING SECTION STARTS
   ===================================================== */


 .partnering-container {
	 float: left;
            max-width: 1200px;
            padding: 0 20px;
	        margin: 80px auto;
        }

        .partnering-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .partnering-header h3 {
            font-size: 40px;
            font-weight: 600;
            color: #151A24;
            line-height: 48px;
        }

        .properties-wrapper {
            display: flex;
            gap: 40px;
            justify-content: space-between;
        }

        .property-card {
            flex: 1;
            background: #ffffff;
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .property-card.residential {
            background: #fff;
        }

        .property-card.commercial {
            background: #E6F3F9;
        }

        .icon-wrapper {
            width: 112px;
            height: 112px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 50px;
        }

        .property-title {
            font-size: 24px;
            font-weight: 600;
            color: #151A24;
            margin-bottom: 20px;
        }

        .property-description {
            font-size: 16px;
			font-weight: 500;
            line-height: 24px;
            color: #151A24;
            margin-bottom: 35px;
        }

        .types-heading {
            font-size: 18px;
            font-weight: 700;
            color: #151A24;
            margin-bottom: 20px;
        }

        .property-list {
            list-style: none;
        }

        .property-list li {
            background: rgba(255, 255, 255, 0.6);
            padding: 8px 12px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 16px;
            color: #151A24;
			border-radius: 20px;
            border: 2px solid #EAECED;
        }

        .checkmark {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

/* =====================================================
   FAQS HEADER STARTS
   ===================================================== */

.faqs-header{width: 1200px; float: left; margin-bottom: 80px;}
.faqsqmark{width: 160px; height: 160px; float: left; margin-right: 80px; background-image: url("../images/services/faqs/faqs-question-mark.png"); background-repeat: no-repeat;}

.faqscopy{color: #151A24;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 48px; /* 120% */
letter-spacing: -0.3px;}

#less-margin{margin-bottom: 20px;}

#fhm-top{margin-top: 80px;}
#fhm-bottom{margin-bottom: 40px;}


/* =====================================================
   ACCORDION SECTION
   ===================================================== */

.accordion-section {
  float: left;
  width: 100%;
  margin-bottom: 80px;
}

.accordion-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.accordion-container {
  width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 28px 35px;
  cursor: pointer;
  gap: 20px;
  transition: background-color 0.3s ease;
}

.accordion-header:hover,
.accordion-item.active .accordion-header {
  background-color: #E6F3F9;
}

.accordion-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(150, 207, 230, 0.40);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: #0085E4;
}

.accordion-title {
  flex: 1;
  font-size: 24px;
  font-weight: 500;
  color: #0085E4;
  line-height: 30px;
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  stroke: #0085E4;
  stroke-width: 2;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1200px;
}

.accordion-content-inner {
  padding: 20px 60px 35px 105px;
}

.accordion-content-inner p {
  font: 400 16px/150% "Inter", sans-serif;
  color: #151A24;
  margin: 0 0 20px;
}

.accordion-content-inner p a{
  color: #0085E4;
text-decoration: underline;

}


.accordion-content-inner h4 {
  font: 600 16px/150% "Inter", sans-serif;
  color: #0085E4;
  margin: 0 0 20px;
}

.accordion-content-inner ul {
  font-family: "Inter", sans-serif;
  color: #151A24;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  list-style: none;
}

.accordion-content-inner ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.accordion-content-inner ul li:last-child {
  margin-bottom: 0;
}

.accordion-content-inner ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0085E4;
  font-weight: 600;
  font-size: 18px;
}

.accordion-content-inner strong {
  color: #0085E4;
}

.accordion-content-inner hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 30px 0;
}

/* =====================================================
   PRIVACY POLICY
   ===================================================== */

.pp-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0;
}

.pp-container h1,
.pp-container h2,
.pp-container h3 {
  font-family: "Inter", sans-serif;
  color: #0084E3;
  margin-bottom: 16px;
}

.pp-container h1 {
  font-size: 36px;
  font-weight: 400;
  border-bottom: 2px solid #0084E3;
  padding-bottom: 10px;
  color: #22252B;
}

.pp-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0084E3;
  margin-top: 40px;
}

.pp-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pp-container ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.pp-container ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.pp-container a {
  color: #0084E3;
  text-decoration: none;
}

.pp-container a:hover {
  text-decoration: underline;
}

.pp-container hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 30px 0;
}

.pp-updated {
  font-size: 14px;
  font-weight: 700;
  color: #0084E3;
  display: block;
  margin-bottom: 24px;
}

.pp-address-list p {
  margin: 4px 0;
}

.pp-address-list strong {
  color: #0084E3;
}

.pp-highlight-box {
  background: #FAFAFB;
  border-radius: 10px;
  padding: 24px;
  margin-top: 40px;
}

.pp-highlight-box p {
  margin: 8px 0;
}

.pp-highlight-box strong {
  color: #0084E3;
}


/* =====================================================
   SEO NAVIGATION
   ===================================================== */


/* Main Wrapper - 1200px */
.rs-wrapper {
    width: 1190px;
    margin: 0px auto 80px auto;
}

/* Section Heading */
.rs-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
	padding: 0px 170px;
}

/* Services Grid - 4 Columns */
.rs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Individual Service Card */
.rs-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.rs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Card Image Container */
.rs-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.rs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.rs-card:hover .rs-image img {
    transform: scale(1.05);
}

/* Card Title */
.rs-title {
    padding: 20px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    text-align: left;
}

/* =====================================================
   NEARBY CONTENT
   ===================================================== */

/* Container */
.nearby-container {
    max-width: 1200px;
    margin: 0px auto 80px auto;
}

/* Heading */
.nearby-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a3b4d;
    margin-bottom: 30px;
}

/* List Container */
.nearby-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

/* Individual List Items */
.nearby-list li {
    display: inline-block;
}

/* Links (Pill-shaped buttons) */
.nearby-list li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    color: #1a3b4d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effect */
.nearby-list li a:hover {
    background-color: #96CDF4;
    border-color: #005C9F;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Active/Pressed State */
.nearby-list li a:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}












/* =====================================================
   FOOTER
   ===================================================== */
.footer-section {
  float: left;
  width: 100%;
  background: #151A24;
  text-align:  left;
}
.footer-container {
  width: 1200px;
  margin: 0 auto;
  padding: 64px 50px;
  box-sizing: border-box;
}

.footer-columns {
  width: 100%;
  margin-bottom: 40px;
}
.footer-col {
  float: left;
  margin-left: 140px;
}
.footer-col:last-child {
  margin-right: 0;
}
.footer-col.nav-col {
  width: 220px;
}
.contact-item {
  font: 400 16px/160% "Inter", sans-serif;
  color: #A6A8AC;
  margin: 0 0 12px;
  position: relative;
  padding-left: 28px;
}
.contact-item a {
  color: #E6F3FC;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #0085E4;
}
.footer-col h4 {
  font: 600 16px/140% "Inter", sans-serif;
  color: #0085E4;
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font: 400 16px/160% "Inter", sans-serif;
  color: #E6F3FC !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #0085E4 !important;
}




/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Add this class to any card to make it stand out */
.service-card.featured {
    border: 2px solid #5DC908;
}

/* Add this class to highlight certain text */
.text-blue {
    color: #0085E4;
}

.text-green {
    color: #5DC908;
}





/* =====================================================
   FOOTER SOCIAL MEDIA ICONS
   ===================================================== */

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-icon:hover {
  background: rgba(0, 133, 228, 0.15);
  transform: translateY(-3px);
}

.footer-social .social-icon img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social .social-icon:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #005C9F;
  padding-top: 32px;
  text-align: center;
}
.footer-bottom p {
  font: 200 14px/150% "Inter", sans-serif;
    letter-spacing: 1px;
  color: #E6F3FC;
  margin: 0;
}
.sig{float: right; font-size: 10px; color: #A6A8AC; margin: 0px 20px 10px 0px;}
.sig a{color: #A6A8AC;}




/* =====================================================
   UI TO TOP
   ===================================================== */

#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  width: 51px;
  height: 51px;
  border: none;
  text-indent: 100%;
  background: url(../ui.totop.png) no-repeat left top;
}

#toTopHover {
  background: url(../ui.totop.png) no-repeat left -51px;
  width: 51px;
  height: 51px;
  display: block;
  overflow: hidden;
  float: left;
  opacity: 0;
  filter: alpha(opacity=0);
}

#toTop:active,
#toTop:focus {
  outline: none;
}

/* =====================================================
   COOKIE CONSENT
   ===================================================== */

.cc-banner {
  text-align: left;
}

/* =====================================================
   SCROLL REVEAL ANIMATION STYLES - FADE ONLY
   ===================================================== */

/* Initial hidden state - FADE ONLY */
[class*="revealFX"] {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* Visible state (after scroll) */
[class*="revealFX"].reveal-visible {
    opacity: 1;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    [class*="revealFX"] {
        opacity: 1;
        transition: none;
    }
}