/* General Styles */
.inner-page {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.inner-page h3 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inner-page h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #007bff;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.inner-page h3.animate {
  opacity: 1;
  transform: translateY(0);
}

.inner-page h3.animate::after {
  opacity: 1;
}

.inner-page p {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inner-page p.animate {
  opacity: 1;
  transform: translateY(0);
}

.inner-page img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9);
}

.inner-page img.animate {
  opacity: 1;
  transform: scale(1);
}

.inner-page img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Image Overlay Effect */
.inner-page .image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.inner-page .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.inner-page .image-wrapper:hover::before {
  opacity: 1;
}

/* Parallax Effect */
.inner-page .parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive Typography */
@media screen and (max-width: 991px) {
  .inner-page h3 {
    font-size: 32px;
  }

  .inner-page p {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .inner-page {
    padding: 80px 0;
  }

  .inner-page h3 {
    font-size: 28px;
  }

  .inner-page p {
    font-size: 16px;
  }

  .inner-page img {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  .inner-page h3 {
    font-size: 24px;
  }

  .inner-page p {
    font-size: 14px;
  }
}

/* Interactive Elements */
.inner-page .interactive-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inner-page .interactive-element.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-page .fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.inner-page .zoomIn {
  animation-name: zoomIn;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 50vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #ff9900;
}

#hero .btn-get-started:hover {
  background: #ffb84d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Story Section
--------------------------------------------------------------*/
.story {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.story .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.story .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.story .section-title p {
  font-size: 18px;
  color: #666;
}

.story .story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}

.story .story-text {
  flex: 1;
  padding-right: 50px;
}

.story .story-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ff9900;
  margin-bottom: 20px;
}

.story .story-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.story .story-image {
  flex: 1;
  text-align: center;
}

.story .story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.story .story-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .story .story-content {
    flex-direction: column;
  }

  .story .story-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .story .section-title h2 {
    font-size: 28px;
  }

  .story .section-title p {
    font-size: 16px;
  }

  .story .story-text h3 {
    font-size: 24px;
  }

  .story .story-text p {
    font-size: 16px;
  }
}