@charset "UTF-8";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-type: none;
}

li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6800;
  font-size: 14px;
}


.branded
{
	color: #606060;
	text-align: center;
	margin-top: 5px;
}

body {
  background-color: #323232;
  margin: 0;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  overflow-x: hidden;
}

a:link, a:visited {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* General Components */
.d {
  padding: 10px;
  background-color: #ff6800;
  border-radius: 10px;
  color: #ffffff;
  width: 25%;
  margin: 0 auto;
  text-align: center;
}

.footer {
  width: 100%;
  padding: 30px;
  background-color: #71b134;
  color: #323232;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.footer span {
  font-size: 24px;
  font-weight: bold;
}

.title-bar {
  width: 100%;
  padding: 10px;
  background-color: #71b134;
  color: #ffffff;
  font-size: 14px;
  text-align: left;
  font-weight: normal;
  border-bottom: 2px solid #ffffff;
}

.testimonials-item
{
	width: 50%;
	
}

.testimonials strong
{
	color: #ff6800;
	font-size: 1.5em;
}

.testimonials span
{
	color: #ff6800;
	font-size: 1.2em;
}




.testimonials
{
	width: 100%;
	min-height: 300px;
	background-image:url("../images/liz-back.png");
	background-position: bottom;
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
	border: 2px solid #575757;
	border-radius: 15px;
	margin-top: 30px;
	padding: 30px;
}

.tag
{
		color: #ff6800;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}

.title-bar span {
  font-size: 18px;
  font-weight: bold;
}

/* Content layout - floats for desktop, stack on mobile */
.content-left {
  width: 30%;
  float: left;
	padding:1.75%;
	text-align: right;
}

.content-right {
  width: 59%;
  float: left;
	padding:1.75% 1.75% 1.75% 0% ;	
}

.clear {
  clear: both;
}

/* Header and Menu */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ff6800;
  color: white;
  position: relative;  /* stacking context */
  z-index: 1001;       /* above menu-side */
}

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

.menu, .menu-side {
  display: flex;
  gap: 20px;
}

.menu-item {
  cursor: pointer;
  padding: 10px;
  color: white;
  width: 100%;
  text-align: center;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;        /* above menu-side */
  position: fixed;      /* fixed so always visible */
  top: 5px;
  right: 10px;
}

.hamburger svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.4s ease;
}

.hamburger.open svg {
  transform: rotate(90deg);
  width: 20px;
  height: 20px;
}

/* Side Menu */
.menu-side {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 275px;
  max-width: 80vw; /* Responsive max width */
  height: 100vh;
  background-color: #323232;
  padding: 60px 10px;
  z-index: 998;       /* below hamburger */
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  box-sizing: border-box;
}

.menu-side.active {
  display: flex;
  transform: translateX(0);
}

.menu-side .menu-item {
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

/* Banner */
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 100vw;
  height: 75vh;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.banner-controls {
  margin: 15px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.banner-controls button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-controls button.active {
  background: rgba(0, 0, 0, 0.8);
}

/* Services */
.service-holder {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item {
  flex: 1 1 calc(33.33% - 40px);
  max-width: calc(33.33% - 40px);
  border-radius: 10px;
  border: solid 2px #ff6800;
  min-height: 350px;
  padding: 20px;
  text-align: center;
  color: white;
}

.service-item span,
.service-item i {
  font-size: 20px;
  color: #ff6800;
}

.service-item span {
  font-weight: bold;
}

/* Media Queries */

/* Tablet and smaller screens */
@media (max-width: 896px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
	.testimonials
{
	width: 100%;
	min-height: 300px;
	background-image:url("../images/liz-back.png");
	background-size: 30%;
	background-position:right;
	background-position: bottom right;
	background-repeat: no-repeat;
	border: 2px solid #575757;
	border-radius: 15px;
	margin-top: 30px;
	padding: 30px;
}
	
	
  .slide {
    height: 80vh;
  }
  .service-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  /* Stack content columns vertically */
  .content-left{
    width: 100%;
    float: none;
	  padding:20px;
	  text-align: center;
  }
 .content-right {
    width: 100%;
    float: none;
	  padding:20px;
  }
}
/* Mobile phones */
@media (max-width: 430px) {
  .slide {
    height: 50vh;
  }
  .service-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
	
		.testimonials
{
	width: 100%;
	min-height: 300px;
	background-image:url("../images/liz-back.png");
	background-size: 50%;
	background-position:right;
	background-position: bottom right;
	background-repeat: no-repeat;
	border: 2px solid #575757;
	border-radius: 15px;
	margin-top: 30px;
	padding: 30px;
}
  .title-bar {
    font-size: 12px;
    padding: 8px;
  }
  .title-bar span {
    font-size: 16px;
  }
  .footer {
    font-size: 16px;
    padding: 20px;
  }
}
