.f-1-icon svg {
    fill: #51158C;
}

/* Intro Section */
.velvet-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 20px;
    text-align: center;
}

.velvet-intro h2 {
    font-size: 32px;
    color: #51158C;
    /* Brand purple */
    font-weight: 700;
    background: #f2e9fc;
    /* Light purple background */
    padding: 10px 20px;
    border-left: 6px solid #51158C;
    border-radius: 4px;
    display: inline-block;
}


.velvet-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Flex Section */
.velvet-sections {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.velvet-box {
    flex: 1;
    min-width: 280px;
    background-color: #f7f9fa;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.velvet-box h4 {
    font-size: 20px;
    color: #51158C;
    margin-bottom: 10px;
}

.velvet-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .velvet-sections {
        flex-direction: column;
    }
}

/* General Section Layout */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}



section h4 {
    font-size: 20px;
    color: #51158C;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* WHY CHOOSE US Section */
.choose-highlights,
.choose-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.choose-highlights div,
.choose-features div {
    background: #f2e9fc;
    padding: 10px 15px;
    border-radius: 6px;
    flex: 1 1 200px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-weight: 500;
}

.choose-subtext p {
    margin-top: 30px;
    font-weight: bold;
    color: #222;
}

/* PRODUCT DETAILS */
.product-details ul {
    list-style: none;
    padding-left: 0;
}

.product-details li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.product-details li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #51158C;
}

/* CTA SECTION */
.cta-partnership {
    background: #f7f7f7;
    border-left: 5px solid #51158C;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.cta-partnership .cta-note {
    margin-top: 20px;
    color: #51158C;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.highlight-heading {
    font-size: 1.5rem;
    color: #5d2c9d;
    /* Velvet purple */
    font-weight: 600;
    background: #f3eaff;
    padding: 10px 15px;
    border-left: 5px solid #5d2c9d;
    margin-bottom: 15px;
    display: inline-block;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    justify-content: space-between;
}

.value-item {
    flex: 1 1 calc(33.333% - 16px);
    background: #f9f9ff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e6e9f0;
    position: relative;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.value-item h6 {
    font-size: 1.4rem;
    /* Increased from 1.2rem */
    font-weight: 600;
    margin-bottom: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.checkmark {
    color: #6a0dad;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.4rem;
    /* Increased from 1.2rem */
}

.value-item p {
    font-size: 1.9rem;
    /* Increased from 0.95rem */
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .value-item {
        flex: 1 1 48%;
    }
}

@media (max-width: 600px) {
    .value-item {
        flex: 1 1 100%;
    }
}

.container-9col {
    width: 75%;
    margin: 0 auto;
    max-width: 1140px;
    /* Optional max width */
}

@media (max-width: 992px) {
    .container-9col {
        width: 90%;
    }
}

.quality-section {
  padding: 80px 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.quality-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #6a0dad;
  text-align: center;
  margin-bottom: 30px;
}

.quality-intro {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 850px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.quality-item {
  border-left: 4px solid #6a0dad;
  padding: 16px 20px;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #222;
  transition: transform 0.3s ease;
}

.quality-item:hover {
  transform: translateX(4px);
}

.quality-item::before {

  color: #6a0dad;
  margin-right: 10px;
  font-weight: bold;
}

.btn-purple {
  background-color: #6a0dad;
  color: #fff;
  font-size: 1.5rem;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-purple:hover {
  background-color: #5a0bb8;
  color: #fff;
}
