* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

.header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
  padding: 10px 0px 10px;
  margin: 0 auto;
}

.header-container {
  max-width: 1480px;
  padding: 20px 0px 10px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  max-height: 45px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  margin: 0px 10px;
}

.nav a i {
  font-size: 12px;
  margin-left: 3px;
}

/* Active link (Home) */
.nav a.active {
  padding: 10px 22px;
  border: 1px solid #bfbfbf;
  border-radius: 50px;
  color: #ff6a00;
}

.call-btn {
  background: #ff5e14;
  padding: 12px 8px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.call-btn span {
  background: #fff;
  color: #ff6a00;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------
   DROPDOWN BASE
------------------------------ */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 3px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 10px 0;
  width: 190px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Dropdown Links */
.dropdown-menu li {
  padding: 10px 18px;
  /* font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.2s ease; */
}
.dropdown-menu li:hover {
  background: #f8f8f8;
  color: #ff6a00;
}
.dropdown-menu li:hover a {
  /* background: #f8f8f8; */
  color: #ff6a00;
}

.dropdown-menu a {
  /* padding: 10px 18px; */
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.2s ease;
}

/* Hover Effect */
.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #ff6a00;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/*Hero section*/
.hero-section,
.contact-hero-section {
	position:relative;
	overflow:hidden;
  width: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
}

/* Inner box with curved corners */
.hero-section .hero-inner {
  width: 100%;
  height: 80vh;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
	object-position:top center;
}


.contact-hero-section .hero-inner {
  width: 100%;
  height: 80vh;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content */
.hero-section .hero-content,
.contact-hero-section .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 100%;
  padding: 0 20px;
  width: 1100px;
}

.hero-section .hero-content h1,
.contact-hero-section .hero-content h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 15px;
  text-align: center;
}

.hero-section .hero-content h1 span,
.contact-hero-section .hero-content h1 span {
  color: #ff5e14;
}

.hero-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.sub-line {
  font-size: 20px;
  font-weight: 800;
  margin: 40px 0px;
}
.hero-btn {
  color: #1c489c;
  background-color: #ffffff;
  padding: 18px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
}
.service-hero-btn {
  color: #000;
  background-color: #ffffff;
  padding: 15px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  margin: 30px auto;
}

.contact-hero-btn {
  background-color: #ff5e14;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
}

.hero-btn a {
  font-weight: 800;
  font-size: 18px;
  text-align: center;
}
.extra-text {
  display: none;
}

.show-text .extra-text {
  display: inline;
}

/* .show-text .read-more-btn::after {
  content: "Read Less";
} */

.read-more-btn {
  color: #fff;
  font-weight: 800;
  margin-left: 5px;
  cursor: pointer;
  text-decoration: none;
}
.florida-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.success-section {
  width: 100%;
  background-color: white;
  padding: 48px 16px;
}

.success-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.success-section .title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #ff5e14;
  margin-bottom: 20px;
}

.success-section .title span {
  color: #000;
  font-weight: 800;
}

/* .success-section .success-span span {
  color: #000;
} */

.success-section .counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.success-section .counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

.success-section .counter-number {
  font-size: 3rem;
  font-weight: bold;
  -webkit-text-stroke: 4px #bac4d2;
  text-stroke: 2px #d1d5db;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
	paint-order: stroke fill;
color: white;
}

.success-section .counter-label {
  font-size: 0.75rem;
  color: #9a9a9a;
  text-transform: capitalize;
  letter-spacing: 0.09em;
  font-weight: 500;
}

.success-section .divider {
  display: none;
}

/* FOOTER */
.footer {
  background: #1c489c;
  color: #ffffff;
  padding: 60px 20px 40px;
  font-family: "Nunito Sans", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}

/* Logo */
.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

/* Headings */
.footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-about h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 15px;
  font-family: "Montserrat", sans-serif;
}

/* Text */
.footer p a{
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 400px;
  color:#fff;
	text-decoration:none;
	margin-bottom:10px;
}

.footer-label {
  color: #ff5e14;
  font-weight: 700 !important;
  margin: 10px 0px;
}



/* Services List */
.footer ul {
  list-style: disc inside;
  padding: 0;
}

.footer ul a {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Montserrat";
  color: #fff;
  text-decoration: none;
  line-height: 35px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffffff;
  color: #1e3a80;
}

/* Newsletter */
.newsletter h3 {
  font-size: 18px;
  font-weight: bold;
  margin:14px 0px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2px;
}

.footer-newsletter {
  flex: 1;
  width: 250px;
  min-width: 180px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  color: #fff;
}

.footer-newsletter::placeholder {
  color: #ffffff;
}

.subscribe-btn {
  background: #e35b25;
  color: #fff;
  width: 40%;
  font-weight: 700;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-btn:hover {
  background: #ff5e14;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a,
.footer-bottom p {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.about-hvac-section {
  background-color: #fbfbfb;
  padding: 48px 16px;
}

.about-hvac-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-hvac-section .content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* Left Column - Images */
.about-hvac-section .image-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hvac-section .top-image {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}

.about-hvac-section .top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hvac-section .bottom-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0px 4px 15px -2px #00000040;
}

.about-hvac-section .bottom-card p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: #000;
  margin-bottom: 20px;
}

.about-hvac-section .bottom-card p:last-child {
  margin-bottom: 0;
}

.about-hvac-section .bottom-card strong {
  font-weight: 600;
  color: #000;
}

/* Right Column - Text & Image */
.about-hvac-section .text-column {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.about-hvac-section .text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-hvac-section .main-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.about-hvac-section .main-title .highlight {
  color: #ff6b35;
  display: block;
  margin-top: 8px;
}

.about-hvac-section .right-image {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8a5c 0%, #ff6b35 100%);
}

.about-hvac-section .right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hvac-why-choose-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fbfbfb;
  padding: 60px 0;
}

.hvac-why-choose-section .slide-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 0;
  min-height: 600px;
  position: relative;
}

.hvac-why-choose-section .left-section {
  flex: 0 0 55%;
  position: relative;
  max-width: 800px;
  min-height: 600px;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  overflow: hidden;
}

.hvac-why-choose-section .left-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-radius: 16px;
  z-index: 1;
}

.hvac-why-choose-section .why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 0;
}

.hvac-why-choose-section .overlay-content {
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  color: white;
  position: relative;
  z-index: 2;
}

.hvac-why-choose-section .overlay-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hvac-why-choose-section .overlay-content h1 span {
  color: #ff6b35;
}

.hvac-why-choose-section .overlay-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.hvac-why-choose-section .right-section {
  flex: 0 0 50%;
  position: relative;
  max-width: 600px;
  margin-left: -100px;
  z-index: 2;
}

.hvac-why-choose-section .swiper {
  width: 100%;
  height: auto;
}

.hvac-why-choose-section .swiper-slide {
  height: auto;
}

.hvac-why-choose-section .cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hvac-why-choose-section .info-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0px 4px 14px -7px #00000040;
  transition: transform 0.3s ease;
}

.hvac-why-choose-section .info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a3838;
}

.hvac-why-choose-section .info-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.hvac-why-choose-section .swiper-button-next,
.hvac-why-choose-section .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: #1c489c;
  border-radius: 50%;
  color: white;
  top: auto;
  bottom: 30px;
}

.hvac-why-choose-section .swiper-button-next:after,
.hvac-why-choose-section .swiper-button-prev:after {
  font-size: 15px;
  font-weight: bold;
}

.hvac-why-choose-section .swiper-button-next {
  right: 0;
  bottom: -60px;
}

.hvac-why-choose-section .swiper-button-prev {
  right: 70px;
  left: auto;
  bottom: -60px;
}

.hvac-services-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.hvac-services-section .section-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.section-header h1 span {
  color: #ff5e14;
}
.hvac-services-section .section-header p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.hvac-services-section .section-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}
.hvac-services-section .section-header h1 .orange-text {
  color: #ff6b35;
}

.hvac-services-section.section-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.hvac-services-section .services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px;
}

.hvac-services-section .service-card {
  position: relative;
  width: 100%;
  min-height: 350px;
}

.hvac-services-section .container {
  position: relative;
  width: 300px;
  height: 350px;
}
.hvac-services-section .blue-shape {
  position: absolute;
  width: 430px;
  height: 270px;
  background-color: #204eb0;
  border-radius: 20px;
  clip-path: path(
    "M 0,20 Q 0,0 20,0 L 410,0 Q 430,0 430,20 L 430,180 Q 430,200 410,200 L 280,200 Q 260,200 260,220 L 260,250 Q 260,270 240,270 L 20,270 Q 0,270 0,250 Z"
  );
  padding: 25px;
  box-sizing: border-box;
}
.hvac-services-section .content {
  color: white;
  max-width: 800px;
	padding:3px 8px;
}
.hvac-services-section .content h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
}
.hvac-services-section .content p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin: 10px 0px;
}
.hvac-services-section .button {
  position: absolute;
  bottom: 88px;
  right: -125px;
  background-color: white;
  color: #2b1818;
  padding: 12px 24px;
  border: 1px solid #2b1818;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
  text-decoration: none;
}
.hvac-services-section .button:hover {
  background-color: #f9fafb;
  border-color: #ff6017;
}

.contact-section {
  width: 100%;
  padding: 80px 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section .contact-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-section .contact-wrapper {
  background: #fff;
  padding: 40px 30px !important;
  max-width: 1200px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 4px 15px -2px #00000040;
  padding: 30px;
  display: flex;
  gap: 70px;
  align-items: center;
}

.contact-section .contact-form {
  flex: 1;
}

.contact-section .input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0px;
}

.contact-section .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  margin: 12px 0px;
}

.contact-section .form-group.full {
  width: 100%;
  margin: 0px;
}

.contact-section .form-group label {
  position: absolute;
  left: 15px;
  top: 31px;
  background: white;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  font-family: "Montserrat", sans-serif;
  z-index: 1;
}

.contact-section #wpcf7-f7-p30-o1 {
  width: 50%;
}

.contact-section .form-group input,
.contact-section .form-group select,
.contact-section .form-group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #000;
  outline: none;
  font-size: 14px;
  width: 100%;
  margin: 20px 0px;
}

.contact-section .form-group textarea {
  height: 120px;
  resize: none;
}

.contact-section .send-btn {
  background: #1c489c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-section .send-btn:hover {
  background: #163a88;
}

.contact-section .contact-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.contact-section .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.section-header h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.team-section {
  width: 100%;
  padding: 80px 20px;
  background: #1c489c;
}

.team-section .team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-section .team-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.team-section .team-header h1 span {
  color: #ff6b35;
}

.team-section .team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.team-section .team-member {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-section .team-member:hover {
  transform: translateY(-10px);
}

/* All same height */
.team-section .team-member {
  width: 280px;
  height: 500px;
  border-radius: 200px;
}

.team-section .team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-section .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 49%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-section .team-member:hover .team-overlay {
  opacity: 1;
}

.team-section .team-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.team-section .team-overlay p {
  font-size: 16px;
  font-weight: 500;
  color: #ddd;
}

.serving-areas {
  padding: 80px 20px;
  background: #ffffff;
}
.serving-areas .section-header h1 {
  text-align: left;
}

.serving-areas .serving-areas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.serving-areas .serving-areas-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.serving-areas .serving-areas-content h2 span {
  color: #ff5b1f;
}

.serving-areas .serving-areas-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #000;
  font-weight: 500;
}

.serving-areas .serving-areas-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.serving-areas .serving-areas-locations ul {
  padding-left: 18px;
  margin: 0;
}

.serving-areas .serving-areas-locations li {
  margin-bottom: 6px;
  line-height: 30px;
  font-size: 16px;
  color: #000;
}

.serving-areas .serving-areas-note {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

.serving-areas .serving-areas-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 20px;
  background-color: #fbfbfb;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.testimonial-section .container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.testimonial-section .title {
  font-size: 42px;
  font-weight: 700;
}
.testimonial-section .title span {
  color: #ff7b00;
}
.testimonial-section .subtitle {
  max-width: 700px;
  margin: 10px auto 60px;
  color: #000;
  font-size: 16px;
}

/* --- Main Grid Layout (Left – Center – Right) --- */
.testimonial-section .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Left & Right Avatar Groups */
.testimonial-section .side-avatars {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.testimonial-section .side-avatars .row {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* Avatar Sizes */
.testimonial-section .avatar {
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 20px;
  cursor: pointer;
  display: block;
}

.testimonial-section .small {
  width: 55px;
  height: 55px;
}

.testimonial-section .medium {
  width: 65px;
  height: 65px;
}

/* Center Main Image */
.testimonial-section .center-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

/* Stars */
.testimonial-section .stars {
  margin: 17px 0 3px;
  font-size: 30px;
  letter-spacing: 0px;
  color: #ffb703;
}

/* Person Name */
.testimonial-section .person-name {
  font-size: 20px;
  margin-top: 10px;
}

/* Review Text */
.testimonial-section .review-text {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.7;
  color: #444;
}

/* Arrows */
.testimonial-section .arrows {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.testimonial-section .arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1c489c;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.arc-container {
  position: relative;
  width: 220px;
  height: 380px;
}

.arc-container .avatar {
  position: absolute;
}
.left-side .avatar:nth-child(1) {
  top: 0px;
  left: 40px;
}
.left-side .avatar:nth-child(2) {
  top: 60px;
  left: 10px;
}
.left-side .avatar:nth-child(3) {
  top: 130px;
  left: -10px;
}
.left-side .avatar:nth-child(4) {
  top: 200px;
  left: 10px;
}
.left-side .avatar:nth-child(5) {
  top: 270px;
  left: 40px;
}
.left-side .avatar:nth-child(6) {
  top: 330px;
  left: 80px;
}

/* RIGHT SIDE — mirror curve */
.right-side .avatar:nth-child(1) {
  top: 0px;
  right: 40px;
}
.right-side .avatar:nth-child(2) {
  top: 60px;
  right: 10px;
}
.right-side .avatar:nth-child(3) {
  top: 130px;
  right: -10px;
}
.right-side .avatar:nth-child(4) {
  top: 200px;
  right: 10px;
}
.right-side .avatar:nth-child(5) {
  top: 270px;
  right: 40px;
}
.right-side .avatar:nth-child(6) {
  top: 330px;
  right: 80px;
}

/* Parent Wrapper */
.services-plan {
  padding: 60px 20px;
  background-color: #ffffff;
}

/* Heading */
.services-plan .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.services-plan p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

/* Plans Container */
.services-plan .plans-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 30px 0px;
}

/* Single Plan Box */
.services-plan .plan-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  width: 520px;
  box-shadow: 0px 4px 15px -2px #00000040;
  transition: 0.3s ease-in-out;
  border: 1px solid #eee;
}
.services-plan .plan-box h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin-bottom: 12px;
}

/* Hover Effect */
.services-plan .plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}

/* Plan Title */
.services-plan .plan-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #1c489c;
  text-align: center;
  padding: 12px 0px;
}

/* Price (if using) */
.services-plan .plan-price {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Features List */
.services-plan .plan-features {
    list-style: none;
    padding: 15px 0px;
    text-align: left;
    margin: 0px 0 25px 0;
    border-top: 1px solid #1c489c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.services-plan .plan-features li {
	display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    text-align: left;
    margin: 12px 0px;
    justify-content: center;
    line-height: 22px;
}

/* Button */
.services-plan .plan-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background: #1c489c;
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 22px;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  color: #fff;
}

.services-plan .plan-btn:hover {
  background-color: #000;
}

.services-plan .plan-features li i {
  background: #1c489c;
  color: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.services-plan .plan-box:hover {
  background-color: #1c489c;
  color: #fff;
}
.services-plan .plan-box:hover .plan-title {
  color: #fff;
}
.services-plan .plan-box:hover .plan-btn {
  background-color: #fff;
  color: #1c489c;
}
.services-plan .plan-box:hover .plan-features {
  border-top: 1px solid #e5e7eb;
}
.services-plan .plan-box:hover .plan-features li i {
  background: #fff;
  color: #1c489c;
}

/* --- faq section --- */
.faq-section {
  padding: 60px 20px;
  background-color: #fbfbfb;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq-intro .badge {
  display: inline-block;
  background: #ff6a2b;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.faq-intro .section-header h1 {
  text-align: left;
}
/* --- FAQ Items --- */
.faq-list details {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-list details {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.faq-list details.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

/* Icons */
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  background-color: #ff6a2b;
  transition: 0.3s;
  padding: 1px 8px;
  color: #fff;
  border-radius: 25px;
}

details[open] summary:after {
  content: "−";
}

/* Answer Text */
.faq-list p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* CONTACT BANNER */
.contact-banner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background-color: #000;
  margin: 40px;
  padding: 0;
  background-color: #5288ee;
  background-size: cover;
  background-position: center;
}
/* .contact-banner.has-bg-image:hover {
  background-image: var(--bg-image);
} */

/* Dark overlay */
.contact-banner::after {
 content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}
.contact-banner.has-bg-image:hover::after {
  opacity: 1;
}


.contact-banner .contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-banner .contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-left {
  max-width: 550px;
}
/* LEFT TEXT */
.contact-banner .contact-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;

  line-height: 1.3;
}

.contact-banner .contact-left h2 span {
  color: #ff6a2b;
}

.contact-banner .contact-left p {
  max-width: 420px;
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  font-family: "Montserrat";
}

/* RIGHT INFO */
.contact-banner .contact-right {
  text-align: right;
  color: #fff;
  font-size: 16px;
}

.contact-banner .contact-right p {
  margin: 5px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Montserrat";
}
.contact-banner .contact-right a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.contact-banner .cta-bar {
  margin-top: 40px;
  background: #ff6a2b;
  padding: 25px 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-banner .cta-bar p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  max-width: 700px;
  line-height: 30px;
  font-family: "Montserrat";
}

/* CTA Button */
.contact-banner .cta-btn {
  background: #fff;
  color: #000;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;

  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-banner .cta-btn span {
  background: #ff6a2b;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn .arrow-icon::after {
  content: "↗";
  display: inline-block;
  font-weight: bold;
}

.weather-challenges {
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.weather-challenges .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.weather-challenges .image-container {
  width: 100%;
}
.weather-challenges .image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.weather-challenges .text-content {
  padding: 20px 0;
}

.weather-challenges .icon-badge {
  display: none;
}

.weather-challenges .main-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.weather-challenges .highlight {
  color: #ff6b35;
}

.weather-challenges .description {
  font-size: 16px;
  line-height: 32px;
  color: #000;
  font-family: "Montserrat";
  margin-bottom: 20px;
}

.weather-challenges .read-more {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
  text-decoration: underline;
  font-family: "Montserrat";
}

.weather-challenges .read-more:hover {
  color: #e55a2b;
  text-decoration: underline;
}

.weather-challenges .section-header h1 {
  font-size: 40px;
  line-height: 55px;
  text-align: left;
}

.hvac-code-section {
  line-height: 1.6;
  color: #333;
  width: 100%;
  padding: 40px 0px 0px;
}

.hvac-code-section .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: stretch;
}
.hvac-code-section .section-header h1 {
  color: #fff;
  text-align: left;
  line-height: 1.3;
}

.hvac-code-section .text-content {
  background: #1c489c;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 53px;
  color: white;
  padding: 30px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hvac-code-section .main-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hvac-code-section .highlight {
  color: #ff6b35;
}

.hvac-code-section .description {
  font-size: 16px;
  line-height: 32px;
  font-family: "Montserrat";
  margin-bottom: 20px;
  opacity: 0.95;
}

.hvac-code-section .image-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hvac-code-section .image-container img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 53px;
}
.hvac-code-section .image-container img.expanded {
  height: 100%;
}

.trusted-services {
  line-height: 1.6;
  padding: 80px 20px;
  text-align: center;
  background-image: url("../images/services-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.trusted-services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1;
}

.trusted-services > * {
  position: relative;
  z-index: 2;
}

.trusted-services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0px;
}

.trusted-services .main-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.trusted-services .highlight {
  color: #ff6b35;
}

.trusted-services .description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
  margin-bottom: 25px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.trusted-services .cta-button {
  display: inline-block;
  background: #1c489c;
  color: white;
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.trusted-services .cta-button:hover {
  background: #153a7d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28, 72, 156, 0.3);
}

.local-hvac-team {
  line-height: 1.6;
  color: #fff;
  background: #1c489c;
  padding: 0;
}

.local-hvac-team .content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 80px;
}

.local-hvac-team .image-container {
  width: 100%;
  max-width: 550px;
}

.local-hvac-team .image-container img {
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 13;
  object-fit: cover;
  border-radius: 25px;
}

.local-hvac-team .text-content {
  padding-left: 20px;
}

.local-hvac-team .section-header h1 {
  color: #fff;
  line-height: 55px;
  text-align: left;
  color: #fff;
}

.local-hvac-team .description {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Montserrat";
  color: #fff;
  margin-bottom: 20px;
}

.contact-hero-section .hero-content h1 {
  max-width: 800px;
  margin: 30px auto;
}

.contact-form-section {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

.contact-form-section * {
  box-sizing: border-box;
}

.contact-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.contact-form-section__left {
  flex: 1;
}

.contact-form-section__left h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #000;
}

.contact-form-section__left p {
  font-size: 16px;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
}

.contact-form-section__info {
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.contact-form-section__info li {
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #000;
}
.contact-form-section__info li i {
  background: #1c489c;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

/* RIGHT SIDE FORM */
.contact-form-section__form-wrapper {
  flex: 1;
  background: #1c489c;
  padding: 40px;
  border-radius: 25px;
}

.contact-form-section__form-wrapper h3 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section__form input,
.contact-form-section__form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 500;
}

.contact-form-section__form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form-section__form .wpcf7-submit {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: #ff5e14;
  color: white;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-section__form button:hover {
  background: #e65612;
}

/* Fix text alignment beside icons */
.contact-form-section .contact-form-section__info li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.contact-form-section .contact-form-section__info li a {
  font-size: 18px !important;
  color: #000 !important;
  text-decoration: none !important;
}
/* Ensure the icon stays fixed size */
.contact-form-section .contact-form-section__info li i {
  flex-shrink: 0;
  margin-top: 4px;
}

.location-map-section {
  width: 100%;
  padding: 30px;
  background: #ffffff;
}

.location-map-section__container {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Remove max-width for full stretch */
.location-map-section__container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about-company-section {
  width: 100%;
  padding: 90px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.about-company-section * {
  box-sizing: border-box;
}

.about-company-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.about-company-section__image {
  flex: 1;
}

.about-company-section__image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 25px;
}

/* CONTENT SIDE */
.about-company-section__content {
  flex: 1;
}

.about-company-section__content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-company-section__content h2 span {
  color: #ff6a1a;
}

.about-company-section__content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
}

/* INFO GRID */
.about-company-section__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 10px;
}

.about-company-section__info a {
  text-decoration: none;
}

.about-company-section__info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}

.about-company-section__info span {
  flex: 1;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #000;
}

.about-company-section .section-header h1 {
  text-align: left;
}

.about-company-section__info i {
  background: #1c489c;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.stats-section {
  width: 100%;
  padding: 80px 0;
  background: #fbfbfb;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: center;
  text-align: center;
}

/* Icon circle */
.stat-icon {
  width: 90px;
  height: 90px;
  background: #1f49a2; /* blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon i {
  color: #fff;
  font-size: 34px;
}

/* Number */
.stat-box h2 {
  font-size: 36px;
  color: #ff5e14;
  font-weight: 800;
  margin-bottom: 5px;
}

/* Text */
.stat-box p {
  font-weight: 800;
  font-size: 14px;
  color: #787878;
}

/* Container */
.tech-section {
  padding: 80px 0;
  width: 100%;
}

.tech-section .container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* TOP ROW (left heading + right paragraph) */
.tech-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.tech-top h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 800;
  width: 50%;
}

.tech-top h2 span {
  color: #ff5e14;
}

.tech-top p {
  width: 50%;
  font-size: 16px;
  line-height: 22px;
  font-family: "Montserrat";
  color: #000;
  font-weight: 500;
}

/* GRID */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 70px;
}

/* Each item */
.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tech-item img {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  object-fit: cover;
}

.tech-item h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.tech-item p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  font-family: "Montserrat";
  font-weight: 500;
}

.service-banner {
  display: flex;
  width: 100%;
  margin: 60px 0;
  flex-wrap: wrap;
}

/* Box */
.service-banner .service-banner-box {
  width: 50%;
  padding: 30px 75px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.service-banner .left-box {
  background: #1c489c;
}

.service-banner .right-box {
  background: #ff5e14;
}

/* Content */
.service-banner .service-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* Icon Box */
.service-banner .service-banner-icon {
  background: #fff;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-banner .service-banner-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.service-banner .service-banner-content a {
  color: #fff;
}
/* Arrow */
.service-banner .service-banner-content i {
  font-size: 22px;
}

.service-banner-content span {
  font-weight: 800;
  font-size: 22px;
}

/* Parent scoped dedicated team section */
.dedicated-team {
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.dedicated-team__container {
  max-width: 1050px;
  margin: 0 auto;
}

.dedicated-team__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.dedicated-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.dedicated-team__card {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  text-align: left;
  transition: 0.3s ease;
}

.dedicated-team__card:hover {
  transform: translateY(-5px);
}

.dedicated-team__image {
  width: 100%;
  border-radius: 15px;
  height: 358px;
  display: block;
  box-shadow: 0px 4px 15px -2px #00000040;
  object-fit: cover;
  object-position: top;
}

.dedicated-team__role {
  font-size: 16px;
  margin-top: 20px;
  color: #7a7a7a;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.dedicated-team__name {
  font-size: 28px;
  font-weight: 700;
  margin-top: 5px;
}
.dedicated-team .section-header h1 {
  margin: 0 auto;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero-reviews-content {
  line-height: 22px;
  max-width: 700px;
  font-size: 16px;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Montserrat";
}

.reviews-grid {
  background: #fff;
  padding: 40px 20px;
}

.reviews-grid .reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid .reviews-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.reviews-grid .review-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 15px -2px #00000040;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.reviews-grid .review-card:hover {
  background: #1c489c;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transform: translateY(-4px);
}

.reviews-grid .review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-grid .stars {
  display: flex;
  gap: 4px;
}

.reviews-grid .star {
  color: #ffc444;
  font-size: 30px;
  padding-right: 2px;
  transition: color 0.3s ease;
}

.reviews-grid .review-card:hover .star {
  color: #fcd34d;
}

.reviews-grid .review-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-grid .review-card:hover .review-avatar {
  border-color: white;
}

.reviews-grid .review-title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  transition: color 0.3s ease;
  margin-bottom: 26px;
}

.reviews-grid .review-card:hover .review-title {
  color: white;
}

.reviews-grid .review-text {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.reviews-grid .review-card:hover .review-text {
  color: rgba(255, 255, 255, 0.95);
}

.reviews-grid .show-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  transition: transform 0.2s ease;
}

.reviews-grid .show-more-btn:hover {
  transform: translateY(2px);
}

.reviews-grid .arrow-icon {
  width: 48px;
  height: 48px;
  border: 4px solid #ff5e14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-grid .show-more-btn:hover .arrow-icon {
  background: #ff5e14;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.reviews-grid .arrow-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ff6b35;
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.reviews-grid .show-more-btn:hover .arrow-icon svg {
  stroke: white;
}

.reviews-grid .show-more-text {
  font-size: 20px;
  font-weight: 800;
  color: #000;
}

.reviews-grid .hidden-reviews {
  display: none;
}

.reviews-grid .hidden-reviews.active {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: 24px;
}
.offwhite-bg {
  background-color: #fbfbfb;
}

/* MAIN WRAPPER */
.popular-services {
  padding: 60px 0;
  font-family: "Inter", sans-serif;
}

/* HEADING */
.popular-services .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.popular-services .section-heading h2 {
  font-size: 34px;
  font-weight: 800;
}

.popular-services .section-heading span {
  color: #ff6b1a;
}

/* GRID WRAPPER */
.popular-services .services-wrapper {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* --- ROWS --- */
.popular-services .service-row {
  display: grid;
  gap: 25px;
  margin-bottom: 25px;
  align-items: stretch;
}

/* Row 1 — 40% / 60% */
.popular-services .row-1 {
  grid-template-columns: 0.4fr 0.6fr;
}

/* Row 2 — 60% / 40% */
.popular-services .row-2 {
  grid-template-columns: 0.6fr 0.4fr;
}

/* Row 3 — 50% / 50% */
.popular-services .row-3 {
  grid-template-columns: 1fr 1fr;
}

/* --- CARDS --- */
.popular-services .service-card {
  min-height: 330px;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.popular-services .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.hover-zoom img {
  transition: transform 0.4s ease-in-out;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

.popular-services .service-card:hover img {
  transform: scale(1.05);
}

/* CONTENT OVERLAY - DARKER GRADIENT */
.popular-services .service-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

/* TEXT CONTENT */
.popular-services .service-content-text {
  flex: 1;
}

.popular-services .service-content h3 {
  color: white;
  margin: 0 22px 18px 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}

.popular-services .service-content p {
  margin: 0;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
}

/* ARROW BUTTON - SIDE BY SIDE */
.popular-services .arrow {
  background: #ff6b1a;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transform: rotate(310deg);
  transition: 0.3s;
  flex-shrink: 0;
}

.popular-services .arrow:hover {
  background: #e45700;
  transform: scale(1.1);
}

/* Container */
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 60px;
}

/* The image always stays fully visible (NO cropping) */
.video-section__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Text + play button overlay */
.video-section__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  padding: 0 20px;
}

/* Play Button */
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FF5E14;
    border: none;
    cursor: pointer;
    position: relative;
}

.video-play-btn::before {
	content: '';
    position: absolute;
    left: 32px;
    top: 24px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 26px solid #fff;
}

.video-play-btn span {
  font-size: 34px;
  color: white;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: scale(1.08);
}

/* Heading */
.video-section h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
	max-width:900px;
	margin:0 auto;
}

/* Modal background */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal inner box */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

/* Close button */
.close-video {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Video element */
#videoPlayer {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.single-service-desc {
  line-height: 22px;
  max-width: 700px;
  font-size: 16px;
  margin: 0px auto 30px;
  font-weight: 500;
  font-family: "Montserrat";
}

.single-service-content {
  padding: 80px 20px;
  background: #fff;
}

.single-service-content .ssc-container {
  max-width: 1200px;
  margin: auto;
}

.single-service-content .ssc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}

/* LEFT COLUMN */
.single-service-content h1 {
  font-size: 38px;
  margin-bottom: 15px;
  text-align: left;
}

.single-service-content h1 span,
.single-service-content h2 span,
.single-service-content h3 span {
  color: #ff5722;
}

.single-service-content h2 {
  font-size: 30px;
  margin: 30px 0 15px;
}

.single-service-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: "Montserrat";
}

.single-service-content .ssc-main-img {
  width: 100%;
  border-radius: 25px;
  margin: 25px 0;
  object-fit: cover;
}

.single-service-content .ssc-signs {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.single-service-content .ssc-signs li {
  margin-bottom: 10px;
}

/* RIGHT COLUMN */
.single-service-content .ssc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  height: 350px;
  background: #000;
}

.single-service-content .ssc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-service-content .ssc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #161616 100%);
  z-index: 1;
}

.single-service-content .ssc-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  z-index: 2;
}
.single-service-content .ssc-card-content h4 {
  font-weight: 800;
  font-size: 28px;
  max-width: 300px;
}
.single-service-content .ssc-left .ssc-left-content {
  padding: 30px 0px;
  border-bottom: 1px solid #e4e4e4;
}
.single-service-content .ssc-card-content p {
  color: #fff;
  font-size: 14px;
  max-width: 75%;
  font-weight: 500;
  padding: 10px 0px 0px;
}

.single-service-content .ssc-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #ff5722;
  color: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 3;
  transform: rotate(330deg);
}

/* BUTTON */
.single-service-content .ssc-btn {
  display: block;
  width: fit-content;
  font-weight: 800;
  padding: 10px 25px;
  border: 2px solid #000;
  border-radius: 50px;
  margin: 30px auto;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

/* CONTACT BOX */
.single-service-content .ssc-contact {
  background: #1c489c;
  color: #fff;
  padding: 45px 25px;
  border-radius: 18px;
}

.single-service-content .ssc-contact-row {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.single-service-content .ssc-icon {
  background: #fff;
  color: #1c489c;
  padding: 18px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.ssc-contact-row p {
  color: #fff;
}

.blogs-section {
  padding: 80px 20px;
  background: #fff;
}

.blogs-section .blogs-container {
  max-width: 1300px;
  margin: auto;
}

.blogs-section .blogs-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 60px;
}

/* BLOG GRID */

.blogs-section .blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 30px;
}
.blogs-section .blog-card {
  overflow: visible;
  border-radius: 20px;
}

.blogs-section .blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
}

.blogs-section .blog-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blogs-section .blog-card h3 span {
  color: #ff5722;
  font-size: 18px;
  margin-left: 10px;
}

.blogs-section .blog-card p {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  font-weight: 500;
  font-family: "Montserrat";
}

/* SIDEBAR */

.blogs-search {
  display: flex;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid #c9c9c9;
}

.blogs-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 15px;
  background: transparent;
}

.blogs-search button {
  border: none;
  background: #ff6b2b;
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
}

/* CONTACT FORM */
.blogs-form {
  background: #1b4aa0;
  border-radius: 20px;
  padding: 25px;
}

.blogs-form h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff3d;
}
.blogs-form select option {
  background: #fff !important;
  color: #000 !important;
}
.blogs-form input,
.blogs-form select,
.blogs-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 14px 15px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Montserrat";
  font-size: 13px;
  outline: none;
}

.blogs-form ::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.blogs-form select {
  appearance: none;
  color: #fff;
}

.send-btn {
  background: #ff5e14;
  color: #fff;
  border: none;
  font-weight: 800;
  padding: 12px 22px;
  width: 170px;
  border-radius: 50px;
  margin: 10px auto 0;
  display: block;
  cursor: pointer;
  font-size: 16px;
}
.blog-card .blog-title-link {
  color: #000;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

/* SINGLE BLOG SECTION (scoped to avoid conflicts) */
.single-blog-section {
  padding: 80px 20px;
  background: #fff;
}

.single-blog-section .blogs-container {
  max-width: 1300px;
  margin: auto;
}

.single-blog-section .blogs-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 60px;
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 30px;
}

/* LEFT COLUMN */
.single-blog-section .single-blog-left {
  width: 100%;
}


.single-blog-section .single-blog-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}
.single-blog-section .single-blog-title strong{
	line-height:1.5 !important;
}
.single-blog-section .single-blog-intro {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 25px;
  color: #000;
  font-family: "Montserrat";
}

.single-blog-section .single-blog-hero {
  width: 100%;
  border-radius: 18px;
  margin: 25px 0;
  height: 360px !important;
  object-fit: cover;
}

.single-blog-section .wp-block-heading strong{
	line-height:1.7;
}

.single-blog-section .single-blog-left h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 25px 0 10px;
}

.single-blog-section .single-blog-left h3 strong{
	font-size:18px;
}
.single-blog-section .single-blog-left p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  font-family: "Montserrat";
}
.single-blog-section .single-blog-left ul li {
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 35px;
}

.article-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.article-section .section-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}
.article-section .section-title {
  font-size: 36px;
  font-weight: 800;
}

.article-section .view-all-btn {
  background: #ff5e14;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.article-section .view-all-btn:hover {
  background: #e64a19;
}

.article-section .swiper {
  width: 100%;
  padding-bottom: 50px;
}

.article-section .swiper-slide {
  width: auto;
}

.article-section .article-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 320px;
  text-decoration: none;
  cursor: pointer;
}

.article-section .article-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.article-section .article-content {
  padding: 20px;
}

.article-section .article-title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-section .article-title i {
  color: #ff5e14;
}

.article-section .article-description {
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat";
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-section .swiper-pagination {
  display: none !important;
}

.article-section .swiper-pagination {
  bottom: 0 !important;
}

.article-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.article-section .swiper-pagination-bullet-active {
  background: #ff5722;
  width: 30px;
  border-radius: 5px;
}

/* Fade-up base (hidden) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

/* When visible */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.entry-title {
  display: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* .contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
} */

/* Contact Form 7 Wrapper */
.contact-wrapper .wpcf7 {
  width: 50%;
}

.contact-form-wrapper {
  width: 100%;
}

/* Input Row - Two columns */
.contact-form-wrapper .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0px;
}

/* Form Groups */
.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-form-wrapper .form-group.half {
  width: 100%;
  margin: 0px;
}

.contact-form-wrapper .form-group.full {
  width: 100%;
  grid-column: 1 / -1;
}

/* Labels */
.contact-form-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

/* Form Controls */
.contact-form-wrapper .form-control,
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #000;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #1c489c;
}

.contact-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.contact-form-wrapper .send-btn {
  background: #1c489c;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-wrapper .send-btn:hover {
  background: #153a7a;
}

/* Contact Image */
.contact-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

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

.contact-image.hover-zoom:hover img {
  transform: scale(1.05);
}

/* CF7 Response Messages */
.wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7-validation-errors {
  border: 1px solid #f44336;
  background: #ffebee;
  color: #c62828;
}

.wpcf7-mail-sent-ok {
  border: 1px solid #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

/* CF7 Spinner */
.wpcf7-spinner {
  margin-left: 10px;
}
.serving-areas .serving-areas-locations li a{
	text-decoration:none;
	color:#000;
}

.single-blog-left ol, .single-blog-left ul{
	padding-left:15px;
}

.single-blog-left .wp-block-list li{
 line-height:2;
}
.single-blog-section .single-blog-left .faq-question{
	    margin: 15px 0 10px;
}
.single-blog-section .faq-question strong {
  line-height:1;
}

.single-blog-left a{
	color:#1b4aa0;
}