/** Shopify CDN: Minification failed

Line 1362:0 Unexpected "}"

**/
* {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      :root {
        --primary-color: #4a4a4a; /* Charcoal */
        --secondary-color: #666666; /* Soft Grey */
        --accent-color: #007bff; /* A subtle blue for highlights if needed, not orange */
        --light-grey: #f8f9fa;
        --dark-grey: #2c3e50;
        --text-color: #333;
        --heading-font: 'Playfair Display', serif;
        --body-font: 'Open Sans', sans-serif;
      }

      body {
          font-family: var(--body-font);
          line-height: 1.6;
          color: var(--text-color);
      }

      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      /* Hero Section */
     .hero {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
        background-image: url('https://i.postimg.cc/ZncG6Kj3/Gemini-Generated-Image-9jcnpi9jcnpi9jcn.webp'); /* Placeholder for new image */
        background-size: cover;
        background-position: center;
    }


      .hero-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4); /* Reduced opacity overlay */
          z-index: 0;
      }

      .hero .container {
          position: relative;
          z-index: 1;
        padding-top: 76px;
      }

      .hero h1 {
          font-size: 2.5rem;
          font-weight: bold;
          margin-bottom: 20px;
          line-height: 1.2;
      }

      .hero .subheadline {
          font-size: 1.4rem;
          margin-bottom: 40px;
          opacity: 0.9;
      }

      .cta-buttons {
          margin-bottom: 50px;
      }

      .btn {
          display: inline-block;
          padding: 18px 35px;
          margin: 10px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1rem;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
      }

      .btn-primary {
          background: var(--primary-color);
          color: white;
      }

      .btn-primary:hover {
          background: var(--secondary-color);
          transform: translateY(-2px);
      }

      .btn-secondary {
          background: transparent;
          color: white;
          border: 2px solid white;
      }

      .btn-secondary:hover {
          background: white;
          color: #333;
      }

      .trust-badges {
          display: flex;
          justify-content: center;
          gap: 40px;
          flex-wrap: wrap;
      }

      .trust-badge {
          display: flex;
          align-items: center;
          font-size: 0.9rem;
          opacity: 0.9;
      }

      .trust-badge::before {
          content: "✓";
          background: #4CAF50;
          color: white;
          border-radius: 50%;
          width: 20px;
          height: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 8px;
          font-size: 12px;
      }

      /* Dream Outcome Section */
      .dream-outcome {
          padding: 60px 0;
          background: #f8f9fa;
      }

      .dream-outcome h2 {
          font-size: 2.8rem;
          text-align: center;
          margin-bottom: 30px;
          color: #2c3e50;
      }

      .timeline {
          text-align: center;
          font-size: 1.2rem;
          margin-bottom: 60px;
          color: #666;
      }

      .benefits-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;
        
          margin: 0 auto;
      }

      .benefit-card {
          background: white;
          padding: 30px;
          border-radius: 12px;
          text-align: center;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
      }

      .benefit-card:hover {
          transform: translateY(-5px);
      }

      .benefit-card .icon {
          font-size: 3.5rem; /* Slightly larger icons */
          margin-bottom: 20px;
          display: block;
          color: var(--primary-color); /* Apply brand color to icons */
      }

      .benefit-card h3 {
          font-size: 1.5rem;
          margin-bottom: 15px;
          color: #2c3e50;
      }

      /* Featured Equipment Section */
      .featured-equipment,
      .fitness-packages,
      .beauty-wellness-recovery,
      .corporate-rentals {
          padding: 100px 0;
          background: #f8f9fa; /* Light background for new sections */
      }

      .featured-equipment h2,
      .fitness-packages h2,
      .beauty-wellness-recovery h2,
      .corporate-rentals h2 {
          font-size: 2.5rem;
          text-align: center;
          margin-bottom: 60px;
          color: #2c3e50;
      }

      /* Peloton Highlight Box */
      .peloton-highlight-box {
          display: flex;
          flex-direction: column;
          align-items: center;
          background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
          color: white;
          padding: 40px;
          border-radius: 15px;
          margin-bottom: 60px;
          box-shadow: 0 15px 35px rgba(0,0,0,0.2);
          text-align: center;
      }

      .peloton-highlight-box .peloton-image {
          width: 100%;
          height: auto;
          border-radius: 10px;
          margin-bottom: 30px;
      }

      .peloton-highlight-box .peloton-content h3 {
          font-size: 2.2rem;
          margin-bottom: 15px;
      }

      .peloton-highlight-box .peloton-content p {
          font-size: 1.2rem;
          margin-bottom: 30px;
          opacity: 0.9;
      }

      /* Corporate Rental Note */
      .corporate-rental-note {
          background: var(--light-grey);
          border: 2px solid var(--primary-color);
          padding: 30px;
          border-radius: 10px;
          text-align: center;
          margin-bottom: 60px;
          color: var(--text-color);
      }

      .corporate-rental-note p {
          font-size: 1.1rem;
          margin-bottom: 20px;
      }

      .corporate-rental-note .cta-form {
          display: flex;
          justify-content: center;
          gap: 15px;
          flex-wrap: wrap;
      }

      .corporate-rental-note .phone-input {
          flex-grow: 1;
          max-width: 300px;
          padding: 12px 20px;
          border: 1px solid #ccc;
          border-radius: 8px;
          font-size: 1rem;
      }

      /* Equipment Grid (re-used for individual items) */
      .equipment-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
      }

      .equipment-card {
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 15px 35px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
      }

      .equipment-card:hover {
          transform: translateY(-5px);
      }

      .equipment-image {
          width: 100%;
          height: 200px;
          overflow: hidden;
          border-bottom: 1px solid #eee;
      }

      .equipment-image img {
          width: 100%;
          height: 100%;
          object-fit: cover; /* Ensures the image covers the area without distortion */
          display: block;
      }

      .equipment-info {
          padding: 25px;
      }

      .equipment-info h3 {
          font-size: 1.4rem;
          margin-bottom: 15px;
          color: #2c3e50;
      }

      .price {
          font-size: 2rem;
          font-weight: bold;
          color: var(--primary-color);
          margin-bottom: 15px;
      }

      .value-boosters {
          list-style: none;
          margin-bottom: 25px;
      }

      .value-boosters li {
          padding: 5px 0;
          position: relative;
          padding-left: 25px;
      }

      .value-boosters li::before {
          content: "✓";
          color: #4CAF50;
          font-weight: bold;
          position: absolute;
          left: 0;
      }

      /* Fitness Packages Grid */
      .packages-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;
      }

      .package-card {
          background: white;
          padding: 30px;
          border-radius: 12px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
          display: flex;
          flex-direction: column;
      }

      .package-card:hover {
          transform: translateY(-5px);
      }

      .package-card h3 {
          font-size: 1.8rem;
          margin-bottom: 15px;
          color: #2c3e50;
      }

      .package-card .target {
          font-style: italic;
          color: #666;
          margin-bottom: 15px;
      }

      .package-card h4 {
          font-size: 1.2rem;
          margin-top: 20px;
          margin-bottom: 10px;
          color: var(--primary-color);
      }

      .package-card ul {
          list-style: none;
          margin-bottom: 20px;
          flex-grow: 1; /* Allows list to take available space */
      }

      .package-card ul li {
          padding: 5px 0;
          position: relative;
          padding-left: 25px;
      }

      .package-card ul li::before {
          content: "✅"; /* Checkmark emoji */
          position: absolute;
          left: 0;
          color: #4CAF50;
      }

      .package-card .bonus {
          font-size: 0.95rem;
          color: #555;
          margin-top: 15px;
      }

      .package-card .btn {
          margin-top: auto; /* Pushes button to the bottom */
          width: 100%;
          text-align: center;
      }


      /* Comparison Table */
      .comparison {
          padding: 100px 0;
          background: #f8f9fa;
      }

      .comparison h2 {
          font-size: 2.5rem;
          text-align: center;
          margin-bottom: 60px;
          color: #2c3e50;
      }

      .comparison-table {
          width: 100%;
          border-collapse: collapse;
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      }

      .comparison-table th,
      .comparison-table td {
          padding: 20px;
          text-align: left;
          border-bottom: 1px solid #eee;
      }

      .comparison-table th {
          background: #2c3e50; /* Dark background for headers */
          color: white;
          font-weight: bold;
          text-transform: uppercase; /* Make headers uppercase for modern look */
          letter-spacing: 0.5px;
      }

      .comparison-table .highlight {
          background: #fff3cd;
      }

      .check {
          color: #4CAF50;
          font-weight: bold;
          font-size: 1.2rem;
      }

      .cross {
          color: #f44336;
          font-weight: bold;
          font-size: 1.2rem;
      }

      /* Equipment Finder */
      .equipment-finder {
          padding: 100px 0;
      }

      .finder-container {
          max-width: 600px;
          margin: 0 auto;
          text-align: center;
          background: white;
          padding: 50px;
          border-radius: 12px;
          box-shadow: 0 15px 35px rgba(0,0,0,0.1);
      }

      .finder-container h2 {
          font-size: 2.2rem;
          margin-bottom: 30px;
          color: #2c3e50;
      }

      .form-group {
          margin-bottom: 25px;
          text-align: left;
      }

      .form-group label {
          display: block;
          margin-bottom: 8px;
          font-weight: bold;
          color: #2c3e50;
      }

      .form-group select,
      .form-group input {
          width: 100%;
          padding: 15px;
          border: 1px solid #ccc; /* Slightly thinner border */
          border-radius: 8px; /* More rounded corners */
          font-size: 1rem;
          box-shadow: inset 0 1px 3px rgba(0,0,0,0.06); /* Subtle inner shadow */
          transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .form-group select:focus,
      .form-group input:focus {
          border-color: var(--primary-color); /* Highlight on focus */
          box-shadow: 0 0 0 3px rgba(74, 74, 74, 0.2); /* Glow effect on focus */
          outline: none;
      }

      .bonus-offer {
          background: var(--light-grey);
          padding: 20px;
          border-radius: 8px;
          margin: 30px 0;
          border-left: 4px solid var(--primary-color);
      }

      /* Testimonials */
      .testimonials {
          padding: 100px 0;
          background: #2c3e50;
          color: white;
      }

      .testimonials h2 {
          font-size: 2.5rem;
          text-align: center;
          margin-bottom: 60px;
      }

      .testimonials-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;
      }

      .testimonial {
          background: rgba(255,255,255,0.1);
          padding: 30px;
          border-radius: 12px;
          box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* Add a subtle shadow */
          transition: transform 0.3s ease;
      }

      .testimonial:hover {
          transform: translateY(-5px); /* Lift on hover */
      }

      .testimonial-text {
          font-size: 1.1rem;
          margin-bottom: 20px;
          font-style: italic;
      }

      .testimonial-author {
          font-weight: bold;
      }

/* Footer Section Styles */
.main-footer {
    background: var(--dark-grey);
    color: white;
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p i {
    color: var(--primary-color); /* Use primary color for icons */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-badges img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%); /* Make them white/light grey */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile styles for Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column p,
  .footer-column ul {
    justify-content: center;
  }

  .payment-badges {
    justify-content: center;
  }
}

/* Side Navigation */
.side-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav li {
  margin: 10px 0;
}

.side-nav a {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.side-nav a.active {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.side-nav i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  margin-right: 10px;
}

.side-nav span {
  font-size: 14px;
  font-weight: 500;
}

/* Remove the tooltip since we now show text directly */
.side-nav a::before {
  display: none;
}

/* Trust Markers Section Styles */
.trust-markers {
    padding: 40px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.trust-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Category Navigation Styles */
.category-navigation {
    padding: 80px 0;
    background: var(--light-grey);
    text-align: center;
}

.category-navigation h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.category-card p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-card span {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.category-card span:hover {
    background: var(--secondary-color);
}

/* Mobile styles */
@media (max-width: 768px) {
  .side-nav {
    left: 10px;
    min-width: 120px; /* Make it smaller on mobile */
    padding: 8px 12px;
  }
  
  .side-nav i {
    font-size: 1rem;
    width: 20px;
  }
  
  .side-nav span {
    font-size: 12px; /* Smaller font size for text */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }

  .trust-grid {
    gap: 20px;
  }

  .trust-item {
    max-width: 100px;
  }

  .trust-item img {
    width: 50px;
    height: 50px;
  }

  .category-navigation h2 {
    font-size: 2rem;
  }

  .category-card {
    padding: 20px;
  }

  .category-card img {
    width: 100px;
    height: 100px;
  }

  .category-card h3 {
    font-size: 1.5rem;
  }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 80px 0;
   /* background: white; */
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.step-card p {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Mobile styles */
@media (max-width: 768px) {
  .side-nav {
    left: 10px;
    min-width: 120px; /* Make it smaller on mobile */
    padding: 8px 12px;
  }
  
  .side-nav i {
    font-size: 1rem;
    width: 20px;
  }
  
  .side-nav span {
    font-size: 12px; /* Smaller font size for text */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }

  .trust-grid {
    gap: 20px;
  }

  .trust-item {
    max-width: 100px;
  }

  .trust-item img {
    width: 50px;
    height: 50px;
  }

  .category-navigation h2 {
    font-size: 2rem;
  }

  .category-card {
    padding: 20px;
  }

  .category-card img {
    width: 100px;
    height: 100px;
  }

  .category-card h3 {
    font-size: 1.5rem;
  }

  .how-it-works h2 {
    font-size: 2rem;
  }

  .step-card img {
    width: 80px;
    height: 80px;
  }

  .step-card h3 {
    font-size: 1.4rem;
  }
}

/* FAQs Section Styles */
.faqs-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.faqs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background: var(--light-grey);
    color: var(--dark-grey);
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

.accordion-header .icon::before {
    content: '\25BC'; /* Unicode for a down arrow */
}

.accordion-content {
    background: white;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 20px 0;
    color: var(--text-color);
    line-height: 1.8;
}

/* Mobile styles for FAQs */
@media (max-width: 768px) {
  .faqs-section h2 {
    font-size: 2rem;
  }

  .accordion-header {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .accordion-content p {
    padding: 15px 0;
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-grey);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

/* Reusing .benefits-grid and .benefit-card from Dream Outcome section */
/* Adjustments if needed for this section specifically */
.why-choose-us .benefit-card .icon {
    color: var(--primary-color); /* Ensure icons match new color scheme */
}

/* Mobile styles for Why Choose Us */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
}

/* Social Proof & Testimonials Section Styles */
.social-proof-testimonials {
    padding: 80px 0;
  /*  background: var(--dark-grey); */
    color: white;
    text-align: center;
}

.social-proof-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

.testimonials-grid {
    display: flex; /* Change to flexbox for horizontal layout */
    flex-wrap: nowrap; /* Prevent wrapping to a new line */
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 30px;
    padding-bottom: 20px; /* Add some padding for scrollbar */
    justify-content: flex-start; /* Align items to the start */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 0; /* Remove padding from card to let image fill */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    flex: 0 0 auto; /* Prevent cards from growing or shrinking */
    width: 300px; /* Set a fixed width for each card */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 0; /* Remove padding from card to let image fill */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative; /* Needed for absolute positioning of overlay */
    cursor: pointer; /* Indicate clickable */
}

.testimonial-card .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%; /* Ensure wrapper takes full height of card */
    overflow: hidden;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    transition: transform 0.5s ease-in-out; /* Smooth transition for zoom effect, increased duration */
}

.testimonial-card:hover img {
    transform: scale(1.1); /* Slightly reduced zoom effect to accommodate overlay */
    transform-origin: center; /* Zoom from center */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through to the image */
}

.testimonial-card:hover .image-overlay {
    opacity: 1; /* Show on hover */
}

.testimonial-card .testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card .client-name {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile styles for testimonials */
@media (max-width: 768px) {
  .social-proof-testimonials h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    gap: 15px; /* Reduce gap on mobile */
    padding: 0 15px 20px; /* Add horizontal padding for better scrolling experience */
  }

  .testimonial-card {
    width: 250px; /* Adjust fixed width for mobile to make images larger */
    height: auto; /* Allow height to adjust based on content */
  }

  .testimonial-card .client-photo {
    width: 100%; /* Ensure image fills the card width */
    height: 100%; /* Increase height for better visibility on mobile */
  }
}
/* Product Description Width and Spacing */
.constrained-description {
  max-width: 700px; /* Adjust as needed for optimal readability */
  margin: 0 auto; /* Center the block */
  text-align: left; /* Align text left within the constrained block */
}

.constrained-description p {
  margin-bottom: 1.5em; /* Double space between paragraphs */
}

.constrained-description p:last-child {
  margin-bottom: 0;
}

/* Image Popup Modal Styles */
.image-popup-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%; /* Adjusted for better mobile fit */
    max-width: 700px;
    max-height: 90vh; /* Limit height to viewport height */
    object-fit: contain; /* Ensure the entire image is visible */
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Responsive adjustments for mobile */
@media only screen and (max-width: 768px) {
    .image-popup-modal {
        padding: 50px 10px 10px 10px; /* Adjust padding for mobile */
            width: 68%;
    }
    .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 60px); /* Account for padding */
    }
    .close-button {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}
}
