/* General Styles */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Top Section */
.top-section {
  background-color: #f7f8f9;
  padding: 20px 0;
}

.top-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff6600;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s;
}

.cta-button:hover {
  background-color: #e05500;
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background: 
    linear-gradient(0deg, #4a7e80 50%, rgba(74, 126, 128, 0) 100%), 
    url('https://proactive.egowebdev.com/wp-content/uploads/2017/06/pattern-blue.jpg') no-repeat center center/cover;
}

.hero-background .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  max-width: 50%;
  color: #fff;
	padding: 0 40px;
}

.hero-left h1 {
  font-size: 2.5rem;
  padding-bottom: 25px;
	color: #fff;
}

.hero-left h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f0efed;
}

.hero-left p {
  font-size: 1rem;
	color: #f0efed;
}

.hero-right {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

form input {
	background-color: transparent;
}
.form-container {
  background-color: #f0efed;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
}

.form-container p {
	margin-top: 30px;
	text-align: center;	
	font-size: 18px;
	font-weight: 700;
	
}

.form-container form {
	background-color: #f0efed;
}

.gform_required_legend {
	display: none;
}

/* Logo Carousel Section */
.carousel-section {
    padding: 60px 20px;
    background-color: #fff;
}

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

.logo-carousel {
    width: 100%;
}

.logo-carousel .logo-slide {
    padding: 0 20px;
    text-align: center;
    outline: none;
}

.logo-carousel .logo-slide a {
    display: block;
    text-align: center;
}

.logo-carousel .logo-slide img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: inline-block;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-carousel .logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Section */
.about-section {
  padding-bottom: 60px;
}

.about-section .container,
.why-us-section .container,
.info-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Top Portion */
.about-top {
  text-align: center;
  margin-bottom: 40px;
}

.about-top h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #453d3c;
}

.about-top p {
  font-size: 1rem;
  color: #666;
}

/* 50/50 Split */
.about-content {
  display: flex;
  gap: 40px; /* Space between image and text */
}

.about-image,
.info-image,
.info-content {
  flex: 1;
}

.about-image img,
.info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

/* Text Blocks */
.text-block {
  margin-bottom: 40px; /* Space between blocks */
}

.text-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #453d3c;
  margin-bottom: 10px;
}

.text-block p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}


/* Why Us Section */
.why-us-section {
  background-color: #899a7a;
  text-align: center;
	position: relative;
  width: 100%;
  overflow: hidden;
}

.why-us-background {
  width: 100%;
  position: relative;
  background: 
    linear-gradient(0deg,#d1dbc6 60%,rgba(137,154,122,0) 100%), 
    url('https://proactive.egowebdev.com/wp-content/uploads/2017/06/pattern-green.jpg') no-repeat center center/cover;
}

.why-us-background .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.why-us-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #453d3c;
}

/* Flex Containers */
.why-us-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures items wrap on smaller screens */
  gap: 20px; /* Adds spacing between items */
}

.why-us-item {
  flex: 1 1 calc(20% - 20px); /* 5 items evenly spaced */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.why-us-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.why-us-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #453d3c;
  margin-bottom: 10px;
}

.why-us-item p {
  font-size: 0.9rem;
  color: #453d3c;
  line-height: 1.6;
}

/* CTA Button */
.why-us-cta {
  margin-top: 40px; /* Add space between the button and the icon boxes */
}


@media (max-width: 768px) {
  .why-us-flex {
    flex-direction: column;
    align-items: center;
  }

  .why-us-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .why-us-cta {
    margin-top: 20px;
  }
}

/* Info Section */
.info-section {
  padding: 60px 0;
}

.info-section .container {
  gap: 40px;
  align-items: center; 
  flex-direction: row;
}

.text-block {
  margin-bottom: 40px;
}

.text-block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #453d3c;
  margin-bottom: 10px;
}

.text-block p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Image Gallery Section */
.image-gallery {
  display: flex;
  width: 100%;
  height: 200px; /* Adjust the height as needed */
}

.gallery-item {
  flex: 1; /* Each item takes an equal portion of the width */
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the square without distortion */
  object-position: center; /* Centers the image within the square */
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-section.second-cta {
    background-color: #f0efed;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-section .preheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.cta-section h2 {
  font-size: 2rem;
  color: #453d3c;
  margin-bottom: 20px;
}

.cta-section .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #453d3c;
  margin-bottom: 20px;
}

.cta-section .stars {
  color: #f5c518; /* Gold color for stars */
  font-size: 1.2rem;
}

.cta-section .reviews {
  font-size: 1rem;
  color: #666;
}

.cta-section .content {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin-bottom: 30px;
}

.cta-section .cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  background-color: #ff6600;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s;
}

.cta-section .cta-button:hover {
  background-color: #e05500;
  transform: scale(1.05);
}


/* Calculator Section */
.calculator-section {
  padding: 60px 20px;
  background-color: #f0efed;
}

.calculator-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.calculator-wrapper {
    flex: 1;
}

.calculator-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.calculator-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #453d3c;
}

.calculator-form label {
  display: block;
  font-size: 1rem;
  color: #666;
  margin: 15px 0 5px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.radio-group label {
  font-size: 1rem;
  color: #453d3c;
}

.calculator-form input[type="number"] {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.estimate-result h3 {
  font-size: 1.5rem;
  color: #453d3c;
  margin-top: 20px;
}

/* Icon Row (Below Calculator Box) */
.icon-row {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.icon-placeholder {
  width: 60px;
  height: 60px;
}

/* Calculator Info Section */
.calculator-info {
  flex: 1;
}

.calculator-info h3 {
  font-size: 1.8rem;
  color: #453d3c;
  margin-bottom: 15px;
}

.calculator-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* Gap */
.gap {
  height: 40px;
}

/* Custom Check List */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  font-size: 1rem;
  color: #453d3c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  background-image: none;
  padding: 0;
}

.check-icon {
  color: #00c853;
  margin-right: 10px;
}


/* Meet the Team Section */
.meet-the-team {
  padding: 60px 20px;
}

.meet-the-team .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Intro Section */
.meet-the-team .intro {
  text-align: center;
  margin-bottom: 40px;
}

.meet-the-team .intro h2 {
  font-size: 2rem;
  color: #453d3c;
  margin-bottom: 10px;
}

.meet-the-team .intro p {
  font-size: 1rem;
  color: #666;
}

/* Team Row */
.team {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.team-card {
  background-color: #fff;
  padding: 25px;
  flex: 1 1 calc(25% - 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-photo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
}

.team-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #453d3c;
}

.team-title {
  font-size: 1rem;
  color: #666;
}

.contact-btns {
  display: flex;
  gap: 15px;
	justify-content: center;
}

.contact-btns a.phone {
	background-color: #899a7a;
}

.contact-btns a {
  transition: transform 0.2s ease;
	width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;
    text-align: center;
    background-color: #5b5150;
    margin: 0 .25rem;
}

.contact-btns a:hover {
  transform: scale(1.1);
}

.contact-btns a:first-child svg {
	fill: transparent;
    stroke: #ffffff;
    stroke-width: 3px;
}

.meet-the-team .contact-btns a svg {
	fill: #fff;
}

.team-bio {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
}


/* Reviews Section */
.reviews-section {
  background-color: #5b5150;
  padding: 60px 20px;
  text-align: center;
}

.reviews-section .m-0 {
	margin: 0 auto;
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.reviews-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 100px;
}

.reviews-grid {
  display: flex;
  flex-flow: wrap;
  gap: 40px;
  justify-content: center;
}

.review-card {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.review-image {
  position: relative;
  margin-bottom: -40px;
}

.review-image img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  border: 3px solid #5b5150;
  z-index: 1;
  position: relative;
}

.review-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-content p {
  font-size: 1rem;
  color: #453d3c;
  margin: 0;
}

.review-content::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}

.review-meta {
  text-align: center;
  margin-top: 15px;
}

.review-meta strong {
  font-size: 1rem;
  color: #fff;
  display: block;
}

.review-meta span {
  font-size: 0.9rem;
  color: #bbb;
}



/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

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

.testimonials-section .testimonials-title {
  font-size: 2rem;
  color: #453d3c;
  margin-bottom: 40px;
}

/* Reviews Grid */
.testimonials-section .reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Review Card */
.testimonials-section .review-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(50% - 20px); /* Two cards per row */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Review Header */
.testimonials-section .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials-section .review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eaf6ff;
}

.testimonials-section .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .review-meta {
  flex-grow: 1;
  text-align: left;
  margin-left: 15px;
}

.testimonials-section .review-meta strong {
  font-size: 1rem;
  color: #453d3c;
}

.testimonials-section .review-meta span {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

.testimonials-section .review-rating {
  color: #f5c518;
  font-size: 1.2rem;
  margin-left: 15px;
}

/* Review Body */
.testimonials-section .review-body h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #453d3c;
  margin-bottom: 10px;
}

.testimonials-section .review-body p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Footer Section */
.site-footer {
  height: 120px; /* Fixed height */
  background-color: #ffffff; /* White background */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center;
}

.footer-logo img {
  width: 300px; /* Logo width */
  height: 100px; /* Logo height */
  object-fit: contain; /* Ensure the logo scales correctly */
}

