/* Hero Section */
.hero {
  background-image: url("/static/images/cape-town-background.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.9;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  text-align: center;
  color: #fff;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h4,
.hero-content h5 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 10px;
  animation: fadeUp 1s ease-out forwards;
}

.hero-text-content h2 {
  text-align: center;
}

.hero-content h5 {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .hero {
    height: 40vh;
    padding: 20px;
    background-attachment: scroll;
  }

  .hero-content h4,
  .hero-content h5 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .focus-features {
    gap: 40px;
  }

  .custom-section-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }

  .custom-image img {
    max-width: 100%;
  }

  h1,
  .reports-section h3,
  .subheading,
  .reports-section h1,
  .reports-section span {
    font-size: 40px;
  }
}

/* Focus Slideshow */
.focus-slideshow {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}

.focus-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.focus-slideshow .slide.active {
  opacity: 1;
  position: relative;
}

.focus-slideshow .slide img {
  width: 100%;
  height: auto;
  display: block;
}

.focus-slideshow-text {
  flex: 1 1 auto;
  min-width: 200px;
  position: relative;
}

.focus-slideshow-text .slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.focus-slideshow-text .slide-text.active {
  opacity: 1;
  position: relative;
}

/* Focus on Your Business */
.focus-business-section {
  background-color: #f5f5f5;
  text-align: center;
}

.focus-business-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  color: #464646;
}

.focus-business-section h2 span {
  color: #347322;
  font-weight: 800;
}

.focus-business-section .subtitle {
  color: #444;
  margin-bottom: 50px;
  font-size: 1rem;
}

.focus-business-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.focus-image img {
  max-width: 400px;
  height: auto;
}

.focus-text {
  flex: 1 1 auto;
  min-width: 200px;
}

.focus-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  padding-top: 40px;
}

.focus-feature {
  text-align: center;
  max-width: 200px;
}

.focus-icon {
  width: 170px;
  height: 170px;
  border: 5px solid #347322;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-icon img {
  width: 100px;
  height: auto;
}

.focus-feature p {
  font-size: 1rem;
  color: #222;
}


/* Body */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #000;
}

/* General Headings */
h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #464646;
  justify-content: center;
  padding-bottom: 70px;
  text-align: center;
}

/* Reports Section - Centered */



.reports-section h3 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #347322;
  margin-bottom: -20px;
}

.subheading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  justify-content: center;
  color: #347322;
  padding-bottom: 70px;
  text-align: center;
}

.reports-section {
  justify-content: center;
}

/* Image + Text Section */
.image-text-section {
  padding: 0px 20px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  max-width: 1400px;
  border: 5px solid #347322;
  border-radius: 5px;
  margin: 0 auto;
}

.image-text-container {
  max-width: 1400px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.text-column {
  flex: 1 1 50%;
}

.text-column h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  color: #464646;
  text-align: left;
}

.text-column p {
  margin-top: 30px;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: #1e1e1e;
  max-width: 700px;
  font-weight: 200;
  text-align: left;
}

.text-column span {
  font-weight: 1000;
}

.image-column {
  flex: 1 1 45%;
  text-align: center;
}

.image-column img {
  max-width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .image-text-container {
    flex-direction: column;
    text-align: center;
  }

  .text-column,
  .image-column {
    flex: 1 1 100%;
    margin: auto 0;
  }

  .text-column {
    margin-bottom: 20px;
  }
}

.integrated-solutions-section {
  background: #eaf7f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.integrated-container {
  background: linear-gradient(to right, #7eba0a, #347322);
  border-radius: 80px 0 0 80px;
  padding: 40px 60px;
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.integrated-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #464646;
  margin: 0;
  line-height: 1.2;
}

.integrated-right {
  flex: 1;
  min-width: 300px;
}

.integrated-right p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.6;
}

.integrated-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}

.black-btn {
  background-color: #464646;
  color: #fff;
}

.black-btn:hover {
  background-color: #222;
}

.outline-btn {
  border: 1px solid #464646;
  color: #464646;
}

.outline-btn:hover {
  background-color: #464646;
  color: #fff;
}

@media (max-width: 768px) {
  .integrated-container {
    flex-direction: column;
    border-radius: 40px;
    text-align: center;
    padding: 30px 20px;
  }

  .integrated-buttons {
    justify-content: center;
  }

  .integrated-left h2 {
    font-size: 2rem;
  }
}