/* ================================
   Base Setup
=================================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================================
   Hero Banner Section
=================================== */
.background-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/performance3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 60vh;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: none;
}

.hero-overlay {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  z-index: 10;
}

.breadcrumb {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  opacity: 0.8;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0;
}

section.hero-banner + .about-us {
  margin-top: 20px;
}

.animate-left,
.animate-right {
  opacity: 0;
}

.animate-now.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-now.animate-right {
  animation: slideInRight 1s ease-out forwards;
}


/* ================================
   Performance Consulting Section
=================================== */
.performance-consulting-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 100px;
  gap: 40px;
}

.left-content {
  width: 70%;
}

.right-content {
  width: 30%;
}

.main-image,
.secondary-image {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* ================================
   Typography
=================================== */
.left-content h2 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

.left-content h3, .left-content h4, .left-content h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #d62828;
}

h6 {
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 20px;
}

.left-content p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.custom-paragraph {
  padding-left: 20px;
}

/* ================================
   Services Section
=================================== */
.performance-services {
  list-style-type: none;
  padding: 0;
}

.performance-services li {
  background: #f5f5f5;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

.performance-services-title {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}

.main-box {
  background-color: rgb(246, 241, 241);
  padding: 40px;
  width: 100%;
  max-width: 1000px;
}

.performance-service-box {
  background-color: rgb(246, 241, 241);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgb(246, 241, 241);
}

.icon {
  font-size: 30px;
  text-align: left;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 10px 0;
  cursor: pointer;
}

.toggle {
  color: red;
  font-weight: bold;
  margin-right: 5px;
  cursor: pointer;
  font-size: 18px;
}

.desc {
  display: none;
  font-size: 14px;
  color: #555;
}

.details {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}

.cta {
  display: block;
  text-align: left;
  font-weight: bold;
  color: red;
  text-decoration: none;
  margin-top: 10px;
}

/* ================================
   Outcome & Benefits
=================================== */
.what-happens,
.outcome-title,
.benefits {
  font-weight: bold;
  margin-bottom: 0;
}

.outcome-list {
  margin-top: 5px;
}

.highlight {
  font-weight: bold;
  color: blue;
}

/* ================================
   Sidebar: Services Box
=================================== */
.performance-services-box {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.service-item {
  padding: 15px;
  border: 1px solid rgb(195, 199, 208);
  color: rgb(53, 59, 70);
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: center;
}

.service-item:hover,
.service-item.active {
  background: red;
  color: white;
  border: none;
}

.arrow {
  font-size: 14px;
}

.quote-contact {
  margin-top: 20px;
}

/* ================================
   Quote Section
=================================== */
.quote-box,
.contact-box {
  padding: 20px;
  border-radius: 5px;
  margin: 0 20px 50px;
}

.quote-box {
  border: 1px solid rgb(195, 199, 208);
}

.quote-title {
  padding: 10px 0;
  font-weight: bold;
  font-size: 24px;
}

.quote-box input,
.quote-box select,
.quote-box textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid rgb(195, 199, 208);
  border-radius: 5px;
  font-size: 16px;
}

.quote-box textarea {
  height: 100px;
}

.quote-box button {
  width: 100%;
  padding: 20px;
  margin: 20px 0;
  background-color: rgb(208, 43, 47);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.5s;
  font-weight: bold;
  text-align: center;
}

.quote-box button:hover {
  background-color: rgb(53, 59, 70);
}

/* ================================
   Contact Section
=================================== */
.contact-box {
  background-color: rgb(53, 59, 70);
  color: white;
}

.contact-title {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  margin-top: 5px;
  font-weight: bold;
  text-align: center;
  width: 50%;
}

.get-in-touch-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
}

.get-in-touch-title-2 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-box-address,
.contact-box-tel,
.contact-box-time {
  padding-left: 60px;
  font-size: 1rem;
}

.contact-box .icon {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.biz,
.contact-us-tel,
.working-time {
  font-size: 18px;
  font-weight: bold;
}

.contact-box button {
  width: 100%;
  padding: 20px;
  background-color: white;
  color: rgb(53, 59, 70);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
}

/* ================================
   Call to Action
=================================== */
.performance-cta {
  padding: 60px 20px;
  text-align: center;
}

.performance-cta h2 {
  font-size: 32px;
  padding-bottom: 20px;
}

.performance-cta p {
  font-size: 20px;
  padding-bottom: 40px;
}

.cta-button {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  background-color: #d62828;
  color: white;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #b71c1c;
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #c40000;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  z-index: 1000;
}

/* ================================
   Media Queries - Responsive Design
=================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-right {
  animation: slideInRight 1s ease-out forwards;
}



@media (max-width: 1024px) {
  .performance-consulting-section {
    padding: 40px 60px;
    flex-direction: column;
  }

  .left-content,
  .right-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 200px;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .performance-consulting-section {
    padding: 30px 20px;
  }

  .quote-box,
  .contact-box {
    margin: 0 10px 40px;
  }

  .performance-cta h2 {
    font-size: 24px;
  }

  .performance-cta p {
    font-size: 18px;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}