* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #0383cc;
    background: linear-gradient(0deg, #0383cc 0%, black 100%);
  }
  .side-bar{
    background: #1b1a1b;
    width: 300px;
    height: 100%;
    position: fixed;
    left: -300px;
    overflow-y: auto;
    transition: left .6s ease;
    transition-property: left;
    z-index: 1000;
    padding-top: 0;
  }
  header{
    background: linear-gradient(200deg, black, #0383cc);
    position: relative;
  }
  header img{
    width: 50%;
    margin: 10px 70px 0px;
    border-radius: 50%;
    border: 3px solid gold;
  }
  .close-btn{
    position: absolute;
    color: gold;
    font-size: 23px;
    right: 0;
    margin: 15px;
    cursor: pointer;
  }
  header h2{
    text-align: center;
  }
  header h2 a{
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    padding-bottom: 13px;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
  }
  header h2 a:hover{
    color: gold;
    cursor: pointer;
  }
  header .phone-number {
  margin-top: 5px; /* space below logo/title */
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
}

header .phone-number a {
  color: gold; /* matches header text/logo */
  text-decoration: none;
}

header .phone-number a:hover {
  text-decoration: underline;
}
.active{
 background: black;
}

  .side-menu{
    width: 100%;
    margin-top: 30px;
  }
  .side-menu .item{
    position: relative;
    cursor: pointer;
  }
  .side-menu .item a{
    color: white;
    font-size: 20px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 60px;
  }
  .side-menu .item a:hover{
    color: gold;
  }
  .item i{
    margin-right: 15px;
  }
  .item a .dropdown{
    position: absolute;
    right: 0;
    margin: 20px;
    transition: .3s ease;
  }
  .item .sub-menu{
    background: white;
    display: none;
  }
  .item .sub-menu a {
    color: #0383cc;
    border-bottom: 2px solid #0383cc;
  }
  .menu-btn{
    position: fixed;
    color: gold;
    font-size: 35px;
    cursor: pointer;
    margin: 25px;
    z-index: 1100;
  }
  .side-bar.active{
    left: 0px;
  }
  .side-bar::-webkit-scrollbar{
    width: 0px;
  }
  .rotate{
    transform: rotate(90deg);
  }
  .hero-section {
  position: relative;
  background-image: url('Images/hero2.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 7rem 1rem;
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  height: auto;
  background-attachment: fixed;
}
.hero-section .container{
  width: 90%;
}
/* Overlay to darken the image and improve text contrast */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65); /* Adjust opacity for readability */
  z-index: -1;
}
.hero-section span{
  color: #2581c0;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  margin-top: 30px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-section p {
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgb(14, 0, 92);
}

      .hero-section .btn-grad {
    background-image: linear-gradient(to right, #000000 0%, #2581c0 51%, #000000 100%);
    margin: 10px auto; /* top/bottom = 10px, left/right = auto for centering */
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block; /* ensures it behaves as a block element for margin auto to work */
    font-size: 20px;
    text-decoration: none;
}
.hero-section a{
  text-decoration: none;
}
          .hero-section .btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
         }
         /* Social media buttons */
.hero-section .contact-links {
  display: flex;
  gap: 100px;
  z-index: 2;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}

.hero-section .contact-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 60px;
}

.hero-section .contact-links .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.hero-section .contact-links .btn i {
  color: gold;
  font-size: 30px;
}

.hero-section .contact-links .btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.hero-section .follower-count {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  user-select: none;
}

.container-about {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
  background-color: black;
}


.container-about * {
  position: relative;
  z-index: 1;
}
.container-about .heading h2{
  text-align: center;
  font-size: 45px;
  letter-spacing: 2px;
  color: #2581c0;
  padding: 5px;
}
.container-about .heading p{
text-align: center;
font-size: 25px;
color: white;
padding: 10px;
}
.gallery-page {
  background: linear-gradient(270deg, #4facfe, #0400fe, #314755, #26a0da);
  background-size: 800% 800%;
  animation: gradientMove 15s ease infinite;
  opacity: 0.75;
  color: #333;
}

.gallery-header {
  text-align: center;
  width: 100%;
  margin: 0px auto 40px;
  background: url(Images/pexels-alteredsnaps-14982942.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
}
.gallery-header::before{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity for readability */
  z-index: -1;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.gallery-header h1 {
  font-size: 50px;
  color: gold;
  margin-bottom: 10px;
  padding-top: 50px;
}
.service-button {
  text-align: center;
  margin-top: 50px;
}

.service-button .btn-primary {
  background-color: gold;
  color: black;
  padding: 12px 30px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  width: 75%;
}

.service-button .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.gallery-header p {
  color: white;
  line-height: 1.6;
  font-size: 25px;
  padding-bottom: 30px;
}

.service-gallery {
  padding-bottom: 50px;
}

.service-gallery h2 {
  font-size: 40px;
  color: gold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.service-gallery h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c9a04f; /* slightly deeper gold to balance */
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-gallery p {
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto 30px;
  font-size: 25px;
}


.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  border: 2px solid black;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Subtle fade-in animation */
.service-gallery {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-gallery:nth-of-type(2) {
  animation-delay: 0.2s;
}
.service-gallery:nth-of-type(3) {
  animation-delay: 0.4s;
}
.service-gallery:nth-of-type(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-header h1 {
    font-size: 45px;
  }
  .service-gallery h2 {
    font-size: 40px;
  }
  .image-grid{
      grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .service-button .btn-primary{
    width: 90%;
  }
}
.reviews-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: #0383cc;
}

.reviews-section p {
  font-size: 25px;
  line-height: 1.5;
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

/* Reviews Grid */
.reviews-section {
  padding: 50px 20px;
  background: #0f0f12;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 40px;
}

.review-card {
  background: linear-gradient(145deg, #111116, #1a1a1f);
  border-left: 5px solid #0383cc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  color: #fff;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.7s ease-out, opacity 0.7s ease-out, box-shadow 0.3s;
  cursor: default;
}

.review-card:hover {
  transform: translateY(-5px) rotateX(3deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.review-card p {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #0383cc;
  text-align: right;
  font-size: 22px;
}

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

.reviews-cta .btn-grad {
  display: inline-block;
  padding: 15px 45px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
  background-size: 200% auto;
  border-radius: 10px;
  color: #fff;
  transition: 0.5s;
  text-decoration: none;
  font-size: 30px;
}

.reviews-cta .btn-grad:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Scroll Animation */
.review-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media(max-width: 768px){
  .reviews-hero h1 { font-size: 2rem; }
  .reviews-hero p { font-size: 1rem; }

  .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 40px;
}
}

/* High-tech background animation for reviews */
.reviews-section {
  position: relative;
  overflow: hidden;
  background: #0383cc03; /* keep dark base */
}

.reviews-section::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle at center, rgba(0,179,255,0.25) 0%, rgba(0,179,255,0.15) 50%, transparent 80%);
  animation: moveBG 15s linear infinite alternate-reverse;
  pointer-events: none;
  mix-blend-mode: screen; /* makes it pop on dark backgrounds */
  filter: blur(60px); /* soft glow effect */
  z-index: 0;
}

@keyframes moveBG {
  0%   { transform: rotate(0deg) translate(0,0) scale(1); }
  25%  { transform: rotate(45deg) translate(20px,10px) scale(1.05); }
  50%  { transform: rotate(90deg) translate(-20px,20px) scale(1.1); }
  75%  { transform: rotate(135deg) translate(10px,-20px) scale(1.05); }
  100% { transform: rotate(360deg) translate(0,0) scale(1); }
}
/* --- Hero Section --- */
.hero-heating {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('Images/heat-hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 4px solid orange;
}
.hero-refrigeration {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('Images/hero-refrigeration.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 4px solid gold;
}
.hero-refrigeration h1 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: gold;
}
.hero-refrigeration p {
  font-size: 25px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-cooling {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('Images/hero-cool.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 4px solid #0383cc;
}
.hero-cooling h1 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #44baff;
}
.hero-cooling p {
  font-size: 25px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-thermostat {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('Images/hero-thermostat.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 4px solid gold;
}
.hero-thermostat h1 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: gold;
}
.hero-thermostat p {
  font-size: 25px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-heating h1 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: orange;
}
.hero-heating p {
  font-size: 25px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Why Choose Section --- */
.why-heating {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-heating::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
  z-index: 0;
}


.why-heating h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #ffd700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.why-grid2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  position: relative;
  z-index: 1;
}

.why-item2 {
  background: linear-gradient(205deg, rgba(3, 131, 204, 0.9) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 35px;
  width: 30%;
  min-width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  backdrop-filter: blur(4px);
}

.why-item2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  background: linear-gradient(205deg, rgba(3, 0, 153, 1) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.why-item2 h3 {
  font-size: 30px;
  color: #ffd700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-item2 p {
  font-size: 21px;
  color: #f2f2f2;
  line-height: 1.6;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}



/* Founders Section */
.founders-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  margin-top: 60px;
}
.team-intro2 {
  position: relative;
  background: linear-gradient(to right, rgba(13, 27, 36, 0.95), rgba(17, 28, 36, 0.85)), 
              url('') center/cover no-repeat;
  color: white;
  padding: 60px 10px;
  text-align: center;
  overflow: hidden;
}

.intro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(3, 131, 204, 0.15), transparent 70%);
  z-index: 0;
}

.intro-content2 {
  position: relative;
  z-index: 1;
  width:90%;
  margin: 0 auto;
}

.team-intro2 h1 {
  font-size: 50px;
  font-weight: 700;
  color: gold;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-intro2 h1 span {
  color: white;
  display: block;
  font-weight: 600;
}

.team-intro2 p {
  font-size: 25px;
  color: white;
  line-height: 1.8;
  margin-top: 10px;
}

.founders-photo {
  width: 30%;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(3, 131, 204, 0.5);
}

.founders-text {
  width: 50%;
  text-align: center;
}

.founders-text h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 15px;
}

.founders-text p {
  font-size: 25px;
  color: #ccc;
  line-height: 1.6;
}

/* Owner Insights */
.owners-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

.owner-card {
  background: #0383cc;
  border-radius: 15px;
  padding: 35px;
  width: 45%;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}
.owner-card a{
  font-size: 25px;
  color: gold;
}
.owner-card img {
  width: 100%;
  height: 200;
  border-radius: 15px;
  margin-bottom: 15px;
}

.owner-card h3 {
  color: gold;
  font-size: 30px;
  margin-bottom: 10px;
}

.owner-card p {
  color: white;
  font-size: 25px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.founders-text i{
  font-size: 30px;
  color: gold;
  margin: 20px 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .team-intro2 {
    padding: 50px 15px;
  }

  .team-intro2 h1 {
    font-size: 40px;
  }

  .team-intro2 p {
    font-size: 22px;
  }
  .founders-section {
    flex-direction: column;
  }

  .founders-photo {
    width: 90%;
  }
  .founders-text{
    width: 90%;
  }
  .owners-section {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .owner-card {
    width: 90%;
  }
  .founders-section{
    margin-bottom: 20px;
  }
}


/* --- Process Timeline --- */
.process-heating {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #0383cc, #0d1b24, #0383cc, #ffd700);
  background-size: 400% 400%;
  animation: brandedGradient 12s ease infinite;
}

@keyframes brandedGradient {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 50%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 50%; }
  100% { background-position: 0% 50%; }
}

.process-heating h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: white;
}
.process-heating p{
  font-size: 25px;
  color: white;
  margin-bottom: 20px;
}
.process-timeline {
  display: flex;
  justify-content: center; /* center all steps */
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}


.process-timeline .step2 {
  background: black;
  border-radius: 15px;
  padding: 30px;
  width: 30%;
  position: relative;
  transition: all 0.3s ease;
}

.process-timeline .step2:hover {
  background: #0d1b24;
  color: white;
}

.process-timeline .step-number {
  color: gold;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 10px;
}
.step2 h3{
  color: gold;
  font-size: 35px;
    margin-bottom: 10px;
}

/* --- Gallery --- */
.gallery-heating {
  background: black;
  padding: 60px 20px;
  text-align: center;
}
.gallery-heating h2{
  font-size: 40px;
  color: gold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.gallery-heating p{
  font-size: 25px;
  color: white;
    margin-bottom: 20px;
}
.gallery-cooling {
  background: black;
  padding: 60px 20px;
  text-align: center;
}
.gallery-cooling h2{
  font-size: 40px;
  color: gold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.gallery-cooling p{
  font-size: 25px;
  color: white;
    margin-bottom: 20px;
}
.gallery-thermostat {
  background: black;
  padding: 60px 20px;
  text-align: center;
}
.gallery-thermostat h2{
  font-size: 40px;
  color: gold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.gallery-thermostat p{
  font-size: 25px;
  color: white;
    margin-bottom: 20px;
}
.gallery-refrigeration {
  background: black;
  padding: 60px 20px;
  text-align: center;
}
.gallery-refrigeration h2{
  font-size: 40px;
  color: gold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.gallery-refrigeration p{
  font-size: 25px;
  color: white;
    margin-bottom: 20px;
}
.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-item {
  width: 40%;
  height: 350px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  border: 2px solid gold;
  overflow: hidden;
}
.gallery-heating .gallery-item.before {
  background: url('') center/cover no-repeat;
}
.gallery-heating .gallery-item.after {
  background: url('') center/cover no-repeat;
}
.gallery-refrigeration .gallery-item.before {
  background: url('') center/cover no-repeat;
}
.gallery-refrigeration .gallery-item.after {
  background: url('') center/cover no-repeat;
}
.gallery-thermostat .gallery-item.before {
  background: url('') center/cover no-repeat;
}
.gallery-thermostat .gallery-item.after {
  background: url('') center/cover no-repeat;
}
.gallery-cooling .gallery-item.before {
  background: url('') center/cover no-repeat;
}
.gallery-cooling .gallery-item.after {
  background: url('') center/cover no-repeat;
}
/* --- CTA --- */
.cta-heating {
background: #0383cc;
background: linear-gradient(0deg, rgba(3, 131, 204, 1) 0%, rgba(0, 0, 0, 1) 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-heating h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta-heating p {
  margin: 0 auto 30px;
  font-size: 25px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: gold;
  color: black;
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s ease;
  text-decoration: none;
  font-size: 25px
}

.cta-btn:hover {
  background: #fff;
  color: #0d1b24;
}

@media (max-width: 768px) {
  .hero-heating, .hero-refrigeration, .hero-cooling, .hero-thermostat{
   padding: 60px 20px;
  }
  .hero-heating h1, .hero-refrigeration h1, .hero-cooling h1, .hero-thermostat h1{
   font-size: 40px
  }
  .why-heating{
    padding: 40px 20px;
  }
  .why-item2{
    width: 100%;
  }
  .why-heating h2{
    margin-bottom: 30px;
  }
  .process-heating{
    padding: 30px 20px;
  }
  .process-timeline .step2{
    width: 100%;
  }
  .gallery-heating, .gallery-refrigeration, .gallery-cooling, .gallery-thermostat{
    padding: 30px 20px;
  }
  .gallery-item{
    width: 100%;
  }
  .cta-heating{
    padding: 30px 20px;
  }
}
.about-img{
  flex: 1;
  margin-right: 40px;
  overflow: hidden;
  border-radius: 10%;
}
.about-img img{
  max-width: 100%;
  height: 50%;
  display: block;
  transition: 0.5s ease;
}
.about-img:hover img{
  transform: scale(1.2);
}
.about-content{
  flex: 1;
  text-align: center;
}
.about-content h3{
  font-size: 40px;
  margin-bottom: 15px;
  color: #2581c0;
  text-shadow: none;
}
.about-content p{
  font-size: 27px;
  line-height: 1.5;
  color: white;
}
.about-content .read-more{
  display: inline-block;
  padding: 10px 20px;
  color: black;
  background-color: #2581c0;
  font-size: 27px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 15px;
  transition: 0.3s ease;
}
.about-content .read-more:hover{
  background-color: white;
  color: darkblue;
}
.about{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
    margin: 50px 0px;
}
.about2-img{
  flex: 1;
  margin-left: 40px;
  overflow: hidden;
  border-radius: 10%;
}
.about2-img img{
  max-width: 100%;
  height: 50%;
  display: block;
  transition: 0.5s ease;
}
.about2-img:hover img{
  transform: scale(1.2);
}
.about2-content{
  flex: 1;
  text-align: center;
}
.about2-content h3{
  font-size: 40px;
  margin-bottom: 15px;
  color: #50ade6;
  text-shadow: none;
}
.about2-content p{
  font-size: 27px;
  line-height: 1.5;
  color: white;
}
.about2-content .read-more{
  display: inline-block;
  padding: 10px 20px;
  color: black;
  background-color: #50ade6;
  font-size: 27px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 15px;
  transition: 0.3s ease;
}
.about2-content .read-more:hover{
  background-color: white;
  color: darkblue;
}
.about2{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  height: 100%;
  margin: 50px 0px;
}
#services{
  z-index: 1;
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity for readability */
  z-index: -1;
}
.services .container h2{
  text-align: center;
  font-size: 45px;
  color: white;
  letter-spacing: 2px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.service-card h3{
    font-size: 27px;
    margin: 1rem 0;
    letter-spacing: 1px;
    color: gold;
}
.service-card p{
    font-size: 24px;
    text-align: center;
    color: white;
}
.service-card {
  background-color: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.7), inset 0 0 5px rgba(255,255,255,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

.service-card .link{
  display: inline-block;
  padding: 10px 20px;
  color: black;
  background-color: #2581c0;
  font-size: 27px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 15px;
  transition: 0.3s ease;
}
.service-card .link:hover{
  background-color: white;
  color: darkblue;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.9), inset 0 0 8px rgba(255,255,255,0.08);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  place-items: center; /* shorthand for both justify and align */

}
.grid-4 i{
    display: block;
margin-left: auto;
  margin-right: auto;
  font-size: 60px;
  margin-top: 20px;
  margin-bottom: 60px;
}
.featured-projects {
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity for readability */
  padding: 80px 20px;
  text-align: center;
}

.featured-projects h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #0383cc;
}

.section-subtitle {
  color: white;
  margin-bottom: 50px;
  font-size: 25px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.project-card {
  background: #2581c0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 30px;
  color: gold;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 22px;
  color: white;
  line-height: 1.6;
}

.center-btn {
  margin-top: 40px;
}

.center-btn .btn-grad {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
  padding: 14px 36px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: background-position 0.5s;
  background-size: 200% auto;
  display: inline-block;
  font-size: 20px;
}

.center-btn .btn-grad:hover {
  background-position: right center;
}
.process-section {
  background: #f8f8f8;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.process-section h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 60px;
  color: #1b1a1b;
}

.process-section {
  background: url(Images/hero.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 0; 
}
.process-section h2 {
  text-align: center;
  font-size: 2.5em;
  color: white;
  margin-bottom: 80px;
  z-index: 2;
  position: relative;
  letter-spacing: 2px;
  font-weight: 900;
}

.timeline {
  position: relative;
  width: 90%;
  margin: auto;
}

.line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, gold, darkblue);
  transform: translateX(-50%);
  transition: height 1s ease-out;
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
  z-index: 2;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-item .icon {
  width: 50px;
  height: 50px;
  background: gold;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  right: -25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.timeline-item.right .icon {
  left: -25px;
  right: auto;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item h3 {
  color: darkblue;
  margin-bottom: 10px;
}

.timeline-item p {
  color: black;
  line-height: 1.6;
  font-size: 23px;
}

@media (max-width: 768px) {
  .timeline::before,
  .line {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding: 20px 20px;
    text-align: left;
  }

  .timeline-item.right,
  .timeline-item.left {
    left: 0;
    text-align: center;
  }

  .timeline-item .icon {
    left: 0;
    right: auto;
  }
  .timeline{
    width: 100%;
  }
  .process-section h2{
    margin-bottom: 1rem;
  }
  .process-section .container{
    padding-left: 0;
    padding-right: 0;
    width: 98%;
  }
  .process-section{
    padding: 20px 0px;
  }
}
.testimonials-section {
  padding: 50px 20px;
  text-align: center;
    background: rgba(0, 0, 0, 0.3); /* Adjust opacity for readability */
}

.testimonials-section h2 {
  font-size: 40px;
  color: #0383cc;
  margin-bottom: 10px;
}

.testimonials-section p {
  color: white;
  font-size: 25px;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  flex: 0 0 45%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.testimonial-card p {
  color: black;
  font-size: 20px;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 25px;
  color: darkblue;
  margin-bottom: 3px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #999;
}

.btn-read-more {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 35px;
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.4s;
  font-size: 25px;
}

.btn-read-more:hover {
  background-position: right center;
  transform: translateY(-2px);
}
.why-choose-us {
  position: relative;
  background: url('Images/pexels-jakubzerdzicki-30749458.jpg') center/cover no-repeat;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

.why-choose-us * {
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.why-center {
  max-width: 500px;
  margin: 0 auto;
}

.why-center h2 {
  font-size: 45px;
  color: #50ade6;
  margin-bottom: 15px;
}

.why-center .intro {
  color: white;
  font-size: 25px;
  line-height: 1.7;
}

.why-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-card {
  background: #f4f6f8;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 35px;
  color: #26a0da;
  margin-bottom: 10px;
}

.why-card h3 {
  color: #50ade6;
  font-size: 30px;
  margin-bottom: 8px;
}

.why-card p {
  color: black;
  font-size: 25px;
  line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
 
  .why-choose-us{
    padding: 30px 0px;
  }
  .why-choose-us .container{
    padding-left: 0;
    padding-right: 0;
  }
  .why-side {
    align-items: center;
  }

  .why-card {
    text-align: center;
    max-width: 400px;
  }
}
.footer {
  padding: 40px;
  margin: 0px;
box-sizing: border-box;
text-align: center;
}
footer ul{
list-style: none;
}
footer{
color: white;
background: #121315;
}
footer p{
color: white;
width: 25em;
font-size: 20px;
line-height: 23px;
text-align: center;
}

footer a{
color: white;
text-decoration: none;
}

footer .container{
width: 100%;
margin: 0 auto;
padding: 2em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  width: 180px;
  margin: 0 auto 15px; /* centers horizontally */
  display: block;
  border-radius: 20%;
}

.footer-about p {
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  color: #0383cc;
  font-size: 30px;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 15px;
}
.footer-contact li i{
  margin-right: 5px;
}
.footer-links a,
.footer-contact a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 22px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: gold;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: #f1f1f1;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: gold;
}

/* Bible verse and badges */
.footer-extras {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 40px auto 20px;
  padding: 30px 20px;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.footer-verse p {
  font-style: italic;
  color: white;
  margin: 0;
  font-size: 20px;
}

.footer-verse span {
  display: block;
  margin-top: 8px;
  color: #0383cc;
  font-weight: 600;
  font-size: 20px;
}

.footer-badges img {
  height: 150px;
  width: auto;
  margin: 0 5px;
  filter: brightness(0.9);
  transition: transform 0.3s ease;
}

.footer-badges img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: white;
}
.footer-bottom p{
  width: 100%;
  font-size: 25px;
}

.footer-bottom a {
  color: #0383cc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
  .footer-container {
    gap: 25px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .footer-extras {
    width: 90%;
    flex-direction: column;
    gap: 25px;
  }

}

/* ====================== */
/* 📱 Small Screens (Tablets & Large Phones) */
/* ====================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer-container {
    gap: 25px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .footer-extras {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }

  .footer-verse p {
    width: 90%;
    margin: 0 auto;
  }

}

/* ====================== */
/* 📲 Extra Small Screens (Phones under 500px) */
/* ====================== */
@media (max-width: 500px) {
  .footer {
    padding: 30px 0px;
  }
  .footer p{
    width: 100%;
  }
  .footer-container {
    gap: 25px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .footer-badges img {
    height: 40px;
  }


}


/* === Mobile (up to 599px) === */
@media (max-width: 599px) {
.hero-section{
padding: 2rem 0rem;
}
.hero-section .container{
  padding-left: 10px;
  padding-right: 10px;
}
.hero-section h1{
  font-size: 45px;
}
.hero-section p{
  font-size: 27px;
}
.services .container{
  padding: 0;
}
.service-card{
  padding: 2rem 1rem;
}
.hero-section .container{
  width: 95%;
}
.testimonials-section{
  padding: 30px 10px;
}
.testimonials-section .container{
  padding-left: 0px;
  padding-right: 0px;
}
.testimonial-card{
    flex: 0 0 100%;

}
.projects-grid{
    grid-template-columns: repeat(1, 1fr);
}
.featured-projects{
  padding: 30px 5px;
}
.featured-projects .container{
  padding: 0;
}
.container-about{
    padding: 0px;
   }
   .about{
    padding: 20px;
    flex-direction: column;
    text-align: center;
    margin: 0px;
   }
   .about-img{
    margin-right: 0px;
    margin-bottom: 20px;
   }
   .about-img img{
    max-width: 100%;
   }
   .about-content p{
    padding: 0px;
    font-size: 22px;
   }
     .about2{
    padding: 20px;
    flex-direction: column-reverse;
    text-align: center;
    margin: 0px;
   }
   .about2-img{
    margin-left: 0px;
    margin-bottom: 20px;
   }
   .about2-img img{
    max-width: 100%;
   }
   .about2-content p{
    padding: 0px;
    font-size: 22px;
   }
    .grid-4 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* === Tablet (600px to 1023px) === */
@media (min-width: 600px) and (max-width: 1023px) {
.hero-section{
padding: 2rem 0rem;
}
.hero-section .container{
  width: 95%;
}
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
.testimonials-section{
  padding: 30px 10px;
}
.testimonial-card{
    flex: 0 0 100%;
}
.projects-grid{
    grid-template-columns: repeat(2, 1fr);
}
.featured-projects{
  padding: 50px 15px;
}
.featured-projects .container{
  padding: 0;
}
.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
.container-about{
    padding: 0px;
   }
     .image-grid{
      grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
  }
   .about{
    padding: 20px;
    flex-direction: column;
    text-align: center;
    margin: 0px;
   }
   .about-img{
    margin-right: 0px;
    margin-bottom: 20px;
   }
   .about-img img{
    max-width: 100%;
   }
   .about-content p{
    padding: 0px;
    font-size: 20px;
   }
     .about2{
    padding: 20px;
    flex-direction: column-reverse;
    text-align: center;
    margin: 0px;
   }
   .about2-img{
    margin-left: 0px;
    margin-bottom: 20px;
   }
   .about2-img img{
    max-width: 100%;
   }
   .about2-content p{
    padding: 0px;
    font-size: 20px;
   }
   
}

/* === Laptop (1024px to 1439px) === */
@media (min-width: 1024px) and (max-width: 1439px) {
.hero-section{
padding: 2rem 0rem;
  background-image: url('Images/hero.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer{
  padding: 40px 10px;
}
  .footer-extras {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }
.hero-section .container{
  width: 90%;
}
  .footer-container {
    gap: 25px;
    width: 100%;
    flex-wrap: nowrap;
  }
.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

/* === Desktop / Large Screens (1440px and up) === */
@media (min-width: 1440px) {
.hero-section{
padding: 5rem 1rem;
  background-image: url('Images/hero.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

}


.iframe-container {
  max-width: 75%;
  margin: auto;
  border: 4px solid #50ade6;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  background: black;
}
.iframe-container h1 {
 color: #50ade6;
 font-size: 50px;
 letter-spacing: 5px;
 font-weight: 600;
 margin-top: 30px;
}
.iframe-container p{
  color: #ccc;
  font-size: 35px;
  margin-bottom: 20px;
  padding: 10px;
}
.iframe-container span{
  color: #50ade6;
}
@media (max-width: 480px) {
  .iframe-container {
    padding: 10px;
  }
  .iframe-container p{
    font-size: 30px;
  }

  .iframe-container iframe {
    height: 60vh;
  }
}

.container {
    width: 95%;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}


h4 {
    color: white;
    font-weight: normal;
    font-size: 20px;
}

.policies-section {
  position: relative;
  background: radial-gradient(circle at top right, black, black, #080c0f);
  color: #eaeaea;
  padding: 80px 20px;
  overflow: hidden;
}

/* Animated ambient glow */
.policies-section::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15), transparent 70%);
  animation: floatGlow 5s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 80px) scale(1.2); }
}

.policies-container {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.policies-container h1 {
  color: #0383cc;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policies-container h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, gold, #0383cc);
  margin: 20px auto 0;
  border-radius: 3px;
}

.policy {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 140, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.policy:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(53, 124, 255, 0.4);
}

.policy h2 {
  color: #0383cc;
  font-size: 35px;
  margin-bottom: 15px;
  position: relative;
}

.policy h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: gold;
  margin: 10px auto;
  border-radius: 2px;
  opacity: 0.9;
}

.policy p {
  color: white;
  font-size: 25px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy a {
  color: gold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy a:hover {
  color: #fff176;
}

.thanks {
  text-align: center;
  font-style: italic;
  margin-top: 50px;
  color: white;
  font-size: 25px;
  letter-spacing: 0.5px;
}

/* 📱 Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .policies-section {
    padding: 50px 15px;
  }

  .policies-container h1 {
    font-size: 40px;
    margin-bottom: 35px;
  }

  .policy {
    padding: 20px;
    margin-bottom: 25px;
  }


  /* Adjust glow position for smaller viewports */
  .policies-section::before {
    width: 250px;
    height: 250px;
    top: -60px;
    left: -60px;
  }
}
.service-area-page {
  background: #0f0f12;
  color: #fff;
  padding: 20px 20px;
}

.service-area-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-area-header h1 {
  font-size: 3rem;
  color: #0383cc;
  margin-bottom: 10px;
}

.service-area-header p {
  font-size: 1.4rem;
  color: #ccc;
}

.service-area-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.map-container, .service-list {
  flex: 1;
  min-width: 350px;
  padding: 20px;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* City List */
.service-list h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0383cc;
}

.service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px; /* scrollable if too long */
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-list li {
  font-size: 1.1rem;
  padding: 10px 15px;
  background: #111116;
  border-left: 5px solid #0383cc;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 255, 0, 0.4);
}

/* Responsive */
@media(max-width: 1024px) {
  .service-area-content {
    flex-direction: column;
  }
  .service-area-page{
    padding: 20px 0px;
  }
  .service-list ul {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* Custom Scrollbar */
.service-list ul::-webkit-scrollbar {
  width: 12px;
}

.service-list ul::-webkit-scrollbar-track {
  background: #111116; /* track color */
  border-radius: 10px;
}

.service-list ul::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00b3ff, #26a0da); /* fun gradient */
  border-radius: 10px;
  border: 3px solid #111116; /* gives padding around thumb */
  transition: background 0.3s;
}

.service-list ul::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #26a0da, #00b3ff);
}

/* Firefox */
.service-list ul {
  scrollbar-width: thin;
  scrollbar-color: #00b3ff #111116;
}

.estimate-tool {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.estimate-card {
  background-color: white;
  padding: 5rem 2rem;
  border-radius: 16px;
  width: 75%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.btn-primary, .btn-option {
  background-color: #0383cc;
  color: black;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 22px;
}
.btn-option:hover{
  color: white;
  cursor: pointer;
}

.btn-option {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
}

.step {
  display: none;
}
.step h1{
  font-size: 45px;
  color: #0383cc;
  letter-spacing: 1px;
}
.step h2{
  font-size: 35px;
  color: black;
  padding: 10px 0px;
}
.step h3{
  font-size: 35px;
  color: #0383cc;
}
.step p{
  font-size: 25px;
  padding: 10px 0px;
  color: black;
}
.step.active {
  display: block;
  background: none;
}
#estimate-result {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.step.result.active #estimate-result {
  opacity: 1;
}
@media (max-width: 500px) {
  .estimate-card{
    padding: 3rem 1rem;
  }
}
.schedule-page {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: radial-gradient(circle at center, #03121e 0%, #0a1c2b 50%, #000000 100%);
  transition: background 0.3s ease;
  z-index: 2;
}

/* Stronger breathing pulse */
.schedule-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 191, 255, 0.6) 0%,     /* bright cyan center */
    rgba(0, 128, 255, 0.25) 40%,   /* electric blue middle */
    rgba(0, 40, 100, 0.05) 70%,    /* faint blue edges */
    transparent 90%
  );
  animation: breathePulse 7s ease-in-out infinite;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

/* Keyframes for the breathing effect */
@keyframes breathePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}



.schedule-container {
  width: 85%;
  margin: 0 auto;
}

.schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-header h1 {
  font-size: 50px;
  color: white;
  margin-bottom: 10px;
}

.schedule-header p {
  font-size: 25px;
  color: white;
}

.schedule-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.schedule-form, .schedule-info {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 2px solid black;
}

.schedule-form h2, .schedule-info h2 {
  color: #2581c0;
  margin-bottom: 20px;
  font-size: 35px;
  text-align: center;
}

.schedule-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: black;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #2581c0;
  font-size: 1rem;
  color: #2581c0;
}

.schedule-form textarea {
  resize: vertical;
}


.btn-primary {
  display: inline-block;
  background: #26a0da;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-primary:hover {
  background: #2581c0;
  color: gold;
}

.schedule-info h3 {
  margin-top: 20px;
  font-size: 35px;
  color: black;
  text-align: center;
}

.schedule-info p, .schedule-info ul {
  color: black;
  font-size: 25px;
  line-height: 1.6;
  text-align: center;
}

.schedule-info ul {
  list-style: none;
  padding-left: 0;
}

.schedule-info ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .schedule-content {
    flex-direction: column;
  }
  .schedule-form, .schedule-info {
    flex: 1 1 100%;
  }
  .schedule-page{
    padding: 60px 5px;
  }
  .schedule-container{
    width: 95%;
  }
}
.resources {
  background: radial-gradient(circle at center, #0383cc, black);
  color: #eaeaea;
  text-align: center;
  padding: 60px 20px;
}

.resources-header h1 {
  color: gold;
  font-size: 50px;
  margin-bottom: 15px;
}

.resources-header p {
  font-size: 25px;
  color: white;
  width: 90%;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.resource-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  margin: 40px auto;
  width: 90%;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.resource-section:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: gold;
}

.resource-section h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 10px;
}

.resource-section p {
  color: white;
  font-size: 25px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: gold;
  color: #0d1b24;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s ease;
  font-size: 25px;
}

.resource-btn:hover {
  background-color: #e6c200;
  color: white;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .resources{
    padding: 60px 5px;
  }
  .resources-header h1 {
    font-size: 40px;
  }
  .resources-header p {
    font-size: 23px;
    margin: 0 auto 20px;
  }
  .resource-section h2 {
    font-size: 35px;
  }
  .resource-section p {
    font-size: 23px;
  }
}
.blog-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0d1b24, #005e99);
  color: #fff;
}

.blog-section h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: gold;
  text-align: center;
  letter-spacing: 2px;
}
.blog-section p{
  color: white;
  text-align: center;
  font-size: 25px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.blog-container {
  width: 90%;
  margin: auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: #0d1b24;
  text-align: left;
}

.blog-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: darkblue;
  text-align: center;
}

.blog-content .excerpt {
  color: #3b3b3b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hidden-content{
  display: none;
  margin-top: 15px;
  line-height: 1.7;
  color: darkblue;
}
.hidden-content p{
  color: darkblue;
}

.hidden-content.show {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.toggle-btn {
  display: block;
  margin: 25px auto 0;
  background-color: gold;
  color: #0d1b24;
  border: none;
  padding: 14px 28px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.toggle-btn:hover {
  background-color: #e5c100;
  transform: scale(1.03);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .blog-section h1 {
    font-size: 2.2rem;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }
}
.faq-section {
  background: radial-gradient(circle at center, #000000, #00012c);
  color: white;
  padding: 60px 20px;
}

.faq-container {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.faq-container h1 {
  color: gold;
  font-size: 50px;
  margin-bottom: 20px;
  position: relative;
}

.faq-container h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: gold;
  margin: 15px auto 0;
  border-radius: 2px;
}

.faq-container .intro {
  font-size: 25px;
  color: white;
  margin-bottom: 40px;
  line-height: 1.6;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 22px;
  color: gold;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

.faq-answer p {
  font-size:23px;
  line-height: 1.6;
  color: white;
}
.arrow {
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  .faq-container h1 {
    font-size: 40px;
  }
  .faq-question {
    font-size: 26px;
  }
  .faq-answer p {
    font-size: 21px;
  }
}
.maintenance-page {
  width: 100%;
  margin: 0px auto;
  background: radial-gradient(circle at center, #0383cc, #111c24);
  padding: 40px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  color: black;
}

.maintenance-header {
  text-align: center;
  margin-bottom: 40px;
}

.maintenance-header h1 {
  font-size: 50px;
  color: gold;
  margin-bottom: 15px;
}

.maintenance-header p {
  font-size: 25px;
  color: white;
  width: 90%;
  margin: 0 auto;
}

.guide-section {
  margin-bottom: 50px;
}

.guide-section h2 {
  font-size: 35px;
  color: gold;
  border-left: 6px solid gold;
  padding-left: 10px;
  margin-bottom: 20px;
}

.guide-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.guide-card h3 {
  color: darkblue;
  margin-bottom: 10px;
  font-size: 30px;
}

.guide-card p {
  color: black;
  line-height: 1.6;
  font-size: 21px;
}

.tips-list {
  list-style-type: disc;
  color: white;
  text-align: left;
  font-size: 25px;
}

.tips-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}
.schedule-btn {
  display: inline-block;
  margin-top: 30px auto;
  display: block;
  padding: 15px 35px;
  background-color: gold;
  color: #0d1b24;
  font-weight: bold;
  font-size: 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.schedule-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .maintenance-page{
    padding: 20px;
  }
}
.contact-section {
  background: linear-gradient(270deg, #0383cc, #111c24, #005fa3);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  padding: 60px 10px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.contact-container {
  width: 90%;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  color: gold;
  font-size: 50px;
  margin-bottom: 15px;
  position: relative;
}

.contact-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: gold;
  margin: 15px auto 0;
  border-radius: 2px;
}

.contact-header p {
  font-size: 27px;
  color: white;
  width: 75%;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-info p, .contact-info li {
  color: white;
  font-size: 25px;
  margin-bottom: 10px;
}

.contact-info a {
  color: gold;
  text-decoration: none;
}

.contact-info a:hover {
  color: #2581c0;
}

.contact-hours h3 {
  color: gold;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 35px;
}

.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form2 {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-form2 h2 {
  color: gold;
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form2 .form-group {
  margin-bottom: 20px;
}

.contact-form2 input, .contact-form2 textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 22px;
  outline: none;
  background: #1c2a35;
  color: #fff;
  transition: 0.3s;
}

.contact-form2 input:focus, .contact-form2 textarea:focus {
  background: #243643;
  border: 1px solid gold;
}

.contact-form2 .contact-btn {
  background-color: gold;
  color: #0d1b24;
  border: none;
  padding: 15px 30px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}

.contact-form2 .contact-btn:hover {
  background-color: #e6c200;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info, .contact-form2 {
    width: 100%;
  }

  .contact-header h1 {
    font-size: 40px;
  }

  .contact-header p {
    font-size: 23px;
  }
  .contact-container{
    width: 100%;
  }
  .contact-header p{
    width: 100%;
  }
  .contact-header{
    margin-bottom: 30px;
  }
}
.cta {
	--shadowColor: 187 60% 40%;
	display: flex;
	flex-wrap: wrap;
	background: white;
	max-width: 100%;
	width: 100%;
	box-shadow: 0.65rem 0.65rem 0 hsl(var(--shadowColor) / 1);
	border-radius: 0.8rem;
	overflow: hidden;
	border: 0.5rem solid;
}

.cta2 {
	--shadowColor: 187 60% 40%;
	display: flex;
	flex-wrap: wrap;
	background: white;
	max-width: 100%;
	width: 100%;
	box-shadow: 0.65rem 0.65rem 0 hsl(var(--shadowColor) / 1);
	border-radius: 0.8rem;
	overflow: hidden;
	border: 0.5rem solid;
}

.cta img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	flex: 1 1 300px;
	outline: 0.5rem solid;
}

.cta__text-column {
	padding: min(2.5rem, 5vw) min(2.5rem, 5vw) min(3rem, 5vw);
	flex: 1 0 50%;
}

.cta__text-column > * + * {
	margin: min(1.5rem, 2.5vw) 0 0 0;
}


.cta a {
	display: inline-block;
	color: white;
	padding: 0.5rem 1rem;
	text-decoration: none;
	background: darkblue;
	border-radius: 0.6rem;
	font-weight: 700;
	border: 0.35rem solid;
  font-size: 25px;
  margin-top: 40px;
}

.cta h3{
  color: darkblue;
  font-size: 40px;
  font-weight: 600;
}
.cta p{
  font-size: 27px;
}
.cta2 img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	flex: 1 1 300px;
	outline: 0.5rem solid;
}

.cta2__text-column {
	padding: min(2.5rem, 5vw) min(2.5rem, 5vw) min(3rem, 5vw);
	flex: 1 0 50%;
}

.cta2__text-column > * + * {
	margin: min(1.5rem, 2.5vw) 0 0 0;
}


.cta2 a {
	display: inline-block;
	color: white;
	padding: 0.5rem 1rem;
	text-decoration: none;
	background: darkblue;
	border-radius: 0.6rem;
	font-weight: 700;
	border: 0.35rem solid;
  font-size: 25px;
  margin-top: 40px;
}

.cta2 h3{
  color: darkblue;
  font-size: 40px;
  font-weight: 600;
}
.cta2 p{
  font-size: 27px;
}
.fade-in-section {
  opacity: 0;
  transform: translateY(20px); /* Initial slight downward position */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

/* Class to apply when the section is in view */
.fade-in {
  opacity: 1;
  transform: translateY(0); /* Move to normal position */
}
.card p{
  font-size: 25px;
  text-align: center;
  padding: 10px;
  color: white;
}
.card h3{
  text-align: center;
  padding: 10px;
}



h3 {
    color: white;
    font-size: 35px;
}


.hover-table-layout {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
   -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  max-width:100%;
  margin:0 auto;
 background-color: black;

}
.price-title{
  color: gold;
  text-align: center;
  font-size: 60px;
  padding: 20px;
}
.price-p{
  font-size: 30px;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 600;
}


.listing-item {
   display: block;
   width:100%;
  margin-bottom:20px;
    float: left;
    background: darkblue;
    border-radius:10px;
    z-index:0;
  cursor:pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
      -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
}

.listing-item:hover,  .listing-item.active{
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
    transition: all 0.3s;
  z-index:2;
}
.listing-item .listing{
    padding:20px;
    position:relative;  

}
.listing-item .listing:before{
    content:"";
  position:absolute;
  top:-15px;
  left:-o-calc(50% - 15px);
  left:-moz-calc(50% - 15px);
  left:-webkit-calc(50% - 15px);
  left:calc(50% - 15px);
  border-bottom:20px solid #fff;
  border-left:20px solid transparent;
  border-right:20px solid transparent;
}
  figure.image img {
    width:100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
figure.image {
    position: relative;
  margin: 0;
    padding: 0;
}
figure.image figcaption {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    bottom: 4px;
  background: rgba(0,0,0,0.6);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}
figcaption .caption{
  position:relative;
  top:50%;
  -moz-transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);

}
figcaption h1{
    color:white;
  font-weight:bold;
    font-size:30px;
  text-transform: uppercase;
}
figcaption p{
  color:white;
  font-size:27px;
}
.listing h4 {
    font-size: 30px;
    text-align: center;
    padding: 5px 10px;
    font-weight: bold;
}
.listing-item:hover h4{
  color: gold;
}
.listing h4:not(:last-child){
   border-bottom: 1px solid #ccc;
}
.listing-item:hover figure.image figcaption{
       background: gold;
       opacity: .2;
}
@media only screen and (min-width:900px){
  .listing-item {
   display: block;
   width: -webkit-calc(100%/4);
   width: -moz-calc(100%/4);
    width: calc(100%/4);
  }

}

@media only screen and (min-width:1024px){
  .hover-table-layout{
        padding: 30px;
  }
 
}
h1{
  font-size: 60px;
  color: white;
  text-align: center;
}

.service .reveal{
  text-align: center;
  font-size: 30px;
  font-weight: 600px;
  color: gold;
}
.our-services h2{
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  color: white;
  padding: 10px;
}
.our-services h3{
  font-size: 35px;
  text-align: center;
  color: Gold;
}
.our-services .container{
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  padding: 0px;
}
.service{
  text-align: center;
  margin: 20px;
  background-color: black;
  padding: 30px 20px;
  cursor: pointer;
  border: 1px solid gold;
  transition: .4s ease;
}
.service:hover,
.service.clicked{
  background-color: #2581c0;
}
.service:hover .reveal{
  display: none;
}
.service.clicked .reveal{
  display: none;
}
.service i{
  font-size: 45px;
  padding: 10px;
}
.service p{
  font-size: 25px;
  line-height: 1.4;
  color: black;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .our-services .container{
    flex-direction: column;
  }
 
}

.mySlides {display: none;}

section .slideshow-container img{
  max-width: 100%;
}

.slideshow-container {
  width: 90%;
  position: relative;
  margin: auto;
  height: 50%;
  margin-top: 30px;
  margin-bottom: 30px;
  
}
.slideshow-container h4{
  color: gold;
  font-size: 40px;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.slideshow-container p{
  color: white;
  font-size: 25px;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}


.section-heading{
  font-size: 60px;
  letter-spacing: 1px;
  color: white;
  padding: 20px;
}
.numbertext, .text{
  color: white;
  font-size: 20px;
}
.dot {
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: gold;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1s ease;
  margin-bottom: 20px;
}
.dot:hover{
  cursor: pointer;
}


/* Fading animation */
 .mySlides .fade {
  animation-name: fade;
  animation-duration: 5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.row-schedule h1{
  padding: 30px;
  color: gold;
  width: 100%;
}
.row-schedule p{
  padding: 30px;
  color: white;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  width: 95%;
}

  
  .btn {
    display: inline-block;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .btn:focus, .btn:hover {
    text-decoration: none;
  }
  
  .btn:focus, .btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
            box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.25);
  }
  
  .btn.disabled, .btn:disabled {
    cursor: not-allowed;
    opacity: .65;
  }
  
  .btn:active, .btn.active {
    background-image: none;
  }
  
  a.btn.disabled,
  fieldset[disabled] a.btn {
    pointer-events: none;
  }
  
  .btn-primary {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8;
  }
  
  .btn-primary:hover {
    color: #fff;
    background-color: #025aa5;
    border-color: #01549b;
  }
  
  .btn-primary:focus, .btn-primary.focus {
    -webkit-box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
            box-shadow: 0 0 0 2px rgba(2, 117, 216, 0.5);
  }
  
  .btn-primary.disabled, .btn-primary:disabled {
    background-color: #0275d8;
    border-color: #0275d8;
  }
  
  .btn-primary:active, .btn-primary.active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #025aa5;
    background-image: none;
    border-color: #01549b;
  }
  
  
.container-contact {
    min-height: 95vh;
    background: url(Photos/House\ Clean\ 3.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px; /* Add padding for smaller screens */
  }
  
  .container-contact form {
    width: 90%; /* Use a percentage for fluid width */
    max-width: 800px; /* Keep the max width for larger screens */
    height: auto; /* Allow height to adjust */
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 50px rgba(105, 105, 105, 0.5);
    border-radius: 15px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    padding: 20px; /* Add padding to prevent content from touching edges */
    margin-top: 20px;
  }
  
  .container-contact form h1 {
    color: #50ade6;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 50px;
  }
  
  .container-contact form input {
    width: 100%; /* Full width for input */
    max-width: 100%; /* Prevent overflow */
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid black;
    color: white;
  }
  
  .container-contact form input::placeholder {
    color: black;
  }
  
  .container-contact form #lastName,
  .container-contact form #number {
    margin-left: 0; /* Remove margin for smaller screens */
  }
  
  .container-contact form h2 {
    color: #50ade6;
    font-weight: 300;
    margin-top: 20px;
  }
  
  .container-contact form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid black;
    font-weight: 200;
    color: black;
    font-size: 1.5em;
    padding: 10px;
    outline: none;
    width: 100%; /* Responsive width */
    max-width: 100%; /* Prevent overflow */
    height: auto;
    min-height: 80px;
    max-height: 150px; /* Increase max height for flexibility */
  }
  
  textarea::-webkit-scrollbar {
    width: 1em;
  }
  
  textarea::-webkit-scrollbar-thumb {
    background-color: rgba(194, 194, 194, 0.713);
  }
  
  .container-contact form #send {
    border: none;
    background: #50ade6;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.2em;
    color: black;
    width: 90%;
    padding: 10px;
    transition: 0.3s;
  }
  
  .container-contact form #send:hover {
    opacity: 0.7;
  }

  .container-contact form input {
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid black;
    color: #50ade6; /* Default font color after losing focus */
    transition: color 0.3s ease; /* Smooth transition for color */
  }
  
  .container-contact form input:focus {
    color: black; /* Font color while typing (focused) */
  }
  
  .container-contact form input::placeholder {
    color: black; /* Placeholder text color */
  }
  
  .container-contact form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid black;
    font-weight: 200;
    color: #50ade6; /* Default font color */
    font-size: 1.5em;
    padding: 10px;
    outline: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 80px;
    max-height: 150px;
    transition: color 0.3s ease;
  }
  
  .container-contact form textarea:focus {
    color: black; /* Font color while typing */
  }
  
  /* Media Queries for responsiveness */
  @media (max-width: 768px) {
    .container-contact form {
      flex-direction: column; /* Stack items vertically */
      height: auto;
      padding: 15px;
    }
    .container-contact form h1{
      font-size: 40px;
    }
    .container-contact form input,
    .container-contact form textarea {
      width: 100%; /* Full width inputs on smaller screens */
    }
  
    .container-contact form #send {
      margin: 20px auto; /* Center the send button */
    }
  }
  
  @media (max-width: 480px) {
    .container-contact form h1 {
      font-size: 30px;
    }
    .container-contact form h2{
      font-size: 25px;
    }
    
  
    .container-contact form textarea {
      max-height: 100px; /* Further reduce textarea size */
    }
  }