* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
} 

body {
    line-height: 1;
    overflow: hidden;
}

/* //////////VERTICAL-NAV */

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #f7f7f7; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; 
    border-left: 3px solid #dfebeb;
  }
  
  /* The navigation menu links */
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #444;
    display: block;
    transition: 0.3s;
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav a:hover {
    color: #fff;
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0.6rem;
    right: 2rem;
    font-size: 36px;
    margin-left: 50px;
  }

  .sub-link {
    margin-left: 1rem;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }

  .open-nav {
      z-index: 999;
      font-size: 5rem;
      color: #333;
      display: none;
      padding-right: 0.6;
      margin-left: auto;
      align-self: flex-end;
      justify-self: flex-end;
      margin-bottom: 1rem;
  }

  .closebtn,
  .open-nav {
    width: 4rem;
    filter: brightness(0);
  }


/*------- Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f7f7f7;
    color: #333;
    z-index: 1000;
    box-shadow: 0 2px 5px #dfebeb;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Logo */
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dfebeb;
    text-decoration: none;
  }

  .nav-logo {
    /* background-color: #dfebeb; */
    width: 9rem;
    position: fixed;
    top: 1rem;
    left: 1rem;
  }

  @media (max-width: 500px) {
    .nav-logo {
      width: 5rem;
    }
  }
  
  /* Menu styling */
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2.4rem;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .nav-menu li {
    display: inline-block;
  }
  
  .nav-link {
    padding: 1.2rem 0;
    text-decoration: none;
    color: #444;
    font-size: 2.4rem;
    transition: color 0.3s ease;
    cursor: pointer;
  }
  
  .nav-link:hover {
    color: #3b91d8;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f7f7;
    /* min-width: 20rem; */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 3px solid #dfebeb;
    border-top: 0px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    font-size: 2.4rem;
    color: #555;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #fff;
color: #3b91d8;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .nav-link {background-color: #f7f7f7;}

.nav-down-arrow {
    width: 1.6rem;
    margin-left: 0.6rem;
    filter: brightness(0);
}
/* Hero Section Container */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    background: url('/imgs/heroBanner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
  }
  
  /* Overlay for Readability */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
  }
  
  /* Hero Content Container */
  .hero-content {
    position: relative;
    padding: 0 20px;
    max-width: 800px;
    z-index: 1;
    animation: heroFadeIn 1.2s ease-out;
  }
  
  /* Title Styling */
  .hero-title {
    font-size: 4.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  /* Subtitle Styling */
  .hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  
  /* Button Styling */
  .hero-btn {
    background-color: #f7f7f7;
    color: #333;
    border: none;
    padding: 14px 28px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #e58800;
  }
  
  /* Fade-in Animation */
  @keyframes heroFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design Adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .hero-btn {
      font-size: 1rem;
      padding: 12px 24px;
    }
  }

  /* Base styles for intro section */
.intro {
    padding: 4.8rem 0.6rem;
    font-family: 'Arial', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
  }
  
  .intro-container {
    max-width: 120rem;
    text-align: center;
  }
  
  /* Heading and intro text styling */
  .intro-heading {
    font-size: 2.6rem;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
  }
  
  .intro-text {
    font-size: 2rem;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
  }
  
  /* Feature cards container */
  .intro-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Individual feature item styling */
  .feature-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 25px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    background-color: #f7f7f7;
  }
  
  /* Staggered animation delays for each card */
  .feature-item:nth-child(1) { animation-delay: 0.6s; }
  .feature-item:nth-child(2) { animation-delay: 0.9s; }
  .feature-item:nth-child(3) { animation-delay: 1.2s; }
  
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .feature-title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
  
  .feature-description {
    font-size: 2rem;
    line-height: 1.5;
  }
  
  /* Fade-up animation */
  @keyframes fadeUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .intro-features {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-item {
      width: 100%;
      max-width: 400px;
    }
  
    .intro-heading {
      font-size: 2rem;
    }
  
    .intro-text {
      font-size: 1rem;
    }
  }
  
  .gallery-section {
    padding: 4.8rem 0.6rem;
    text-align: center;
    max-width: 120rem;
    margin: 0 auto;
  }
  
  .gallery-heading {
    font-size: 3rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInZoom 0.8s ease forwards;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Animations */
  @keyframes fadeInZoom {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 400px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  

  .testimonials-section {
    padding: 4.8rem 0.6rem 0;
    background-color: #ffffff;
    text-align: center;
    max-width: 120rem;
    margin: 0 auto;
  }
  
  .testimonials-heading {
    font-size: 2rem;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .testimonials-card {
    background-color: #f3f3f3;
    border-radius: 16px;
    padding: 2.4rem 1.2rem;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .testimonials-quote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
  }
  
  .testimonials-meta {
    font-size: 1.6rem;
    font-weight: bold;
    color: #555;
    margin-top: auto;
  }
  
  .testimonials-name {
    display: block;
  }
  
  .testimonials-type {
    font-weight: normal;
    color: #888;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  @media (max-width: 900px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .locations-section {
    padding: 9.6rem 0.6rem 4.8rem;
    background-color: #fdfdfd;
    text-align: center;
    margin: 0 auto;
  }
  
  .locations-heading {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  
  .locations-subheading {
    font-size: 2rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .locations-item {
    display: block;
    background-color: #f3f3f3;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .locations-item:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
  }
  
  .faq-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
    text-align: center;
  }
  
  .faq-heading {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 0rem 0.6rem 1.2rem;
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 2rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    height: 0;
    overflow: hidden;
    font-size: 1.8rem;
    transition: height 0.3s ease;
  }
  
  


/* -------CTA  */

.cta {
    padding: 4.8rem 0.6rem 2.4rem;
    background-color: #fff;
}

.cta .cta-box {
    max-width: 120rem;
    margin: 0 auto;
    letter-spacing: 0.5px;
    padding: 1.2rem 0.6rem;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    border-left: 6px solid #f7f7f7;
}

.cta-form {
    align-self: center;
}

.cta-text {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-items: center;
    align-items: center;
    color: #777;
}

.cta-title {
    font-size: 3.6rem;
    font-weight: 200;
    color: #333;
    text-align: center;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 2.4rem;
    text-align: center;
    padding: 1.2rem;
}

.email-text,
.number-text {
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
}

.email-text {
    font-size: 1.8rem;
}

.cta-socials {
    align-self: center;
    justify-self: center;
    display: flex;
    gap: 6.2rem;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-box {
    border: none;
    border-bottom: 3px solid #dfebeb;
    resize: none;
    padding: 1.2rem;
    background-color: #fff;
}

.input-box::placeholder {
    font-family: 'Quicksand', sans-serif;
    color: #999;
}

.message-input {
    height: 12rem;
}

.message-input::placeholder {
    font-family: 'Quicksand', sans-serif;
    color: #999;
}

.submit-btn {
    width: auto;
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    border: none;
    background-color: #555;
    color: #fff;
    border-radius: 2px;
    font-size: 2.4rem;
    cursor: pointer;
    /* border: 1px solid #0d3b66; */
}


  /* ---------FOOTER */

.footer {
    padding: 4.8rem;
    background-color: #f7f7f7;
    color: #555;

    display: grid;
    grid-template-columns: 1fr;
}

.footer-box {
    max-width: 150rem;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo-copy {
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 20rem;
}

.copyright {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #555;
}

.footer-socials-box {
    display: flex;
    gap: 2.4rem;
}

.footer-social {
    width: 4.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social:hover {
    transform: scale(1.05);
}

.footer-header {
    font-size: 2.8rem;
    padding-bottom: 1.8rem;
    color: #444;
}

.footer-details {
    font-size: 1.8rem;
}

.footer-link {
    font-size: 2.2rem;
    text-decoration: none;
    color: #555;
    position: relative;
}

.created-by {
    justify-self: center;
    margin-top: 5rem;
    font-size: 1.8rem;
    color:#fff;
    text-align: center;
}

.pauledward {
    text-decoration: none;
    color: #fff;
}

.footer-placeholder {
    font-size: 4.8rem;
}


.page {
    padding: 9.6rem 0.6rem 2.4rem;
}

.page-box {
    max-width: 100rem;
    margin: 0 auto;
}

.page-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;    
}

.page-title
 {
    font-size: 4.8rem;
    color: #f7f7f7;
    border-bottom: 3px solid #dfebeb;
    margin-right: auto;
    border-radius: 15px;
    text-align: center;
}

.page-header {
    color: #444;
    font-size: 3.6rem;
    text-align: center;
    font-weight: 100;
}

.page-text {
    font-size: 2.4rem;
    color: #666;
    text-align: center;
}

.mini-cta {
    padding: 0rem 0.6rem !important;
}


.pageHero {
  padding: 6rem 0.6rem 4.8rem;
  background-color: #f9f9f9;
  margin-top: 4rem;
}

.pageHero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pageHero-content {
  flex: 1 1 250px;
}

.pageHero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #333;
}

.pageHero-subtitle {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #666;
}

.pageHero-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  font-size: 2rem;
}

.pageHero-button:hover {
  background-color: #444;
}

.pageHero-imageWrapper {
  flex: 1 1 300px;
  text-align: center;
}

.pageHero-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.patioService {
  padding: 4.8rem 0.6rem;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
}

.patioService-container {
  max-width: 1200px;
  margin: 0 auto;
}

.patioService-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #222;
}

.patioService-intro {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #555;
}

.patioService-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.patioService-column {
  flex: 1 1 300px;
}

.patioService-subtitle {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.patioService-list {
  list-style: disc inside;
  color: #444;
  font-size: 1.8rem;
  line-height: 1.6;
}

.patioService-badges {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.8rem;
}

.patioService-badges li {
  background-color: #f2f2f2;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1.8rem;
  color: #333;
}

.whyChoose {
  padding: 0;
}

.whyChoose-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
}

.whyChoose-image {
  flex: 1 1 40%;
  background-image: url('/imgs/hexPat.png');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

@media (max-width: 500px) {
  .whyChoose-image {
    display: none;
  }
}

.whyChoose-content {
  flex: 1 1 60%;
  padding: 4.8rem 0.6rem;
  max-width: 800px;
  margin-left: auto;
}

.whyChoose-title {
  font-size: 2.6rem;
  margin-bottom: 2.4rem;
  color: #222;
}

.whyChoose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
}

.whyChoose-list li {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  color: #000;
  font-weight: 600;
}

.whyChoose-footer {
  font-size: 1.8rem;
  color: #555;
}

.blog-hub {
  padding: 9.6rem 0.6rem 4.8rem 0.6rem;
}

.blog-hub-box {
  margin: 0 auto;
  max-width: 140rem;
}

.blog-hub-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.4rem;
}

.blog-hub-item {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
}

.blog-hub-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-hub-img-box {
  overflow: hidden;
}

.blog-hub-img {
  width: 100%;
}

.blog-hub-header {
  font-size: 3.6rem;
  color: #333;
  text-align: center;
  padding: 1.2rem;
  text-decoration: none;
}

.blogHero {
  padding: 2.4rem 0.6rem;
  background-color: #eee;
}

.blogHeroBox {
  margin: 0 auto;
  max-width: 100rem;
}

.blogHeroContainer {
  display: flex;
  gap: 3.6rem;
}

.blogHeroTextBox {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.blogHeroHeader {
  font-size: 3.6rem;
  color: #333;
  margin-bottom: 2.4rem;
}

.blogHeroCaption {
  font-size: 2rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.blogHeroCaptionSpan {
  color: #3b91d8;
}

.blogHeroText {
  font-size: 2.4rem;
  color: #555;
  margin-bottom: 2.4rem;
}

.blogHeroBtns {
  display: flex;
  gap: 3.6rem;
}

.blogHeroBtnOne {
  padding: 0.6rem 1.2rem;
  background-color: #333;
  color: #fff;
  font-size: 2.4rem;
  text-decoration: none;
}

.blogHeroBtnTwo {
  padding: 0.6rem 1.2rem;
  border:1px solid #333;
  color: #333;
  font-size: 2.4rem;
  text-decoration: none;
}


.blog {
  padding: 9.6rem 0.6rem 4.8rem 0.6rem;
}

.listTwo {
  background-color: #ffffff;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.listTwo-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.listTwo-intro {
  font-size: 2rem;
  color: #4a5568;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.listTwo-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2rem 0;
  border-top: 1px solid #e2e8f0;
}

.listTwo-item:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.listTwo-number {
  font-size: 2.4rem;
  font-weight: bold;
  color: #4a90e2;
  min-width: 3.6rem;
  text-align: right;
}

.listTwo-content h3 {
  font-size: 2.6rem;
  color: #1a202c;
  margin-bottom: 0.4rem;
}

.listTwo-content p {
  font-size: 2rem;
  color: #4a5568;
  line-height: 1.6;
}

.blogCard {
  padding: 4rem 2rem;
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.blogCard-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 2.4rem;
  color: #2d3748;
}

.blogCard-intro {
  text-align: center;
  font-size: 1.6rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.blogCard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blogCard-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.blogCard-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.blogCard-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.blogCard-item ul {
  padding-left: 1.4rem;
  list-style-type: disc;
  color: #4a5568;
  font-size: 1.5rem;
  line-height: 1.6;
}

.flood-risk-calculator {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #f9f9f9;
  font-family: sans-serif;
}

.flood-risk-heading {
  text-align: center;
  margin-bottom: 20px;
}

.flood-risk-form label {
  display: block;
  margin: 15px 0 5px;
}

.flood-risk-form select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#flood-risk-submit {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #357edd;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

#flood-risk-submit:hover {
  background-color: #2a5db0;
}

.flood-risk-result {
  margin-top: 20px;
  padding: 15px;
  background-color: #e6f7ff;
  border-left: 4px solid #1890ff;
  border-radius: 6px;
  font-size: 1.6rem;
}

.patio-cost-calculator {
  max-width: 550px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.patio-cost-heading {
  text-align: center;
  margin-bottom: 20px;
}

.patio-cost-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.patio-cost-form input[type="number"],
.patio-cost-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.patio-cost-checkboxes label {
  display: block;
  margin-top: 8px;
}

#patio-cost-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #2b7a78;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

#patio-cost-submit:hover {
  background-color: #205e5c;
}

.patio-cost-result {
  margin-top: 25px;
  padding: 15px;
  background-color: #e6f7ff;
  border-left: 4px solid #1890ff;
  border-radius: 6px;
  font-size: 1.6rem;
}

.patio-size-calculator {
  max-width: 550px;
  margin: 40px auto;
  padding: 20px;
  background: #f4f6f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.patio-size-heading {
  text-align: center;
  margin-bottom: 20px;
}

.patio-size-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.patio-size-form select,
.patio-size-form input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.patio-size-checkboxes label {
  display: block;
  margin-top: 8px;
}

#patio-size-submit {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  background-color: #2f855a;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#patio-size-submit:hover {
  background-color: #276749;
}

.patio-size-result {
  margin-top: 25px;
  padding: 15px;
  background-color: #edfdf5;
  border-left: 4px solid #38a169;
  border-radius: 6px;
  font-size: 1.4rem;
}

.stamped-pattern-calculator {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.stamped-pattern-heading {
  text-align: center;
  margin-bottom: 20px;
}

.stamped-pattern-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.stamped-pattern-form input,
.stamped-pattern-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#stamped-pattern-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #3b5998;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#stamped-pattern-submit:hover {
  background-color: #2e477a;
}

.stamped-pattern-result {
  margin-top: 30px;
  padding: 15px;
  background-color: #eef6ff;
  border-left: 4px solid #2b6cb0;
  border-radius: 6px;
  font-size: 1.6rem;
}

.stamped-pattern-preview img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 6px;
}

.drainage-slope-calculator {
  max-width: 550px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.drainage-slope-heading {
  text-align: center;
  margin-bottom: 20px;
}

.drainage-slope-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.drainage-slope-form input,
.drainage-slope-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#drainage-slope-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #22543d;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#drainage-slope-submit:hover {
  background-color: #1a3a2d;
}

.drainage-slope-result {
  margin-top: 25px;
  padding: 15px;
  background-color: #e6fffa;
  border-left: 4px solid #38b2ac;
  border-radius: 6px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.material-compare-calculator {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.material-compare-heading {
  text-align: center;
  margin-bottom: 20px;
}

.material-compare-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.material-compare-form input,
.material-compare-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#material-compare-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #5a67d8;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#material-compare-submit:hover {
  background-color: #434190;
}

.material-compare-result {
  margin-top: 30px;
  padding: 15px;
  background: #f0f4ff;
  border-left: 4px solid #4c51bf;
  border-radius: 6px;
  overflow-x: auto;
}

.material-compare-result table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.material-compare-result th,
.material-compare-result td {
  border: 1px solid #dbe2ef;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.material-compare-result th {
  background-color: #e2e8f0;
}

.material-compare-link {
  font-size: 1.6rem;
}

.material-compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 15px;
}

.material-compare-table-wrapper table {
  min-width: 650px;
}

.slab-calc-calculator {
  max-width: 550px;
  margin: 40px auto;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: sans-serif;
}

.slab-calc-heading {
  text-align: center;
  margin-bottom: 20px;
}

.slab-calc-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.slab-calc-form input,
.slab-calc-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#slab-calc-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #1a202c;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#slab-calc-submit:hover {
  background-color: #2d3748;
}

.slab-calc-result {
  margin-top: 25px;
  padding: 15px;
  background: #edf2f7;
  border-left: 4px solid #2c5282;
  border-radius: 6px;
  font-size: 1.4rem;
}

.roi-calc-calculator {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  font-family: sans-serif;
}

.roi-calc-heading {
  text-align: center;
  margin-bottom: 20px;
}

.roi-calc-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 1.4rem;
}

.roi-calc-form input,
.roi-calc-form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#roi-calc-submit {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #2f855a;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#roi-calc-submit:hover {
  background-color: #276749;
}

.roi-calc-result {
  margin-top: 25px;
  padding: 15px;
  background: #f0fff4;
  border-left: 4px solid #38a169;
  border-radius: 6px;
  font-size: 1.6rem;
}

/* //////////PAGE-Z SECTION//////// */

.page-z {
    padding: 4.8rem 0.6rem;
}

.page-z-box {
    max-width: 140rem;
    margin: 0 auto;
}

.page-z-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 4.8rem;
}

.page-z-img {
    width: 95%;
}

.page-z-text-box {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    align-items: center;
    justify-content: center;
}

.page-z-header {
    color: #3a747e;
    font-size: 3.6rem;
    text-align: center;
    font-weight: 100;
}

.page-z-text {
    color: #666;
    font-size: 2.4rem;
    text-align: center;
}

  .serviceSplit-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto 0rem auto;
    background-color: #f9f9f9;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  
  .serviceSplit-block {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
  }
  
  .serviceSplit-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .serviceSplit-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
  }
  
  .serviceSplit-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.6rem;
    margin-top: auto;
  }
  
  .serviceSplit-list li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 0.75rem;
  }
  
  .serviceSplit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2a9d8f;
    font-weight: bold;
  }
  
  @media (max-width: 40.6rem) {
    .serviceSplit-container {
      flex-direction: column
    }
  }

    .whyChooseSplit-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    max-width: 140rem;
    margin: 0 auto 0rem auto;
    padding: 3rem 1.5rem;
    background-color: #f4f4f4;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .whyChooseSplit-content {
    flex: 1 1 60%;
  }
  
  .whyChooseSplit-image {
    flex: 1 1 35%;
    max-width: 400px;
  }
  
  .whyChooseSplit-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  }
  
  .whyChoose-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #222;
  }
  
  .whyChoose-list {
    list-style: none;
    padding: 0;
    font-size: 1.6rem;
  }
  
  .whyChoose-item {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.6;
  }
  
  .whyChoose-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #2a9d8f;
    font-size: 1.6rem;
    font-weight: bold;
  }
  
  /* Mobile Stack */
  @media screen and (max-width: 55.6rem) {
    .whyChooseSplit-container {
      flex-direction: column;
    }
  
    .whyChooseSplit-image {
      max-width: 100%;
      margin-top: 2rem;
    }
  }

    .contactBanner-container {
    display: block;
    background: #eee;
    color: #333;
    text-align: center;
    padding: 0.6rem 2rem;
    margin:  auto;
    max-width: 800px;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .contactBanner-container:hover {
    background: #dddd;
  }
  
  .contactBanner-text {
    font-size: 1.8rem;
    font-weight: 500;
  }
  
  .contactBanner-text span {
    font-weight: 600;
    text-decoration: underline;
  }

    .projectTypes-container {
    max-width: 1100px;
    margin: 0 auto 0rem auto;
    padding: 1.2rem 1.5rem 3rem;
  }
  
  .projectTypes-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
  }
  
  .projectTypes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .projectTypes-item {
    flex: 1 1 30%;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  
  .projectTypes-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .projectTypes-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
  }
  
  .projectTypes-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #444;
  }
  
  /* Mobile stack */
  @media screen and (max-width: 768px) {
    .projectTypes-grid {
      flex-direction: column;
    }
  
    .projectTypes-item {
      flex: 1 1 100%;
    }
  }

    .coverage-container {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 3rem 1.5rem;
    background-color: #f9f9f9;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .coverage-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #222;
  }
  
  .coverage-intro {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #444;
    line-height: 1.6;
  }
  
  .coverage-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    list-style: none;
    padding: 0;
    font-size: 1.6rem;
  }
  
  .coverage-list li {
    position: relative;
    padding-left: 2.2rem;
    color: #333;
  }
  
  .coverage-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
  }

    .testimonials-container {
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    padding: 3rem 1.5rem;
    background-color: #f4f4f4;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  
  .testimonials-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
  }
  
  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .testimonial-card {
    flex: 1 1 30%;
    background: #fff;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-text {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
  }

  .testimonial-rating {
    font-size: 1.6rem;
    color: #f2b01e;
    margin-top: auto;
    letter-spacing: 0.1rem;
    margin-bottom: 0.75rem;
  }
  
  
  /* Mobile stack */
  @media screen and (max-width: 768px) {
    .testimonials-grid {
      flex-direction: column;
    }
  
    .testimonial-card {
      flex: 1 1 100%;
    }
  }

    .ctaQuoteForm-container {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    padding: 4rem 2rem;
    background-color: #eee;
    color: #333;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .ctaQuoteForm-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .ctaQuoteForm-text {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  
  .ctaQuoteForm-contact {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    font-size: 1.6rem;
  }
  
  .ctaQuoteForm-contact li {
    margin-bottom: 0.5rem;
  }
  
  .ctaQuoteForm-contact a {
    color: #333;
    text-decoration: underline;
  }
  
  .ctaQuoteForm-contact a:hover {
    text-decoration: none;
  }
  
  .ctaQuoteForm-wrapper {
    margin-top: 2rem;
  }
  
  .ctaQuoteForm-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .ctaQuoteForm-input,
  .ctaQuoteForm-textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    border: none;
    border-radius: 0.5rem;
    outline: none;
  }
  
  .ctaQuoteForm-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .ctaQuoteForm-submit {
    background-color: #333;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 1rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  
  .ctaQuoteForm-submit:hover {
    background-color: #555;
  }