/* Style for table header (titles) */
.provider-table th {
    background-color: #003366; /* Dark blue background */
    color: #ffffff; /* White text for contrast */
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-bottom: 2px solid #00509e; /* Slightly lighter blue border */
}

/* Style for table rows */
.provider-table td {
    background-color: #f0f8ff; /* Light blue background */
    color: #003366; /* Dark blue text */
    padding: 10px;
    border: 1px solid #d1e3f8; /* Subtle blue border */
    text-align: center;
}

/* Hover effect for table rows */
.provider-table tr:hover {
    background-color: #e0efff; /* Slightly darker blue on hover */
}

/* Style for the buttons */
.order-btn {
    background-color: #0066cc; /* Bright blue button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #004d99; /* Darker blue on hover */
}

/* Style for provider logos */
.provider-table img {
    width: 100px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* General table styling */
.provider-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Prevent content from spilling out */
}

.reviews-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f0f8ff, #e6f7ff); /* Light blue gradient */
    position: relative;
  }
  
  .reviews-section h2 {
    text-align: center;
    font-size: 2em;
    color: #003bb3;
    margin-bottom: 20px;
  }
  
  .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .review-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #555;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .review-card img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s;
  }
  
  .review-card:hover img {
    transform: scale(1.1);
  }
  
  .review-card p {
    font-size: 0.9em;
    line-height: 1.6;
  }
  
  .review-card p:last-child {
    font-size: 1em;
    font-weight: bold;
    color: #ffa500;
  }
  
  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .review-card {
      width: 100%;
    }
  }
  .provider-bubbles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.provider-bubble {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.provider-bubble img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.provider-bubble h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.provider-bubble p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.order-btn {
    background-color: #d01a5f;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth animation */
  }

.order-btn:hover {
  transform: scale(1.1); /* Slightly enlarge the button */
  background-color: #b01550; /* Change to a darker shade of red */
}
.order-btn a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
    .provider-bubbles-container {
        flex-direction: column;
        align-items: center;
    }

    .provider-bubble {
        width: 90%; /* Adjust for smaller screens */
    }
}
