.hero-content h1{
    font-size: 5rem;
    height: 5.5rem;
}
.section-title{
    line-height: 5rem;
}
.hero-section{
    padding: 20px 0;
}
.hero-content .hero-subtext{
    margin: 40px 0;
}
.hero-content .hero-subtext p{
    display: inline;
    font-size: 1.25rem;
    font-weight: 500;
}

.hero-section .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-image img{
    width: 600px;
    max-width: 600px;
}
.our-section{
    display: flex;
    flex-direction: column;
}
.our-section .section-content{
    display: flex;
    background-color: var(--primary);
    color: var(--text-light);
}



.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 80px;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.slide-content {
  flex: 1;
}

.slide-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    text-align: center;
  }
}

.about-hero-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}