/* === GLOBAL STYLES === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

/* === HEADER === */
header {
  background-color: #1a0836;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 378px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a:hover {
  color: #00e676;
}

.cta {
  background-color: #43b883;
  color: white !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #43b883;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
}

/* === HERO SECTION === */

.hero {
  background-image: url('/wp-content/uploads/static-site/images/new-bnr-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  color: #ffcc66;
  font-size: 32px;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: -40px 0 30px;
  position: relative;
  left: -290px;
}

.hero-left {
  flex: 1 1 300px;
  text-align: left;
}

.hero-left h1 {
  color: #ccff33;
  font-size: 48px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  margin: 20;
}

.hero-right {
  flex: 1 0 200px;
  text-align: right;
}

.hero-right h2 {
  color: #bfff00;
  font-size: 28px;
  font-family: 'Shadows Into Light', cursive;
  margin-top: 20px;
  position: relative;
  top: -40px;
}

.hero-right p {
  font-size: 20px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  top: -40px;
}

.hero h1 {
  color: #ccff33;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  top: -70px;
}

.hero h2 {
  color: #bfff00;
  font-size: 28px;
  font-family: 'Shadows Into Light', cursive;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: -35px;
  transform: translateX(40px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: white;
  font-family: 'Shadows Into Light', cursive;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: -30px;
  transform: translateX(-365px);
}

.quote-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quote-form input,
.quote-form button {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.quote-form input {
  flex: 1;
  min-width: 200px;
}

.quote-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.quote-form button:hover {
  background-color: #e65c00;
}

/* === FEATURES SECTION === */
.timeline-features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #38c172;
  padding: 60px 60px;
  gap: 40;
  position: relative;
}

.timeline-block {
  width: 33.33%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}

.timeline-block:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: white;
  z-index: 1;
}

.icon-wrapper img {
  width: 80px;
  height: auto;
}

.icon-wrapper img {
  width: 80px;
  height: auto;
}

.text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  border-bottom: 1px dotted #333;
  padding-bottom: 4px;
}

.text p {
  font-size: 15px;
  color: #2c3e50;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Timeline Circles */
.timeline-circle {
  position: absolute;
  top: 50%;
  right: -25px; /* aligns over the divider */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  font-size: 20px;
  color: #f5a623;
  font-weight: bold;
}


.timeline-block {
  width: 33.33%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
}

.timeline-block .text {
  max-width: 600px;
}

.timeline-block img {
  width: 80px;
  height: auto;
}

.timeline-block .icon-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-wrapper {
  flex-shrink: 0;
}

.icon-wrapper img {
  width: 90px;
  height: auto;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin: 10px 0;
  border-bottom: 1px dotted #333;
  padding-bottom: 4px;
}
.icon-text img {
  width: 80px;
  margin-bottom: 10px;
}

.icon-text p {
  font-size: 15px;
  color: #2c3e50;
  font-style: italic;
}

.text h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  border-bottom: 1px dotted #333;
  padding-bottom: 4px;
}

.text p {
  font-size: 15px;
  color: #2c3e50;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.circle {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Place timeline-circle on the right of each block */
.timeline-circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border: 2px solid #38c172;
}

.timeline-block:not(:last-child) {
  border-right: 1px solid #fff;
}

.play-button {
  font-size: 20px;
  color: #ff6600;
  font-weight: bold;
}

.text-content {
  margin-left: 20px;
  max-width: 300px;
}

.text-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  border-bottom: 1px dotted #333;
  padding-bottom: 4px;
}

.text-content p {
  font-size: 15px;
  color: #2c3e50;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.timeline-wrapper {
  position: relative;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: white;
  z-index: 1;
}

.play-button {
  color: #f5a623;
  font-size: 24px;
  font-weight: bold;
}

/* Fix for middle and right blocks to have circles aligned */
/* Responsive Fix */
@media screen and (max-width: 991px) {
 .timeline-wrapper {
  position: relative;
  padding: 100px 20px 120px;
}
	
.timeline-features {
    flex-direction: column;
    align-items: center;
  }
	
.timeline-block {
    width: 100%;
    padding-bottom: 40px;
  }

.timeline-block {
  width: 33.33%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}

.timeline-block:not(:last-child)::after {
    display: none;
  }
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 0;
}
.icon-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
	
.text {
    margin-top: 15px;
  }
	
.timeline-circle {
    position: static;
    margin: 20px auto 0;
    transform: none;
  }
}