body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px;
}
header, footer {
  background-color: #49e406f5;
  color: white;
  padding: 1rem;
  text-align: center;
}

.hero {
  padding: 2rem;
  text-align: center;
}
.btn {
  background: green;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
}

/* Two-column layout for theme section */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.theme-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.theme-image {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
}


.theme-images-vertical {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-image: url('assets/img/hero/hero-5/clouds_back2.jpg'); /* Replace with your actual image */
  background-repeat: no-repeat;
  background-size: 70% auto; /* Shrinks width to 70%, auto height */
  background-position: center center;
  padding: 20px;
  border-radius: 12px;
}



.theme-image img {
  width: 100%;
  max-width: 400px;
  height: 70%;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
h1 {
  text-align: center;
}
.features-section {
  padding: 60px 0;
}

.single-feature {
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.single-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.single-feature .icon {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.single-feature .icon i {
  font-size: 36px;
  color: #007bff;
  z-index: 2;
  position: relative;
}

.single-feature .icon svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.single-feature .content {
  padding-top: 10px;
}

.single-feature h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.single-feature p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.single-feature .btn {
  font-size: 14px;
}

.features-section {
  padding: 60px 0;
}

.single-feature {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.single-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.single-feature .icon {
  position: relative;
  margin-bottom: 20px;
}

.single-feature .icon i {
  font-size: 32px;
  color: #007bff;
  position: relative;
  z-index: 2;
}

.single-feature .icon svg {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.single-feature h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-feature p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.btn-brown {
  background-color: #8B4513; /* SaddleBrown */
  color: white;
  border: none;
}

.btn-brown:hover {
  background-color: #5c2e0c; /* Darker brown on hover */
  color: white;
}
