/* Start custom CSS for html, class: .elementor-element-5c36eed */.about-page-wrapper {
            font-family: 'Arial', sans-serif;
            color: #333333;
          
            padding: 60px 0;
            min-height: 100vh;
        }

        .about-page-wrapper .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Common heading style */
        .about-page-wrapper h2 {
            font-size: 30px;
            font-weight: 700;
            color: #45b192;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .about-page-wrapper h2:hover {
            transform: translateY(-3px);
        }

        .about-page-wrapper h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #45b192, #0c7493);
            margin-top: 5px;
            border-radius: 2px;
        }

        .about-page-wrapper h3 {
            font-size: 20px;
            font-weight: 600;
            color: #0c7493;
            margin-bottom: 10px;
        }

        /* Section 1: About Us (Image and Content) */
        .hrpharmacy-about-section {
            margin-bottom: 60px;
            animation: slideIn 0.5s ease-out;
        }

        .hrpharmacy-about-card {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .hrpharmacy-about-card img {
            width: 40%;
            height: auto;
            object-fit: cover;
        }

        .hrpharmacy-about-card .content {
            padding: 30px;
            flex: 1;
        }

        .hrpharmacy-about-card p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* Section 2: Mission & Vision */
        .hrpharmacy-mission-vision-section {
            margin-bottom: 60px;
            animation: slideIn 0.5s ease-out 0.2s;
            animation-fill-mode: backwards;
        }

        .hrpharmacy-mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .hrpharmacy-mission-vision-card {
            background: linear-gradient(135deg, rgba(69, 177, 146, 0.1), rgba(12, 116, 147, 0.1));
            border: 1px solid rgba(69, 177, 146, 0.3);
            border-radius: 12px;
            padding: 30px;
            color: #333333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .hrpharmacy-mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .hrpharmacy-mission-vision-card h3 {
            color: #45b192;
            position: relative;
            z-index: 1;
        }

        .hrpharmacy-mission-vision-card p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* Section 3: Our Core Values */
        .hrpharmacy-core-values-section {
            margin-bottom: 60px;
            animation: slideIn 0.5s ease-out 0.4s;
            animation-fill-mode: backwards;
        }

        .hrpharmacy-core-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .hrpharmacy-core-values-item {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .hrpharmacy-core-values-item:hover {
            background-color: rgba(69, 177, 146, 0.1);
        }

        .hrpharmacy-core-values-item span {
            font-size: 40px;
            color: #45b192;
            display: block;
            margin-bottom: 10px;
        }

        .hrpharmacy-core-values-item p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* Section 4: Why Choose Us */
        .hrpharmacy-why-choose-us-section {
            margin-bottom: 60px;
            animation: slideIn 0.5s ease-out 0.6s;
            animation-fill-mode: backwards;
        }

        .hrpharmacy-why-choose-us-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .hrpharmacy-why-choose-us-card p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* Slide-in animation for sections */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-page-wrapper .container {
                width: 95%;
                padding: 0 15px;
            }

            .about-page-wrapper h2 {
                font-size: 24px;
            }

            .hrpharmacy-about-card {
                flex-direction: column;
            }

            .hrpharmacy-about-card img {
                width: 100%;
            }

            .hrpharmacy-about-card .content,
            .hrpharmacy-mission-vision-card,
            .hrpharmacy-why-choose-us-card {
                padding: 20px;
            }

            .hrpharmacy-mission-vision-grid {
                grid-template-columns: 1fr;
            }

            .hrpharmacy-about-card p,
            .hrpharmacy-mission-vision-card p,
            .hrpharmacy-core-values-item p,
            .hrpharmacy-why-choose-us-card p {
                font-size: 14px;
            }

            .hrpharmacy-core-values-item span {
                font-size: 30px;
            }
        }

        @media (max-width: 480px) {
            .about-page-wrapper h2 {
                font-size: 20px;
            }

            .about-page-wrapper h3 {
                font-size: 18px;
            }

            .hrpharmacy-about-card .content,
            .hrpharmacy-mission-vision-card,
            .hrpharmacy-why-choose-us-card {
                padding: 15px;
            }

            .hrpharmacy-about-card p,
            .hrpharmacy-mission-vision-card p,
            .hrpharmacy-core-values-item p,
            .hrpharmacy-why-choose-us-card p {
                font-size: 13px;
            }

            .hrpharmacy-core-values-item span {
                font-size: 25px;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1ffc495 */.testimonial-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 12px;
    text-align: center;
  }

  .testimonial-section h2 {
    font-size: 28px;
    color: #0c7493;
    margin-bottom: 10px;
  }

  .testimonial-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(12, 116, 147, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #45b192;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
  }

  .testimonial-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #0c7493;
    object-fit: cover;
    background-color: #fff;
    margin-bottom: 12px;
    padding: 3px;
  }

  .testimonial-card h3 {
    font-size: 16px;
    color: #0c7493;
    margin: 8px 0 4px;
  }

  .testimonial-card span {
    font-size: 14px;
    color: #777;
  }

  .testimonial-card p {
    font-size: 15px;
    color: #333;
    margin-top: 12px;
    line-height: 1.6;
  }

  .stars {
    color: #fbc02d;
    font-size: 16px;
    margin-top: 6px;
  }

  @media (max-width: 992px) {
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
    }

    .testimonial-section h2 {
      font-size: 22px;
    }

    .testimonial-section p {
      font-size: 14px;
    }
  }/* End custom CSS */