.listing-hero {
  height: 50vh;
}
/* Company Listings Section */
.company-listings-section {
  background: #fff;
  padding: 80px 0;
}
/* =================Filter Sections============================= */

/* Main Layout */
.listing-section {
  padding: 60px 0;
  background: #ffffff;
}

.listing-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

/* Sidebar Styles */
.sidebar {
  background: #f2f2f2cc;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px 20px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-header svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

.sidebar-header h3 {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-left: 10px;
}

.sidebar hr {
  border: none;
  border-top: 1px solid #d0d0d0;
  margin: 20px 0;
}

.filter-section {
  margin-bottom: 25px;
}

.filter-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

/* Search Box */
.search-box {
  position: relative;
  margin-top: 15px;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border-radius: 25px;
  border: 1px solid #342c6c;
  background: #342c6c;
  color: #ffffff;
  font-size: 14px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.search-box svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.radio-label input[type="radio"]:checked {
  border-color: #483385;
  background: #483385;
}

.radio-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-label span {
  font-size: 14px;
  color: #000;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
  border-color: #483385;
  background: #483385;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  top: -2px;
  left: 2px;
}

.checkbox-label span {
  font-size: 14px;
  color: #000;
}

.show-all-btn {
  background: none;
  border: none;
  color: #342c6c;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
}

/* Filter Buttons */
.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn-apply {
  background: #342c6c;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-apply:hover {
  background: #483385;
}

.btn-clear {
  background: #e0e0e0;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-clear:hover {
  background: #d0d0d0;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
}

/* Company Card */
.company-card {
  background: #f2f2f2cc;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-card-inner {
  display: flex;
  gap: 30px;
}

.company-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}

.company-logo {
  width: 150px;
  height: 150px;
  border: 4px dashed #d2d2d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 20px;
  margin-bottom: 10px;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-rating-text {
  font-size: 12px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.company-details {
  flex: 1;
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.company-name {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.compare-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-checkbox {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.compare-checkbox:checked {
  background: #483385;
  border-color: #483385;
}

.compare-checkbox:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  top: -2px;
  left: 3px;
}

.compare-label {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.company-description {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.company-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn-pricing {
  background: transparent;
  color: #342c6c;
  border: 2px solid #342c6c;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-pricing:hover {
  background: #342c6c;
  color: #ffffff;
}

.btn-demo {
  background: #ffa700;
  color: #342c6c;
  border: 2px solid #ffa700;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-demo:hover {
  background: #342c6c;
  color: #ffffff;
  border-color: #342c6c;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-inner {
  background: #f6f5ff;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination button {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.pagination button:hover:not(:disabled) {
  background: #ffffff;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination button.active {
  background: #342c6c;
  color: #ffffff;
}

.pagination-arrow {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
  }

  .company-card-inner {
    flex-direction: column;
  }

  .company-logo-section {
    flex-direction: row;
    gap: 15px;
    min-width: 100%;
  }

  .company-actions {
    flex-wrap: wrap;
  }
}


#data-inner>div[class^="lazyWrap"] {
    background: #f2f2f2cc;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 30px 50px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.jp_job_post_side_img:not(.home-rating-wrap) {
    width: 150px;
    height: 150px;
    border: 4px dashed #d2d2d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 10px;
}

.jp_job_post_side_img.home-rating-wrap {}

.jp_job_post_right_cont ul,
.jp_job_post_right_btn_wrapper ul{
    list-style-type: none;
}

a.hidden {
    display: none;
}

.jp_job_post_right_btn_wrapper a:not(.hidden) div {
    background: #ffa700;
    color: #342c6c;
    border: 2px solid #ffa700;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}
.jp_job_post_right_btn_wrapper li:first-of-type>a div{
    background: transparent;
    color: #342c6c;
    border: 2px solid #342c6c;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    margin-right: 10px;
}
.jp_job_post_right_btn_wrapper li {
    display: inline-block;
}
.jp_job_post_right_btn_wrapper ul{
    text-align: right;
}

.jp_job_post_right_cont .handyman_sec1_wrapper p {
    display: flex;
    gap: 0 7px;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}
.jp_job_post_right_cont .handyman_sec1_wrapper p input{
        width: 20px;
    height: 20px;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.jp_job_post_right_cont .handyman_sec1_wrapper p input:checked{
  background: #ffa700;
  border-color: #ffa700;
}
.jp_job_post_right_cont .handyman_sec1_wrapper p input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  left: 8px;
  width: 5px;
  height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.jp_job_post_right_cont>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.jp_job_post_right_cont>div>p {
    margin-bottom: 0;
}

.jp_job_post_right_cont>div>p a {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
    display: inline-block;
}

.jp_job_post_right_cont>div>ul {
    margin-bottom: 0;
}

.jp_job_post_keyword_wrapper ul {
    list-style: none;
}

.jp_job_post_keyword_wrapper ul li {
    display: inline-block;
    margin-right: 15px;
}
.jp_job_post_side_img:not(.home-rating-wrap) img {
    width: 100%;
    height: auto;
}

.jp_job_post_keyword_wrapper:hover,
.jp_job_post_right_btn_wrapper li:first-of-type>a div:hover{
    background: #342c6c;
}
.jp_job_post_keyword_wrapper:hover ul li,
.jp_job_post_keyword_wrapper:hover ul li a,
.jp_job_post_right_btn_wrapper li:first-of-type>a div:hover{
    color: #fff;
}


.jp_job_post_keyword_wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ededed;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 13px 0px 5px 30px;
    transition: 0.4s ease;
}


.jp_job_post_side_img:not(.home-rating-wrap) img {
    width: 100%;
    height: auto;
}

.jp_job_post_keyword_wrapper:hover,
.jp_job_post_right_btn_wrapper li:first-of-type>a div:hover{
    background: #342c6c;
}
.jp_job_post_keyword_wrapper:hover ul li,
.jp_job_post_keyword_wrapper:hover ul li a,
.jp_job_post_right_btn_wrapper li:first-of-type>a div:hover{
    color: #fff;
}


div#pager {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

ul.pg-pager {
    background: #f6f5ff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    list-style-type: none;
}

li.pg-item {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

li.pg-item.active,
li.pg-item:hover{
    background: #342c6c;
    color: #ffffff;
}


.pg-pager li button,
.pg-pager li span{
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.pg-pager li span:not([disabled]):hover,
.pg-pager li button.active,
.pg-pager li button:not([disabled]):hover{
    background: #342c6c;
    color: #ffffff;
}


#compdownload input {
    background: #ffa700;
    color: #342c6c;
    border: 2px solid #ffa700;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    
}

/* ===============================Third section================================== */

/* Features Section */
.features-container {
  max-width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #4a3d7a 0%, #3d3570 50%, #342c6c 100%);
  border-radius: 24px;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  padding: 60px 80px !important;
  display: flex;
  align-items: center;
  gap: 100px;
}

/* Decorative Background Lines */
.looper-bg {
  position: absolute;
  left: -100px;
  top: 0;
  bottom: 0;
  /* width: 600px; */
  opacity: 0.4;
  pointer-events: none;
}

.looper-bg svg {
  width: 100%;
  height: 100%;
}

/* Left Side - Heading */
.features-left {
  flex: 0 0 400px;
  position: relative;
  z-index: 2;
}

.features-left h1 {
  font-size: 72px;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* Right Side - Cards */
.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 48px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Active State */
.feature-card.active {
  background: white;
  border-color: white;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card.active .feature-icon {
  background: #342c6c;
}

.feature-card.active .feature-icon svg {
  fill: white;
}

.feature-card.active .feature-content h3 {
  color: #1a1a1a;
}

.feature-card.active .feature-content p {
  color: #4a4a4a;
}

/* Feature Icon */
.feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  fill: rgba(255, 255, 255, 0.7);
  transition: all 0.6s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card.active .feature-icon {
  transform: scale(1.05);
}

/* Feature Content */
.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 32px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  transition: all 0.6s ease;
}

.feature-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  transition: all 0.6s ease;
}

.feature-card:hover .feature-content h3 {
  color: white;
  transform: translateX(4px);
}

.feature-card:hover .feature-content p {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-container {
    flex-direction: column;
    gap: 60px;
    padding: 60px 40px;
  }

  .features-left {
    flex: none;
    text-align: center;
  }

  .features-left h1 {
    font-size: 56px;
  }

  .features-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-container {
    padding: 40px 24px;
    min-height: auto;
  }

  .features-left h1 {
    font-size: 42px;
  }

  .features-right {
    gap: 30px;
  }

  .feature-card {
    padding: 28px 24px;
    gap: 20px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-content h3 {
    font-size: 24px;
  }

  .feature-content p {
    font-size: 16px;
  }

  .looper-bg {
    display: none;
  }
}

.feature-card.active:hover .feature-content p {
  color: #4a4a4a;
}

.feature-card.active:hover .feature-content h3 {
  color: #1a1a1a;
}

.feature-card.active .feature-icon svg,
.feature-card.active .feature-icon svg * {
  fill: #ffffff;
  stroke: #ffffff;
}

/* ============specialties============================= */
.specialties-section {
  display: flex;
  /* max-width: 1600px; */
  margin: 0 auto;
  align-items: center;
  padding: 80px 60px;
  justify-content: center;
  flex-direction: column;
}

.section-title {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 80px;
  line-height: 1.1;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - Specialties Grid */
.specialties-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 120px;
}

.specialty-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.specialty-item:hover {
  transform: translateX(8px);
}

.specialty-number {
  font-size: 110px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.specialty-item:hover .specialty-number {
  color: #3d3570;
}

.specialty-text {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
}

/* Get Advice Button */
.advice-button {
  display: inline-block;
  background: #fbbf24;
  color: #1a1a1a;
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  border: none;
  cursor: pointer;
}

.advice-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
  background: #f59e0b;
}

.advice-button:active {
  transform: translateY(-2px);
}

/* Right Side - Image */
.specialties-right {
  position: relative;
}

.image-container {
  position: relative;
  /* border-radius: 32px; */
  /* overflow: hidden; */
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  /* transition: transform 0.5s ease; */
}

/* .image-container:hover {
                transform: scale(1.02);
            } */

.specialty-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Yellow Icon */
.floating-icon {
  position: absolute;
  bottom: 0;
  right: 2px;
  width: 100px;
  height: 100px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  z-index: 10;
}

/* .floating-icon:hover {
                transform: scale(1.15) rotate(15deg);
                box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
            } */

.floating-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
}

/* .floating-icon:hover svg {
                transform: translate(-4px, -4px);
            } */

/* Responsive Design */
@media (max-width: 1200px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-title {
    font-size: 56px;
  }

  .specialty-number {
    font-size: 80px;
  }

  .floating-icon {
    width: 80px;
    height: 80px;
    bottom: -20px;
    right: 30px;
  }

  .floating-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .specialties-section {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specialty-number {
    font-size: 64px;
  }

  .specialty-text {
    font-size: 16px;
  }

  .advice-button {
    width: 100%;
    text-align: center;
    padding: 18px 40px;
    font-size: 18px;
  }

  .floating-icon {
    width: 70px;
    height: 70px;
    bottom: -15px;
    right: 20px;
  }

  .floating-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* popular brands */
.alternatives-section {
  padding: 40px 20px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 70px;
  font-weight: 400;
  color: #000;
  margin-bottom: 60px;
}

.carousel-container {
  background: #f5f5f5;
  padding: 80px 40px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track.no-transition {
  transition: none;
}

.alternative-card {
  flex: 0 0 380px;
  border: 1px solid #d4d4d4;
  border-radius: 20px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.logo-container {
  background: white;
  border-radius: 16px;
  width: 280px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.alternative-card:hover .logo-container {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.logo-container img {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
}

.card-title {
  font-size: 25px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
}

.star-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.star {
  color: #fbbf24;
  font-size: 24px;
}

.star.half {
  position: relative;
  color: #e5e7eb;
}

.star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #fbbf24;
  width: 50%;
  overflow: hidden;
}

/* Button Container */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.all-alternatives-btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.all-alternatives-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 50px;
  }

  .alternative-card {
    flex: 0 0 380px;
  }

  .carousel-container {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .alternative-card {
    flex: 0 0 320px;
    min-height: 280px;
    padding: 24px 20px;
  }

  .logo-container {
    width: 240px;
    height: 130px;
  }

  .card-title {
    font-size: 20px;
  }

  .carousel-container {
    padding: 40px 20px;
  }

  .all-alternatives-btn {
    padding: 16px 35px;
    font-size: 18px;
  }
}
/* ================form section================ */
/* ===============================form section ======================*/
.ai-powered-section {
  height: auto;
}
/* Main Section */
#need_help_section {
  height: auto !important;
  position: relative;
  overflow: hidden;
}

/* Animated Background Boxes */
.box-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  list-style: none;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.box-area li {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.box-area li:nth-child(1) {
  left: 15%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.box-area li:nth-child(2) {
  left: 5%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.box-area li:nth-child(3) {
  left: 70%;
  width: 100px;
  height: 100px;
  animation-delay: 4s;
}

.box-area li:nth-child(4) {
  left: 42%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.box-area li:nth-child(5) {
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.box-area li:nth-child(6) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 3s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: auto;
}

/* Left Content */
.left-content {
  flex: 1;
  color: white;
}

.text-mustard-dark {
  color: #fbbf24;
}

.main-heading {
  font-size: 70px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: capitalize;
}

.sub-heading {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

/* Right Content - Form */
.right-content {
  flex: 0 0 500px;
  display: flex;
  justify-content: flex-end;
}

.email-img {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.form-background {
  width: 100%;
  height: auto;
  display: block;
}

/* Yellow Arrow Icon */
.icon {
  position: absolute;
  top: -12px;
  right: 0;
  width: 70px;
  height: 70px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
  z-index: 20;
}

.icon:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
}

.icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.5s ease-in-out;
}

.icon:hover img {
  transform: translate(-8px, 8px);
}

/* Form Overlay */
.form-overlay {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  padding: 0 16px;
  z-index: 10;
}

.heading-input {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 16px;
  margin-bottom: 20px;
  text-align: start;
}

.ehr-form-container {
  background-image: url(images/home-images/email-form.svg) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .left-content {
    text-align: center;
  }

  .main-heading {
    font-size: 50px;
  }

  .sub-heading {
    font-size: 26px;
  }

  .right-content {
    flex: none;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  #need_help_section {
    /* padding: 60px 20px; */
    min-height: auto;
  }

  .main-heading {
    font-size: 42px;
  }

  .sub-heading {
    font-size: 22px;
  }

  .sidebar-icons {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }

  .sub-heading {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
  }

  .email-img {
    width: 450px;
  }
}

@media (max-width: 576px) {
  .email-img {
    width: 400px;
  }

  .icon {
    width: 60px;
    height: 60px;
    top: -10px;
  }

  .icon img {
    width: 25px;
    height: 25px;
  }

  .form-overlay {
    top: 15px;
    padding: 0 12px;
  }

  .heading-input {
    font-size: 18px;
    margin-left: 12px;
  }

  .form-columns-2 {
    grid-template-columns: 1fr;
  }

  #hubspotForm {
    padding: 0 12px;
  }
}

@media (max-width: 400px) {
  .email-img {
    width: 100%;
  }
}

form {
  margin-bottom: 40px;
}

.hs-submit {
  width: 100%;
  /* margin-right: 36px; */
  margin-top: 0;
}

form > div:not(.hs-submit) {
  width: 50%;
  margin-bottom: 40px;
}

input.hs-input {
  /* border-radius: 3px; */
  border: 2px solid;
  border-color: #c0c6c9;
  padding-bottom: 13px;
  width: 100%;
  color: #3c3939;
  font-size: 18px;
  background: transparent;
  border-radius: 6px;
  height: 42px;
  padding: 5px;
}

input.hs-input::-moz-placeholder {
  color: #3c3939;
}
.hs-form-field > label,
.hs-form-field > label span {
  display: inline;
  color: #586870;
  font-size: 18px;
}

.hs-button {
  background: #574099;
  color: #fff;
  border: none;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  border-radius: 5px;
  width: 200px;
  margin: 0;
  margin-top: 25px;
}

.hs-dependent-field .hs-form-field {
  width: 211% !important;
}

select {
  margin-bottom: 15px;
  border-radius: 6px;
  background: white;
  border: 2px solid;
  border-color: #c0c6c9;
  height: 42px;
  color: black;
}

.hs-error-msg {
  bottom: -1px;
}

.hs-form-field > label,
.hs-form-field > label span {
  display: inline;
}

.hs-fieldtype-select select {
  padding: 6px 12px;
  border-color: #c0c6c9;
  width: 100%;
  height: 50px;
}

.hs-form-field > label {
  display: block !important;
  color: black;
}

fieldset.form-columns-1 {
  max-width: 50% !important;
}

fieldset {
  max-width: 100% !important;
}

fieldset.form-columns-2 {
  display: flex;
  margin-bottom: 14px;
}

.hubspotPricingFormContainer input.hs-input::-moz-placeholder {
  color: #3c3939;
}

.hubspotPricingFormContainer input.hs-input::placeholder {
  color: #3c3939;
}

.hubspotPricingFormContainer {
  float: initial;
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 0;
}
ul.no-list.hs-error-msgs.inputs-list {
  color: red;
}
.actions {
  display: flex;
  justify-content: center;
}

.pdf-downloader-link a {
  background: #574099;
  color: #fff;
  border: none;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  border-radius: 5px;
}
.modal-class {
  margin-top: 0 !important;
}
.modal-white-class {
  z-index: 99999 !important;
}
.pdf-downloader-link {
  margin-top: 20px;
}

.customSubmit-message {
  display: none;
}

.customSubmit-message.display {
  display: block;
}

.modal .close,
.modal .close span {
  font-size: 26px;
}

#about .hs-form-field > label,
#about .hs-form-field > label span {
  display: inline;
  color: #fff !important;
  font-size: 18px;
}

.modal-class .hs-form-field > label,
.hs-form-field > label span {
  display: inline;
  color: #000 !important;
  font-size: 18px;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
            !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/components/EmailEhr/emailehr.css ***!
            \**********************************************************************************************************************************************************************************************************************************************************************************/
label#label-practice_name-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}
select#state___cloned_-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}

label#label-state___cloned_-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}
label#label-specialty-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}
input#practice_name-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}
select#specialty-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 {
  display: flex;
  flex-direction: column;
}

.hs-form-field > label {
  display: block !important;
  color: #fff !important;
}

.hs-form-field > label,
.hs-form-field > label span {
  display: inline;
  font-size: 18px;
  color: #fff !important;
}
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input,
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 optgroup,
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 select,
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 textarea {
  padding: 8px 5px 15px 21px;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 431px;
  height: 36px;
  font-size: 14px;
  background-color: #fff;
  margin: 5px 20px;
  color: #290761;
}
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997
  fieldset.form-columns-2
  input::-moz-placeholder {
  font-size: 14px;
  padding: 4px;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #000 !important;
}
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997
  fieldset.form-columns-2
  input::placeholder {
  font-size: 14px;
  padding: 4px;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #000 !important;
}
label[for="firstname-357a42f3-9e6e-4fc8-b266-424fa50bc997"] {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 20px;
}
.hs-form-357a42f3-9e6e-4fc8-b266-424fa50bc997_763d9cde-bc8f-4e36-9dce-6fbaad271e69
  fieldset {
  color: #000;
  max-width: 500px;
  margin: 5px 20px;
}
label#label-lastname-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  margin: 5px 20px;
}
label#label-phone-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  margin: 5px 20px;
}
label#label-email-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  margin: 5px 20px;
}
.hs_submit .actions {
  /* display: block !important; */
  /* margin-left: auto !important; */
  /* margin-right: auto !important; */
  /* text-align: center; */
  /* margin-top: 5px; */
}
.hs_submit .actions input {
  width: 200px;
  height: 45px;
}

.hs_submit .primary {
  white-space: pre-wrap;
  background: #ffc415 !important;
  padding: 6.5px 20px;
  border-radius: 50px;
  border: 0.0625rem solid #ffc415;
  color: #290761;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  transition: background-color 0.4s ease, color 0.4s ease,
    border-color 0.4s ease, box-shadow 0.4s ease;
  text-transform: capitalize;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-wrap: nowrap;
  outline: none;
}
ul.no-list.hs-error-msgs.inputs-list {
  font-size: 9.5px;
  color: red;
}
@media (max-width: 768px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 optgroup,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 select,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997
    fieldset.form-columns-2
    textarea {
    width: 365px;
    height: 34px;
  }
}
@media (max-width: 490px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 optgroup,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 select,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997
    fieldset.form-columns-2
    textarea {
    width: 320px;
    height: 34px;
  }
}
/* @media (max-width:420px)
            {
                .email-img{
                width:390px!important;
            }
            .hs_submit .actions {
                margin-top: -9px;
            }
            } */
@media (max-width: 420px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 optgroup,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 select,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997
    fieldset.form-columns-2
    textarea {
    width: 85%;
    height: 20px;
  }
  label[for="firstname-357a42f3-9e6e-4fc8-b266-424fa50bc997"] {
    font-size: 12px;
    margin-top: 0px;
  }
  .email-img {
    width: 290px;
  }
  label#label-lastname-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
    margin-top: 0px;
    font-size: 12px;
  }
  label#label-phone-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
    margin-top: 0px;
    font-size: 12px;
  }
  label#label-email-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
    margin-top: 0px;
    font-size: 12px;
  }
  .hs_submit .actions input {
    width: 100px;
    height: 30px;
    margin-top: 0px;
  }
  .hs_submit .actions {
    margin-top: 5px;
  }
  .hs_submit .primary {
    white-space: pre-wrap;
    background: #ffc415 !important;
    padding: 6.5px 20px;
    font-size: 12px;
  }
  .icon {
    width: 50px;
    height: 50px;
  }
  .icon img {
    width: 20px;
    height: 20px;
  }
  .heading-input {
    margin-bottom: 5px;
  }
  .hs-form-field > label,
  .hs-form-field > label span {
    display: inline;
    font-size: 11px;
    color: #fff !important;
  }
}
.hs-submit .actions {
  width: 240px;
  margin-left: auto !important;
  margin-right: auto !important;
  background: none !important;
}
.floating-icon-2 {
  position: absolute;
  top: 0;
  right: 2px;
  width: 75px;
  height: 75px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  z-index: 10;
}
.floating-icon-2 svg {
  width: 30px;
  height: 30px;
  color: #000000; /* Black */
  transition: all 0.5s ease-in-out;
}

.email-img:hover .floating-icon-2 svg {
  color: #ffffff; /* White when hovering form area */
}

/* Sidebar Icons Container */
.sidebar-icons {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 50px;
  height: 180px;
  background: white;
  border-radius: 50px;
  display: none; /* Hidden by default */
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  text-align: center;
  font-weight: bold;
  color: #4b4b4b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Show on large screens (2xl: 1536px+) */
@media (min-width: 1536px) {
  .sidebar-icons {
    display: flex;
  }
}

/* Icon Wrapper */
.icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

/* Images */
.icon-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ======================== EMR GUIDE SECTION ======================== */
.emr-guide-section {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 40px;
}

.emr-guide-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 400;
  color: #000;
  padding-top: 0.5rem;
  padding-bottom: 30px;
}

.section-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  color: #000;
  padding-top: 0.5rem;
  padding-bottom: 30px;
}

.section-description {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: #505050;
  padding-top: 0.5rem;
  padding-bottom: 30px;
  line-height: 1.6;
}

/* Responsive Typography */
@media (min-width: 768px) {
  .main-title {
    font-size: 3rem; /* 48px */
  }

  .section-title {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 70px;
  }

  .section-title {
    font-size: 50px;
  }

  .section-description {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .emr-guide-section {
    padding-bottom: 0;
  }
}

/* ======================== PRICING SECTION ======================== */
.pricing-section {
  background-color: white;
  padding-top: 60px;
  padding-bottom: 40px;
}

.pricing-main-title {
  text-align: center;
  font-size: 1.875rem; /* 30px */
  font-weight: 400;
  color: #000;
  padding-top: 1.25rem;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 20px;
}

@media (min-width: 768px) {
  .pricing-main-title {
    font-size: 3rem; /* 48px */
  }
}

@media (min-width: 1024px) {
  .pricing-main-title {
    font-size: 70px;
  }

  .pricing-container {
    padding: 40px 0 40px 0;
  }
}

@media (min-width: 1280px) {
  .pricing-section {
    padding-bottom: 0;
  }
}

/* ======================== PRICING GRID ======================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ======================== CARD STYLES (FROM COMMON.CSS) ======================== */
.card-container {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: white;
  padding: 40px;
  transition: transform 0.3s ease;
  border: 1px solid #ddd;
}

.card-container::before {
  content: "";
  position: absolute;
  top: var(--circle-y, 50%);
  left: var(--circle-x, 50%);
  width: 0;
  height: 0;
  background: rgb(240, 232, 255);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    width 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    height 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.card-container.active::before {
  width: 2000px;
  height: 2000px;
  transform: translate(-50%, -50%) scale(1);
}

.card-content {
  position: relative;
  z-index: 1;
}

.read-more {
  color: #6b21a8;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

.read-more img:hover {
  transform: translateX(50%);
  color: #6b21a8;
}

/* ======================== CARD COMPONENTS ======================== */
.card-image {
  position: relative;
  height: 315px;
  margin-bottom: 60px;
}

.card-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.card-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.read-more-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 500;
  color: inherit;
  transition: color 0.3s ease;
}

/* ======================== ANIMATION (FROM PRICING.CSS) ======================== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce-slow {
  animation: bounce 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
