@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&display=swap');


body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

/* Common Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* top head */
.head {
  background: linear-gradient(90deg, #b6d34e, #2a8c2f);
  /* padding: 5px 10px; */
  /*justify-content: space-between;*/
  /* gap: 210px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  z-index: 1000;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  transition: all 0.6s ease;
  overflow-x: hidden; 
  /* margin-right: 120px; */
}

.head.show {
  display: flex;
  justify-content: space-evenly; 
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  /* flex-wrap: nowrap; */
  gap: 30px;
}

.head .text-left {
  color: #212121;
  font-size: 15px;
  font-family: sans-serif;
  margin-left: 0px;
  white-space: nowrap; 
}


.head .text-right {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: nowrap;   
  white-space: nowrap; 
}

/* Cost blocks */
.head .cost {
  display: flex;
  gap: 8px;
  align-items: center;
   white-space: nowrap;
}

.head .cost img {
  filter: brightness(0) invert(1);
  width: 18px;
  height: 18px;
}


.head .avail {
  color: #505050;
  font-size: 16px;
  white-space: nowrap;
}

.head .avail .light {
  color: #fff;
  font-weight: 700;
}

.head .avail b {
  color: #fff;
  font-weight: 600;
}

.head .avail a {
  color: #fff;
  font-weight: 600;
  text-decoration: none; 
  white-space: nowrap;  
}


/*  Mobile / Tablet ke liye bottom pe fix */
@media (max-width: 1024px) {
  .head {
    top: auto;          
    bottom: 0;          
     height: 50px !important;
    justify-content: center;
    padding: 12px;
  }

  .head .text-left,
  .head .cost:first-child,  
  .head .cost:last-child,
  .head .cost img { 
    display: none !important;  
  }

  .head .text-right {
    justify-content: center;
  }
  .head .avail {
    color: #fff !important;
    font-weight: 600;
  }
}



/* Top Bar */
.top-bar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  border: none;
}

.top-bar .left-text {
  color: #505050;
  font-size: 16px;
}

.right-text {
  display: flex;
  gap: 20px;
}

.cont {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.cont-btm {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.cont-btm span a {
  text-decoration: none;
  color: #505050;
}

.available {
  color: #505050;
  font-size: 16px;
  margin-right: 12px;
}

.available a {
  text-decoration: none;
  color: #3d8745; 
  
}

.available .highlight {
  color: #3d8745;
  font-weight: 700;
}

#tele{
  animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } 
  100% { transform: scale(1); } 
}


/* Navbar */
header {
  background: #f9f9f9;
  padding: 20px 0;
  position: relative;
  background: #fdfef9;
}

/* Logo + Links Row */
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 50px;
}
 
#tech{
  display: none;
}

@media (max-width: 1024px) {
  #tech {
    display: block;
    position: relative;
    left: 340px; 
  }
}

@media (max-width: 780px) {
  #tech {
    display: block;
    position: relative;
    left: 210px; /* tablet size */
  }
}


@media (max-width: 480px) {
  #tech {
    left: 60px; 
  }
}

@media (max-width: 375px) {
  #tech {
    left: 20px; 
  }
}


@media (max-width: 320px) {
  #tech {
    left: 30px; 
  }
}


/* Desktop Links */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-right {
  margin-bottom: 10px;
}

.nav-right a {
  margin-left: 25px;
  text-decoration: none;
  color: #505050;
  font-size: 14px;
  font-weight: 600;
}

.nav-bottom ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-bottom ul li a {
  text-decoration: none;
  color: #3d8745;
  font-size: 16px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh; 
  height: auto; 
  background: url("images/homepage_banner__2000.jpg") no-repeat center center/cover;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #00000066;
}

.hero-container {
  position: relative;
  z-index: 2; /* above overlay */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 8%;
  color: #fff;
}

.hero-callback-right {
  background: #f2f2f2;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  flex-shrink: 0;
  margin-top: 100px;
}

.hero-callback-heading {
  color: #505050;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-callback-title {
  color: #0d0d0d;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-callback-number {
  color: #3d8745;
  font-weight: bold;
}

.hero-callback-number a {
  text-decoration: none;
  color: #3d8745;
  font-weight: bold;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;   
     min-height: 70vh;
    padding: 40px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-callback-right {
    max-width: 100%;
    /* width: 100%; */
  }
}

/* Left hero text */
.hero-content {
  max-width: 50%;
  text-align: left;
  color: #fff;
}

.hero-content h1 {
  font-size: 55px;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.hero-content button {
  padding: 12px 25px;
  font-size: 16px;
   background: linear-gradient(90deg, #b6d34e, #2a8c2f);
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* ✅ Mobile Menu (Hidden by default) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

  .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
  }
  .top-bar-btm {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
  }

.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px; /* thickness of the gradient border */
  background: linear-gradient(to right, #66bb6a, #2e7d32); /* deeper green tones */
}
.bottom-bar {
display: none;}
@media (max-width: 1439px) {
  .top-bar {
display: none;
  }
  .bottom-bar {
    position: fixed;
    bottom: 0;
    padding: 20px 0px;
    left: 0;
    width: 100%;
    z-index: 1000; /* stays above other content */
    border-top: none; /* remove normal border */
    background: linear-gradient(to right, #66bb6a, #2e7d32);
    color: #fff;
    text-align: center;
  }

  .top-bar::before {
display: none;
  }
}

  
  .hero-content h1 {
    font-size: 60px;
  }

  .hero-content button {
    font-size: 14px;
    padding: 10px 20px;
  }
  

  @media (max-width: 430px) {
  .hero-content h1 {
    font-size: 30px;
  }
}

 @media (max-width: 325px) {
  .hero-content h1 {
    font-size: 24px;
  }
}

/* ✅ Mobile aur Tablet (768px tak) */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}


/* Services Section */
.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

#services-section  {
  scroll-margin-top: 50px; 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
  align-items: stretch;
  /*margin-bottom: 120px;*/
}

#services-grid{
  margin-top: 40px;
}

.service-card {
  display: flex;          
  flex-direction: column; 
  justify-content: space-between; 
  padding: 20px;         
  border-radius: 5px;     
  text-align: center
}

.service-card h3 {
  color: #0d0d0d;
  font-size: 28px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 20px;
}

#makespace{
  margin: 0px 0 20px;
}

#emergency-plumbing{
  scroll-margin-top: 100px;
}
#blocked-drains{
  scroll-margin-top: 100px;
}
#pipe-reline{
  scroll-margin-top: 100px;
}
#hot-water{
  scroll-margin-top: 100px;
}
#residential-plumbing{
  scroll-margin-top: 100px;
}
#gas-fitting{
  scroll-margin-top: 100px;
}

@media(max-width:430px)
{
  #makespace{
    margin: 30px 0 20px;
  }
}
@media(max-width:380px){
  #makespace{
    margin: 80px 0 20px;
  }
}

@media(max-width:330px){
  #makespace{
    margin: 160px 0 20px;
  }
}

.service-card p {
  color: #505050;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 60px;
  line-height: 1.6;
  font-weight: 300;
}

.service-card button {
  background: linear-gradient(90deg, #c5d835 0%, #4CAF50 100%);
  color: #ffffff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 32px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
}

.service-card button:hover {
  opacity: 0.9;
}

.service-card button a{
  text-decoration: none;
  color: #ffffff;
}



@media (max-width: 1024px) {
  .warranty-section {
    flex-direction: column;
    text-align: center;
  }

  .warranty-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-grid {
    gap: 25px;
    margin-top: -80px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 14px;
    margin: 20px;
  }

  .warranty-box h2 {
    font-size: 26px;
  }

  .warranty-right .main-text {
    font-size: 16px;
  }

  .call-text {
    justify-content: center;
    font-size: 16px;
  }
}
@media (max-width: 320px) {

  .services-grid {
    gap: 5px;
    margin-top: -210px;
  }
}
@media (min-width: 375px) and (max-width: 420px) {
  .services-grid {
    gap: 25px;
    margin-top: -110px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .services-grid {
    gap: 25px;
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 13px;
    margin: 15px;
  }

  .service-card button {
    font-size: 14px;
    padding: 10px 18px;
  }

  .warranty-box h2 {
    font-size: 22px;
  }

  .warranty-right .main-text {
    font-size: 14px;
  }

  .call-text .phone-number {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .services-section {
    padding: 50px 15px;
  }

  /* ✅ This is the key fix */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



/* Warranty Section */
.warranty-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F7FAF6;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 40px;
  height: 440px;
}

.warranty-left {
  flex: 1;
  display: flex;
  justify-content: center;
   margin-top: -50px;
}

.warranty-card {
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  max-width: none;
  width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 60px;
  z-index: 30;
  height: 420px;
  margin-bottom: 50px;
  margin-right: 50px;
  margin-top: -20px;
  
}

.warranty-box {
  border: 2px dashed #3d8745;
  text-align: center;
  width: 90%;
  height: 90%;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.warranty-box h2 {
  font-size: 42px;
  color: #3d8745;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.warranty-box p {
  font-size: 29px;
  color: #3d8745;
  margin: 0 auto;
  font-weight: 200;
  max-width: 400px;
}

.warranty-right {
  flex: 1.2;
   position: relative;
  top: -50px; 
}

.warranty-right .main-text {
  font-size: 32px;
  color: #0d0d0d;
  font-weight: 400;
  margin-bottom: 15px;
  margin-right: 100px;
  line-height: 1.4;
  font-weight: 200;
}

.warranty-right .terms {
  font-size: 14px;
  color: #3d8745;
  margin-bottom: 20px;
}

.warranty-right .call-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.call-text .call,
.call-text .phone-number,
.call-text .or {
  font-size: 28px;
  font-weight: 700;
}

.call-text .phone-number {
  color: #b6d34e;
  font-weight: 600;
}

.phone-number a {
  text-decoration: none;
  color: #b6d34e;
  font-weight: 600;
}

.offer-btn {
  background: linear-gradient(to right, #b2d235, #3d8745);
  color: #fff;
  font-size: 16px;
  padding: 12px 22px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 15px;
}

.offer-btn:hover {
  opacity: 0.9;
}

/* responsive design */
@media (max-width: 1024px) {
  .warranty-section {
    flex-direction: row;
    text-align: center;
  }

  .warranty-left{
    margin: 0;
    padding: 0;
  }
   .warranty-card{
    width: 482px;
    height: 483px;
    margin: 0;
    padding: 0;
  }

  .warranty-box{
    margin: 0;
    padding: 0;
  }

  .warranty-box h2{
    font-weight: 200;
  }

  .warranty-box p{
    font-weight: 100;
  }
  .warranty-right {
    width: 100%;
    margin-bottom: -50px;
  }
  .warranty-right .main-text {
    font-size: 22px;
    text-align: left;
    margin-right: 10px;
  }
  .warranty-right .terms{
    font-size: 14px;
    color: #3d8745;
    margin-bottom: 20px;
    text-align: left;
  }
  
  
}

@media (max-width: 768px) {
  .warranty-section{
    flex-wrap: wrap;
  }
  .warranty-card{
    width: 708.2px;
    height: 180px;
    margin-top: -90px;
    padding: 1;
  }
  .warranty-left{
    margin: 0;
  }
  .warranty-box{
    margin: 0;
    padding: 0 25px;
  }
  .warranty-box h2 {
    font-size: 32px;
    margin: 0;
    padding: 0;
  }
  .warranty-box p {
    font-size: 18px;
  }
  .call-text .call,
  .call-text .phone-number,
  .call-text .or {
    font-size: 18px;
  }
  .warranty-right .terms{
    font-size: 14px;
    color: #3d8745;
    margin-bottom: 20px;
    text-align: left;
    
  }
  .warranty-right .call-text {
    font-size: 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
 .warranty-left{
  margin: 0;
  }
    .warranty-card{
    width: 381px;
    height: 265px;
    margin-top: -70px;
    padding: 0;
  }
  .warranty-box{
    margin: 0;
    padding: 0 10px;
  }
  .warranty-box h2 {
    font-size: 28px;
  }
  .warranty-box p {
    font-size: 16px;
  }
  .offer-btn {
    margin-left: 0;
    margin-top: 15px;
    font-size: 14px;
    padding: 10px 16px;
  }
  .warranty-right .main-text{
    margin: 10;
    padding: 0;
    text-align: left;
    
  }
  .warranty-right .terms{
    font-size: 12px;
    text-align: left;
  }

   .warranty-right .call-text {
    font-size: 20px;
    justify-content: flex-start;
  }
  .warranty-right .call,
  .warranty-right .phone-number,
  .warranty-right .or,
  .warranty-right .offer-btn {
    font-size: 20px;
  }
}

@media(max-width:380px){
   .warranty-card{
    width: 341px;
    height: 230px;
    margin-top: -70px;
    padding: 0;
  }
  .warranty-right .main-text{
    margin: 10;
    padding: 0;
    text-align: left;
    
  }
  .warranty-right .terms{
    font-size: 12px;
    text-align: left;
  }

   .warranty-right .call-text {
    font-size: 20px;
    justify-content: flex-start;
  }
  .warranty-right .call,
  .warranty-right .phone-number,
  .warranty-right .or,
  .warranty-right .offer-btn {
    font-size: 20px;
  }
}

@media(max-width:320px){
  .warranty-card{
    width: 286px;
    height: 170px;
    margin-top: -70px;
    padding: 0;
  }
  .warranty-right .main-text{
    margin: 10;
    padding: 0;
    text-align: left;
    
  }
  .warranty-right .terms{
    font-size: 12px;
    text-align: left;
  }

   .warranty-right .call-text {
    font-size: 20px;
    justify-content: flex-start;
  }
  .warranty-right .call,
  .warranty-right .phone-number,
  .warranty-right .or,
  .warranty-right .offer-btn {
    font-size: 20px;
  }
}



/* Local Team Section */
.local-team {
  position: relative;
  /* width: 100%; */
  height: 100vh; /* Fullscreen */
  background: url("images/Enviromate Plumbing 051-0-71-2000-1000-1550715223__2000.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  top: -40px;
  filter: grayscale(100%);
}

.local-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#ffffffb3, #ffffffb3);
}

.local-team-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.local-team-content h2 {
  color: #0d0d0d;
  font-size: 46px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 60px;
  font-weight: 300;
}

.local-team-content .learn-more {
  background: #0d0d0d;
  color: #ffffff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
}


/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
  .local-team {
    height: auto;
    padding: 60px 20px;
  }

  .local-team-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .local-team-content {
    padding: 0 10px;
  }

  .local-team-content .learn-more {
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .local-team{
    margin-top: 140px;
  }
  .local-team-content h2 {
    font-size: 22px;
  }

  .local-team-content .learn-more {
    font-size: 13px;
    padding: 10px 20px;
  }
}

@media(max-width:380px){
  .local-team{
    margin-top: 150px;
  }
}
/* ✅ Our Simple Process Section */
.process-section {
  text-align: center;
  margin: 0px 180px;
}

.process-section h2 {
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  color: #0d0d0d;
  margin: 0 0 60px 0;
}

@media (max-width: 1024px) {
  .process-section h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .process-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .process-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 320px) {
  .process-section h2 {
    font-size: 24px;
  }
}
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
}
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between step + arrow */
  flex-wrap: nowrap; /* prevent wrapping on desktop */
}

/* ✅ Icon Circle */
.icon-circle {
  width: 168.8px;
  height: 166.8px;
  border-radius: 50%;
  background-color: #fafcf9; /* halka grey bg */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 65px;
  height: 65px;
}
/* Arrow inline with steps */
.arrow {
  flex-shrink: 0; /* prevents it from shrinking */
  width: 180px;
  height: 2px;
  background-color: #D8D8D8;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid #D8D8D8; /* arrow head */
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ✅ Responsive fix for mobile */
@media (max-width: 1024px) {

  .process-section {
    text-align: center;
    margin: 30px 20px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .arrow {
    width: 2px;
    height: 50px;
  }

  .arrow::after {
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
    border: none;
    border-top: 12px solid #D8D8D8;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
}


/* Testimonials & Callback Section */
.testimonial-callback {
  display: flex;
  justify-content: space-between;
  gap: 50px;
   margin: 60px 0;
  background-color: #fdfef9;
}

.testimonial-left {
  flex: 1;
   padding: 5%;
  background-color: #fdfef9;
}

.testimonial-heading {
  color: #505050;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 47px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* testimonial slider items */
.testimonial-slider {
  position: relative;
}
.testimonial-item {
  display: none;
}
.testimonial-item.active {
  display: block;
}

.testimonial-text {
  color: #0d0d0d;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 30px;
  line-height: 1.5;
}

.testimonial-author {
  color: #3d8745;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-dots {
  margin-top: 20px;
}
.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 30px 0 0;
  background-color: #d8d8d8;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.testimonial-dots .dot.active {
  background-color: #3d8745;
}

/* Callback Right */
.callback-right {
  flex: 1;
  background: #f2f2f2;
  padding: 5%;
  /* border-radius: 10px; */
}

#callback-section {
  scroll-margin-top: 100px; 
}


.callback-heading {
  color: #505050;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 47px;
  text-transform: uppercase;
}

.callback-title {
  color: #0d0d0d;
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 30px;
}

.callback-number {
  color: #accb37;
  font-weight: bold;
  text-decoration: none;
}

.callback-number a {
  text-decoration: none;
  color: #accb37;
  font-weight: bold;
}

.callback-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.callback-form input,
.callback-form textarea {
  flex: 1;
  padding: 8px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #ddd;
  background: #ffffff;
  border-radius: 5px;
}
.callback-form textarea {
  resize: none;
  height: 100px;
  margin-bottom: 20px;
  /* flex: 1;
  padding: 12px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #ddd;
  background: #ffffff;
  border-radius: 5px; */
}
.submit-btn {
   background: linear-gradient(90deg, #b6d34e, #2a8c2f);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 35%;
}
.submit-btn:hover {
  background: #2f6b35;
}

@media (max-width:1024px){
  .submit-btn{
    width: 50%;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 992px) {
  .testimonial-callback {
    flex-direction: column;
    background-color: #fdfef9;
    height: auto;

  }

  .testimonial-left {
    margin-right: 0;
  }

  .testimonial-text {
    font-size: 20px;
    text-align: center;
  }

  .testimonial-dots {
    text-align: center;
  }

  .callback-right {
    margin-top: 40px;
    padding: 30px 20px;
    height: 90vh;
  }

  .callback-title {
    font-size: 22px;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }
  .submit-btn {
    width: 100%;
  }
}
  

@media (max-width: 576px) {
  .testimonial-text {
    font-size: 18px;
  }

  .callback-title {
    font-size: 20px;
  }
  .submit-btn {
    width: 100%;
  }
}
/**Latest from our blog**/

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.blog-card {
  position: relative;
  width: 350px;
  height: 300px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  color: white;
  flex: 1 1 300px; /* responsive cards */
  max-width: 600px;
  line-height: 1.4;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
}

.blog-meta {
   display: block; 
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 150px;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 25px;
  font-weight: 600;
   line-height: 1.4; 
  
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .blog-section h2 {
    font-size: 32px;
  }
  .blog-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }
  .blog-card {
    width: 100%;
    max-width: 500px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .blog-section h2 {
    font-size: 28px;
  }
  .blog-card {
    height: 200px;
  }
  .blog-title {
    font-size: 1rem;
  }
}


/* Customer Reviews Section */
/* Customer Reviews Section */
.customer-reviews {
  /* width: 100%; */
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}

.reviews-title {
  font-size: 24px;
  font-family: Roboto, sans-serif;
  color: #212121;
  margin-bottom: 15px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rating {
  font-size: 28px;
  font-family: Roboto, sans-serif;
  color: #212121;
  font-weight: bold;
}

.stars {
  font-size: 16px;
  color: #f57c00;
  font-family: Roboto, sans-serif;
}

.total-reviews {
  font-size: 13px;
  font-family: Roboto, sans-serif;
  color: #212121cc;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.review-card {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.review-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.reviewer-name {
  font-size: 12px;
  font-family: Roboto, sans-serif;
  color: #212121;
  font-weight: bold;
}

.on-google {
  font-size: 12px;
  font-family: Roboto, sans-serif;
  color: #1976d2;
  margin-left: 3px;
}

.review-stars {
  font-size: 14px;
  font-family: Roboto, sans-serif;
  color: #f57c00;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  font-family: Roboto, sans-serif;
  color: #212121;
  line-height: 1.4;
}

.powered-by {
  text-align: center;
  font-size: 11px;
  font-family: Roboto, sans-serif;
  color: #212121;
  margin-top: 10px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    text-align: center;
    font-size: 20px;
  }

  .reviews-summary {
    justify-content: center;
    text-align: center;
  }

  .rating {
    font-size: 24px;
  }
}
/* ===== Footer Section ===== */

.site-footer {
  background: #fafbf7;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #0d0d0d;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.footer-bottom{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 769px) {
  .footer-container {
    grid-template-columns: 1fr;    /* stack all sections */
    justify-items: start;          /* align to left */
    margin: 0;
    max-width: 100%;
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  .footer-btn {
    width: 100%;                  /* full width button */
    max-width: 300px;              /* optional, so it doesn’t stretch too far */
    text-align: center;            /* keep text centered inside */
  }

  .accreditations img {
    max-width: 100%;              /* responsive logos */
    margin-left: 0;               /* stick to left */
  }
  
  .social-icons {
    text-align: left; /* keep items aligned left */
  }

  .social-icons a {
    justify-content: flex-start; /* text + icon stay at start */
  }

  .social-icons img {
    margin-left: 0; /* no extra centering */
  }
}

.footer-column h4 {
  font-size: 12px;          /* small */
  color: #7a7a7a;           /* gray */
  margin: 0 0 15px 0;       /* less gap */
  font-weight: 600;         /* semi-bold */
  letter-spacing: 1px;      /* spacing between letters */
  text-transform: uppercase;/* all caps */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 16px;          /* bigger than heading */
  color: #0d0d0d;           /* black text */
  text-decoration: none;
  font-weight: 600;         /* bold */
}
.footer-column p {
  font-size: 16px;
  color: #0d0d0d;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}
.footer-btn {
  background: linear-gradient(to right, #b2d235, #3d8745);
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 2px;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  width: 100%;   /* full width inside column */
  max-width: 220px; /* prevent too wide on desktop */
}

.footer-btn a{
  
  color: #fff;
  text-decoration: none;
}

.footer-btn:hover {
  opacity: 0.9;
}

/* ✅ Social media styling */
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}


.social-icons li {
  margin-bottom: 10px;
}
.social-icons a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
}

.social-icons a:hover {
  text-decoration: underline;
}

.social-icons img {
  width: 20px;
  height: 20px;
  display: inline-block;
}


.social-icons img {
  width: 18px;
  height: 18px;
}


.footer-column img {
  display: block;
}

.footer-bottom {
  border-top: none;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #505050;
  flex-wrap: wrap;
  width: 100%;
}

/* ===== ✅ Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
  }
  .footer-bottom{
     grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* 1 column on small mobile */
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

.special-offers-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fdfef9;
}

.special-offers-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card h3 {
  font-size: 1.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.offer-card button {
  background-color: #2e7d32;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.offer-card button:hover {
  background-color: #1b5e20;
}

.footer-link {
  text-decoration: none;
}