/* Hero Section */
.hero-section {
  background: linear-gradient(135deg,
      var(--light-color) 0%,
      var(--accent-color) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      var(--secondary-color) 0%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary-hero {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-hero:hover {
  background-color: #6d4470;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(139, 90, 142, 0.4);
  color: white;
}

.btn-secondary-hero {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary-hero:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(139, 90, 142, 0.2);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.badge-text h6 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.badge-text p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Hero Image */
.hero-image {
  position: relative;
  height: 1200px;
  width: 50%;
  margin: -100px auto -200px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 20px 60px rgba(139, 90, 142, 0.2);
  position: relative;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 20px;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Responsive Hero Image */
@media (min-width: 769px) and (max-width: 991px) {
  .hero-image {
    height: 1000px;
    width: 60%;
    margin: -100px auto -300px auto;
    padding: 10px 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-image {
    height: 1100px;
    width: 55%;
    margin: -150px auto -250px auto;
    padding: 10px 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 800px;
    width: 90%;
    margin: 0px auto -200px auto;
    padding: 10px 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 600px;
    width: 95%;
    margin: -50px 0px -220px 0px;
    padding: 10px 0;
  }

  .hero-image img {
    height: 100%;
    border-radius: 15px;
  }
}

@media (max-width: 511px) {
  .hero-image {
    height: 650px;
    width: 95%;
    margin: -60px 0px -150px 10px;
    padding: 10px 0;
  }

  .hero-image img {
    height: 100%;
    border-radius: 15px;
  }
}

/* Quick Links Section */
.quick-links {
  background-color: white;
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.quick-link-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: var(--light-color);
}

.quick-link-item:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 90, 142, 0.15);
}

.quick-link-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.quick-link-item h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quick-link-item p {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Enhanced About Section Styles */
.about-section {
  background-color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      var(--secondary-color) 0%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(139, 90, 142, 0.3);
  transition: all 0.5s ease;
  border: 8px solid white;
}

.about-image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(139, 90, 142, 0.4);
}

.about-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  text-align: center;
}

.about-image-container:hover .about-image-overlay {
  transform: translateY(0);
}

.about-image-overlay h5 {
  margin: 0;
  font-weight: 600;
}

.about-image-overlay p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-text {
  padding-left: 1rem;
}

.about-text h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 1.05rem;
}

.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.highlight-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-item:hover::before {
  transform: scaleX(1);
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-label {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Section Styles */
.services-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 90, 142, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* How It Works Section Styles */
.how-it-works {
  background-color: white;
  padding: 5rem 0;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-item h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--text-color);
  font-size: 0.95rem;
}

.step-arrow {
  position: absolute;
  top: 30px;
  right: -25px;
  color: var(--primary-color);
  font-size: 1.5rem;
  display: none;
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
  }
}

/* Responsive styles for How It Works section */
@media (max-width: 767px) {
  .how-it-works {
    padding: 3rem 0;
  }

  .steps-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .step-item {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .step-item h5 {
    font-size: 1.1rem;
  }

  .step-item p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .steps-container {
    gap: 1rem;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
}

/* Blog Section Styles */
.blog-section {
  background-color: white;
  padding: 5rem 0;
}

.blog-card {
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 90, 142, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: var(--text-color);
  font-size: 0.95rem;
  flex-grow: 1;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 0.8rem;
}

/* Contact/Consultation Section Styles */
.contact-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6d4470 100%);
  padding: 5rem 0;
  color: white;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.form-group label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 142, 0.25);
}

.btn-submit {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */

/* Responsive adjustments for about section */
@media (max-width: 991px) {
  .about-text {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about-highlights {
    justify-content: center;
  }
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

/* Testimonial Section Styles */
.wpo-testimonial-section-s2 {
  background-color: var(--light-color) !important;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wpo-testimonial-wrap {
  position: relative;
  z-index: 1;
}

.wpo-testimonial-items {
  position: relative;
}

.wpo-testimonial-active {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wpo-testimonial-item {
  background-color: white !important;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 90, 142, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.wpo-testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 90, 142, 0.2);
}

.wpo-testimonial-text i {
  color: var(--primary-color) !important;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.wpo-testimonial-text p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color) !important;
}

.wpo-testimonial-text-btm h3 {
  color: var(--dark-color) !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wpo-testimonial-text-btm span {
  color: var(--text-color) !important;
  font-size: 0.9rem;
}

.image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  z-index: 0;
  opacity: 0.1;
}

.image.s2 {
  right: 0;
  left: auto;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsive for testimonial */
@media (max-width: 768px) {
  .wpo-testimonial-section-s2 {
    padding: 3rem 0;
  }

  .wpo-testimonial-item {
    padding: 1.5rem;
  }

  .image {
    width: 150px;
    height: 150px;
  }

  .image.s2 {
    width: 150px;
    height: 150px;
  }
}

/* Overall background */
.testimonial-section {
  background: linear-gradient(180deg, #f9f6f2 0%, #fff 100%);
  padding: 60px 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

/* Title section */
.section-subtitle {
  color: #6d6153;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Testimonial card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  max-width: 700px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(6px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image */
.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Quote */
.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Name & date */
.testimonial-name {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2e2b27;
  margin-bottom: 5px;
}

.testimonial-date {
  display: block;
  color: #8d7f6c;
  font-size: 0.95rem;
}

/* Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: #d2b79f;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-section:hover .carousel-control-prev,
.testimonial-section:hover .carousel-control-next {
  opacity: 1;
}

/* Always visible on mobile */
@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 1 !important;
  }
}

/* Arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%;
  filter: invert(1);
}

/* Position */
.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Style for the text section */
.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
  .text .lead {
    text-align: center;
  }
}