/* Stacked Section Styling */
.stacked-section {
  background-color: none;
  padding: 60px 20px;
}

/* Section Heading */
.stacked-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

/* Stacked Item Layout */
.stacked-item {
  display: flex;
  align-items: flex-start; /* Align content to the top */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

/* Image Styling */
.stacked-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}

/* Text Content */
.stacked-content {
  flex-grow: 1;
  border-left: 5px solid #007bff;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align text to the top */
}

/* Paragraph Styling */
.stacked-content p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

/* Bold Text */
.stacked-content p strong {
  color: #222;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stacked-heading {
    font-size: 2rem;
  }

  .stacked-item {
    flex-direction: column;
    text-align: left;
    padding: 15px;
  }

  .stacked-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto; /* Center image in mobile view */
  }

  .stacked-content {
    border-left: none;
    border-top: 5px solid #007bff;
    padding-top: 15px;
    padding-left: 0;
  }
}

/* Initial Hidden State */
.stacked-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible State */
.stacked-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 500px;
}

.about-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background-color: #0056b3;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-heading {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .about-image {
    margin-top: 20px;
  }
}

/*Styel Journey*/

.journey-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.journey-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.journey-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.stat-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .journey-heading {
    font-size: 2rem;
  }

  .journey-text {
    font-size: 1rem;
  }

  .stat-title {
    font-size: 1.3rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}

/*Style for form*/

        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        
        /* New Section Styling */
        .home-tool-section {
            background-color: #f7c621;
            text-align: center;
            padding: 50px 20px;
        }

        .home-tool-section img {
            width: 200px; /* Adjust as needed */
            height: auto;
            margin-bottom: 20px;
        }

        .home-tool-section h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
        }

/*Montion Contact Form*/

/* Add Motion Effect to Image */
.motion-image {
  transition: transform 0.5s ease;
}

/* Apply Animation on Hover or when Page Loads */
.motion-image:hover {
  transform: translateX(50px);
}

/****************************New Sections********let him speak****************************/

    .spk-section {
      display: flex;
      flex-wrap: wrap; /* Allows images to wrap on small screens */
      justify-content: center;
      gap: 20px; /* Space between columns */
      margin-top: 20px;
    }

    .spk-section .col {
      flex: 0 0 10%;
      text-align: center;
    }

.spk-section img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover; /* Ensures content fits nicely */
}

    /* Responsive adjustment */
    @media (max-width: 768px) {
      .spk-section .col {
        flex: 0 0 80%;
      }
    }

/****************************New Sections********let him speak****************************/

.new-section {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px; /* Default padding for smaller screens */
}

.new-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.new-section h1 {
    color: black;
    margin-bottom: 30px;
}

.new-section span {
    font-weight: 900;
}

.new-section .price-text {
    color: #000;
}

.new-section .message-text {
    color: #000;
}

/* For desktop devices */
@media (min-width: 1024px) {
    .new-section {
        padding: 0 200px; /* Add 200px padding for larger screens */
    }
}

/*****************Three Div************************************/

/*carrot-eater*/

.carrot-container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding: 20px 0;
        }
        .swiper {
            width: 100%;
        }
        .carrot-slide {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            overflow: hidden;
            transition: background 0.3s, color 0.3s;
        }
        .carrot-slide:hover {
            background: #f4b400;
            color: #000;
        }
        .carrot-header {
            background: #f4b400;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .carrot-header img {
            width: 150px;
            height: 115px;
            margin-right: 10px;
        }
        .carrot-content {
            padding: 20px;
        }
        .carrot-title {
            font-size: 20px;
            font-weight: bold;
        }
        .carrot-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 15px;
            background: #000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        .carrot-btn:hover {
            background: #fff;
            color: #000;
        }


        

/*****Carrot Eater*******/

/*carrot-eater*/

.carrot-container {
            width: 80%;
            margin: auto;
            overflow: hidden;
            padding: 20px 0;
        }
        .swiper {
            width: 100%;
        }
        .carrot-slide {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: left;
            overflow: hidden;
            transition: background 0.3s, color 0.3s;
        }
        .carrot-slide:hover {
            background: #f4b400;
            color: #000;
        }
        .carrot-header {
            background: #f4b400;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .carrot-header img {
            width: 150px;
            height: 115px;
            margin-right: 10px;
        }
        .carrot-content {
            padding: 20px;
        }
        .carrot-title {
            font-size: 20px;
            font-weight: bold;
        }
        .carrot-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 15px;
            background: #000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        .carrot-btn:hover {
            background: #fff;
            color: #000;
        }


  .py-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }