/* === GLOBAL BUTTON STYLES === */
/* Button base class */
.btn {
  display: inline-block;
}

/* Primary Button */
.btn-primary {
  background-color: #67913F;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 24px;
}


/* Hover Effect */
.btn-primary:hover {
  background-color: #333399;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1.05); /* pulse instead of translate */
  color: white !important;
  text-decoration:none !important;
}

/* Active Effect */
.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #fff;
  color: #333399;
  border: 2px solid #333399;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
  color: #333399;
  border-color: #333399;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

/* === RESPONSIVE BUTTON SIZES (MOBILE) === */
@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.cta-secondary {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.cta-secondary h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333399; /* Matches your theme color */
}

.cta-secondary p {
  font-size: 1em;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: center;
  color: #444;
}

/*TODO: Figure out a better way to do this one*/
    .contactcase-button-container {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom:10px;
}

/* Middle Strip Call To Action Section */
.middle-strip-section {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}

.middle-strip-background {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 125px;
  background-color: #c5c2e1;
  z-index: 1;
}

.middle-strip-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.middle-strip-thumbnails {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.middle-strip-thumbnails img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.middle-strip-thumbnails img:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.middle-strip-text {
  text-align: center;
  font-size: 1rem;
  max-width: 900px;
  padding: 0 10px;
}

.middle-strip-heading {
  font-size: 2em;
  color: #000;
  margin-bottom: 10px;
}

/* Remove WordPress auto image shadows */
.entry-content a img,
.comment-content a img,
.widget a img {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .middle-strip-thumbnails {
    flex-direction: column;
    align-items: center;
  }

  .middle-strip-thumbnails img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .middle-strip-text {
    font-size: 0.9rem;
  }

  .middle-strip-heading {
    font-size: 1.5em;
  }
}


/* Silicon Valley Method Feature Section */
.sv-method-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.sv-method-heading {
  font-size: 2rem;
  text-align: left;
  font-weight: bold;
  color: #333399;
  border-bottom: 3px solid #c5c2e1;
  display: inline-block;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sv-method-list {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.sv-method-list li {
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sv-method-list li::before {
  content: '✔';
  font-size: 1.2rem;
  color: #333399;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(5px);
}

.sv-method-list strong {
  color: #333399;
  font-weight: bold;
}

.sv-method-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 150px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
  margin: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  color: #333399;
  text-decoration:none !important;
}

.feature-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.feature-box p {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.sv-method-approach {
  background-color: #c5c2e1;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.sv-method-approach strong {
  font-size: 1.6rem;
  color: #333399;
}

.cta-container {
  text-align: center;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    max-width: 120px;
    padding: 20px;
  }

  .feature-box img {
    width: 50px;
    height: 50px;
  }

  .feature-box p {
    font-size: 0.75rem;
  }

  .sv-method-heading {
    font-size: 1.6rem;
  }

  .sv-method-section {
    padding: 40px 10px;
  }

  .sv-method-approach {
    padding: 30px;
  }
}
body::before {
  content: "custom.css loaded";
  display: none;
}



