
  /* -----------------------------RiskManager31000.css--------------------------*/
  .product-section {
    background-color: #2c2f4f;
    border-radius: 25px;
  }
  .product-section h2 {
    font-size: 2rem;
  }
  
  .product-section .price .text-primary {
    font-weight: bold;
  }
  
  .product-section .features i {
    font-size: 2rem;
  }
  
  .product-section .features p {
    margin-top: 5px;
  }
  
  
  .btn-primary {
    background-color: #ffffff;
    /* border-color: #4c6ef5; */
    border-radius: 25px;
  }
  
  .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
  }

  /* New Product section styles */
.new-product-section {
  background-color: #1a1b25; /* Dark background */
  border-radius: 10px;
  padding: 40px;
}

.new-product-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

.new-product-section .new-price {
  font-size: 1.5rem;
}

.new-product-section .new-price .text-decoration-line-through {
  text-decoration: line-through;
  color: #6c757d; /* Light grey for original price */
}

.new-product-section .new-price .text-primary {
  color: #007bff; /* Blue for discounted price */
}

.product-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s;
}

/* New style for the features section */
.new-features {
  display: flex;
  justify-content: space-between;
  background-color: #6c757d;
  padding: 20px;
  border-radius: 10px;
}

.new-features .new-text-center {
  flex: 1;
  padding: 10px;
}

.new-features .new-text-center i {
  font-size: 2rem;
  color: white;
}

.new-features .new-text-center p {
  color: white;
  font-size: 1rem;
  margin-top: 5px;
}

/* New styles for the right column */
.new-col-right .new-btn {
  width: 100%;
  margin-bottom: 10px;
}

.new-col-right .new-btn-primary {
  background-color: #007bff;
  border: none;
}

.new-col-right .new-btn-outline-light {
  border-color: white;
  color: white;
}

.new-col-right .new-btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

/* New Social media icons styles */
.new-social-icons {
  display: flex;
  justify-content: space-between;
}

.new-social-icons a {
  font-size: 1.5rem;
  color: white;
}

.new-social-icons a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive styling for new classes */
@media (max-width: 768px) {
  .new-product-section {
    padding: 20px;
  }

  .new-product-section h2 {
    font-size: 1.5rem;
  }

  .new-features {
    flex-direction: column;
  }

  .new-features .new-text-center {
    padding: 15px;
  }
  
  .new-col-left {
    margin-bottom: 20px;
  }

  .new-col-right {
    padding-left: 0;
    padding-right: 0;
  }
}

.product-right-column {
    border: 2px solid white; /* 2px border */
    border-radius: 25px; /* Add border radius to the box */
    /* background-image: linear-gradient(to right, white, purple, blue, pink);  */
    background-origin: border-box; /* Use the border-box to apply the gradient */
    background-clip: content-box, border-box; /* Apply gradient only to border, not content area */
  }
  
  /* Optional: Additional styling for buttons and social icons */
  .product-right-column .btn {
    border-radius: 25px; /* Round corners for buttons */
  }
  
  .product-right-column .social-icons a {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
  }
  
  .product-right-column .social-icons a:hover {
    color: #007bff; /* Add hover effect to social icons */
  }

  /* Styling for the Product Description Section */
.product-description {
    padding: 30px 0;
    border-radius: 10px;
  }
  
  .btn-group {
    display: flex;
    justify-content: flex-start;
  }
  
  .btn {
    border-radius: 20px;
    padding: 12px 25px;
    margin-right: 10px;
  }
  
  .btn-primary {
    background-color: #1d74e2;
    color: white;
    border: none;
  }
  
  .btn-primary.active {
    background-color: #3a7ff7;
  }
  
  .btn-outline-primary {
    background-color: transparent;
    color: #1d74e2;
    border: 1px solid #1d74e2;
  }
  
  .product-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
  }
  
  .product-description {
    color: #b5b5b5;
    font-size: 16px;
  }
  
  .content-section {
    color: #ccc;
    /* display: none; Hide by default */
  }
  
  .content-section.active {
    display: block; /* Show when active */
  }
  
  .reviews-content {
    color: #ccc;
  }
  
  .mt-3 {
    margin-top: 1rem;
  }

  .product-description-head {
    font-size: 1.2rem;
    color: #25E2FF;
  }

  .risk-management-target-audience ul li {
    color: #fff; /* Text color */
    font-size: 16px; /* Adjust font size */
    margin-bottom: 15px; /* Space between list items */
    line-height: 1.5; /* Adjust line height */
  }
  
  .related-products .card {
    background-color: #3C3A50;
    border-radius: 12px;
    border: none;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .related-products .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .related-products .card-title {
    font-weight: bold;
    font-size: 14px;  /* Reduced font size for the card title */
  }
  
  .related-products .price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .related-products .original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
  }
  
  .related-products .discounted-price {
    color: #00bfff;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  .related-products .discount-badge {
    width: 25%; /* Adjust the size of the discount icon */
    height: auto;
  }
  
  .related-products .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }
  
  .related-products .btn {
    margin-top: 10px;
    border-radius: 25px;
    background-color: white;
    color: #0066ff;
  }
  
  .related-products h2 {
    font-weight: bold;
    font-size: 24px;
  }
  
  .related-products .col-md-3 {
    display: flex;
    justify-content: stretch;
  }
  
  .related-products .card-body .card-text {
    flex-grow: 1;
  }
  
.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #00bfff; /* Hover color */
}

.breadcrumb-item.active {
    color: #999999; /* Active item color */
}

.breadcrumb-item i {
    margin-right: 5px; /* Add margin for the back icon */
}

/* Section Styling */


/* Heading */
.certification-heading {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
}

/* Description */
.certification-description {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.certification-link {
  color: #a9d9ff;
  text-decoration: none;
}

.certification-link:hover {
  text-decoration: underline;
}

/* Table Styling */
.certification-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #1c2239;
  border-radius: 8px;
  overflow: hidden;
}

.certification-table thead th {
  background-color: #94d5d8;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  padding: 12px;
}

.certification-table tbody td {
  color: #000000;
  background-color: #6c757d;
  font-size: 0.95rem;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-table tbody tr:last-child td {
  border-bottom: none;
}

.add-review-section {
  padding: 40px;
  background-color: #4c4d51;
  border-radius: 8px;
  margin-top: 20px;
}

.add-review-section .form-control {
  /* background-color: #2c2f36; */
  color: #fff;
  border: 1px solid #5a5d63;
  border-radius: 5px;
}

.add-review-section .form-control:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 5px rgba(0, 102, 255, 0.5);
}

.add-review-section .form-check-label {
  color: #bbb;
}

.add-review-section .btn {
  width: 120px;
}

.add-review-section .btn-primary {
  background-color: #0066ff;
  border: none;
}

.add-review-section .btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

#reviews-container {
  margin-top: 20px;
}

.review-card {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #4a4b51;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.review-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2c2f36;
}

.review-avatar i {
  font-size: 30px;
}

.review-card h5 {
  margin-bottom: 10px;
  font-weight: bold;
}

.review-card p {
  font-size: 14px;
}

.card-header {
  background-color: #656286 !important;
  border-radius: 14px !important;
}


  
  
  
  