/* ==========================================
   PRODUCT CARD STYLES - 4 PER ROW
   ========================================== */

   /* Override any blue colors from main theme */
:root {
    --modal-primary: #1a9641; /* Your green theme color - change this to your preferred color */
}

/* Section Title */
.section-title {
    margin-bottom: 3rem;
}

.section-title h6 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h1 {
    font-weight: 700;
    color: #0B2154;
}

/* Product Card Container */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image Section */
.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(10deg);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Quick View Overlay */
.quick-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 33, 84, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.product-card:hover .quick-view {
    opacity: 1;
}

.quick-view i {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.product-card:hover .quick-view i {
    transform: scale(1);
}

.quick-view span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.product-card:hover .quick-view span {
    transform: translateY(0);
    opacity: 1;
}

/* Product Info Section */
.product-info {
    padding: 1.5rem;
    background: white;
}

.product-info h5 {
    color: #0B2154;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h5 {
    color: var(--primary);
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Price Tag */
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.price-tag .price {
    color: #0B2154;
    font-size: 1.4rem;
    font-weight: 800;
}

.price-tag .unit {
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================
   THEME-MATCHING PRODUCT MODAL
   ========================================== */

/* Feature Section */
.feature {
    padding: 3rem 0;
}

.feature .text-center h1 {
    color: #0B2154;
    font-weight: 700;
}

.feature .text-center p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* WOW Animation */
.wow {
    visibility: hidden;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* =======================================================
   EXPORT & B2B OVERRIDES (Green Theme Version)
   ======================================================= */

/* 1. HIDE RETAIL PRICES (Critical for Export) */
.price-tag, 
.modal-price, 
.modal-price-unit,
.modal-price-note {
    display: none !important; /* Force hide prices everywhere */
}

/* 2. NEW "EXPORT STATUS" BADGE (Replaces Price in Modal) */
.quote-status-badge {
    display: inline-block;
    background-color: var(--light); /* Uses your #F4FFFA */
    color: var(--primary-dark);     /* Uses your #007a59 */
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-light); /* Uses your #33C49C */
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 168, 120, 0.1);
}

/* 3. PROFESSIONAL ACTION BUTTONS */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Primary Button: Email/Official Quote (Now Green) */
.btn-email-quote {
    flex: 1;
    background-color: var(--primary); /* Uses your #00A878 */
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.3s;
    min-width: 200px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 168, 120, 0.3);
}

.btn-email-quote:hover {
    background-color: var(--primary-dark); /* Uses your #007a59 */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 120, 0.4);
}

/* Secondary Button: WhatsApp (Keep Standard WhatsApp Green or use Secondary) */
.btn-whatsapp-quote {
    flex: 1;
    background-color: #25D366; /* Standard WhatsApp Brand Color */
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s;
    min-width: 200px;
    border: none;
}

.btn-whatsapp-quote:hover {
    background-color: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* 4. FIX PRODUCT CARD (On Home Page) */
/* Hides price on the small cards too */
.product-card .price-tag {
    display: none !important;
}

/* Adds "View Specs" text in your Dark Green color */
.product-info::after {
    content: "View Specifications →";
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark); /* Uses your #007a59 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--gray-200);
    padding-top: 15px;
}



/* ==========================================
   ENHANCED SEO PRODUCT SECTION HEADER
   ========================================== */

.product-section-header {
    margin-bottom: 60px;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light), var(--gray-200));
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-light);
    animation: fadeInDown 0.6s ease;
}

/* Main Title */
.product-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin: 25px 0;
    animation: fadeInUp 0.8s ease;
}

/* Title Decoration */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* Description Box */
.product-description-box {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--primary-light);
    margin: 30px 0;
    animation: fadeIn 1s ease;
}

.lead-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
}

.lead-description strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Key Highlights */
.key-highlights {
    margin-top: 25px;
}

.highlight-item {
    background: white;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.15);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

/* Quick Info Bar */
.quick-info-bar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--gray-200);
}

.info-item {
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: 12px;
    background: var(--gray-100);
    border-radius: 8px;
}

.info-item strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* Products Grid Header */
.products-grid-header {
    margin: 50px 0 30px;
    padding-top: 50px;
    border-top: 2px solid var(--gray-200);
}

.products-grid-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.products-grid-header h2 i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .product-main-title {
        font-size: 1.8rem;
    }
    
    .product-description-box {
        padding: 25px 20px;
    }
    
    .lead-description {
        font-size: 1rem;
    }
    
    .decoration-line {
        width: 40px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================================
   INTERACTIVE TECH CAPABILITIES – PIPE FITTINGS
   ========================================================= */

.oem-tech-capabilities {
  background: linear-gradient(180deg, #f7fbfa, #ffffff);
}

/* LEFT MENU */
.capability-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-tab {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 600;
}

.capability-tab i {
  color: var(--primary);
  font-size: 18px;
}

.capability-tab:hover,
.capability-tab.active {
  background: linear-gradient(
    135deg,
    rgba(0,168,120,0.12),
    rgba(0,168,120,0.05)
  );
  border-color: var(--primary);
  transform: translateX(4px);
}

/* RIGHT CONTENT */
.capability-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  min-height: 280px;
}

.cap-panel {
  display: none;
  animation: fadeUp 0.3s ease;
}

.cap-panel.active {
  display: block;
}

.cap-panel h3 {
  margin-bottom: 12px;
}

.cap-panel ul {
  color: var(--dark);
}

.cap-panel ul li {
  margin-bottom: 8px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Green emphasis for capability content */
.capability-content {
  border-left: 4px solid var(--primary);
  box-shadow: 0 12px 32px rgba(0, 168, 120, 0.12);
}

/* Mobile */
@media (max-width: 992px) {
  .capability-tab {
    transform: none !important;
  }
}

/* =========================================================
   OEM TECHNICAL SPEC TABLE
   ========================================================= */

.oem-spec-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.oem-spec-table th {
  width: 30%;
  background: rgba(0,168,120,0.08);
  font-weight: 600;
  color: var(--dark);
}

.oem-spec-table td {
  color: var(--dark);
}

.oem-spec-table th,
.oem-spec-table td {
  padding: 14px;
  vertical-align: middle;
}
/********** FAQ SECTION – OME THEME **********/
.faq-section {
    background: linear-gradient(
        135deg,
        var(--gray-100),
        var(--gray-200)
    );
}

/* Section heading */
.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-bottom: 12px;
}

.faq-section h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Accordion container */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    background: transparent;
}

/* Question button */
.faq-section .accordion-button {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Remove Bootstrap blue focus */
.faq-section .accordion-button:focus {
    box-shadow: none;
}

/* Active / Open state */
.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color: #ffffff;
    border-left-color: var(--accent);
}

/* Arrow icon color */
.faq-section .accordion-button::after {
    filter: brightness(0) invert(0.3);
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Answer body */
.faq-section .accordion-body {
    background: #ffffff;
    color: var(--gray-600);
    padding: 18px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    border-radius: 0 0 8px 8px;
    border-left: 5px solid var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Strong text inside answers */
.faq-section .accordion-body strong {
    color: var(--primary-dark);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
}


/* ==========================================
   WHY CUSTOM MANUFACTURING SECTION - THEME MATCHED
   ========================================== */

/* Why Choose Cards */
.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(0, 168, 120, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover::after {
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 168, 120, 0.2);
    border-color: rgba(0, 168, 120, 0.3);
}

/* Icon Styling */
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 168, 120, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.why-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
}

.why-choose-card:hover .why-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 168, 120, 0.5);
}

.why-icon i {
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.why-choose-card:hover .why-icon i {
    transform: scale(1.15);
}

/* Typography */
.why-choose-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover h5 {
    color: var(--primary);
}

.why-choose-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Section Title Styling */
.why-choose-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.why-choose-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

/* Alternative: Badge Style Section Header */
.section-header-custom {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-custom .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 168, 120, 0.3);
}

.section-header-custom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header-custom .lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* Number Badge (Optional Enhancement) */
.why-choose-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.4);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-number {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-choose-card {
        padding: 30px 24px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 28px;
    }

    .why-choose-card h5 {
        font-size: 1.15rem;
    }

    .section-header-custom h2,
    .why-choose-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-choose-card {
        padding: 25px 20px;
        margin-bottom: 1.5rem;
    }

    .why-icon {
        width: 55px;
        height: 55px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-choose-card h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .why-choose-card p {
        font-size: 0.9rem;
    }

    .section-header-custom h2,
    .why-choose-section h2 {
        font-size: 1.75rem;
    }

    .section-header-custom .lead {
        font-size: 1rem;
    }
}

/* Animation Classes (if using WOW.js) */
.why-choose-card.wow {
    visibility: hidden;
}

.why-choose-card.wow.animated {
    visibility: visible;
}

/* Alternative Card Style: With Border Accent */
.why-choose-card.border-accent {
    border-left: 5px solid var(--primary);
}

.why-choose-card.border-accent:hover {
    border-left-color: var(--accent);
}

/* Alternative: Minimal Style */
.why-choose-card.minimal {
    background: transparent;
    border: 2px solid var(--gray-200);
    box-shadow: none;
}

.why-choose-card.minimal:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 168, 120, 0.15);
}

/* Grid Layout Enhancement */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .why-choose-card {
        border: 1px solid #ddd;
        page-break-inside: avoid;
        box-shadow: none;
    }

    .why-choose-card::before,
    .why-choose-card::after {
        display: none;
    }

    .why-icon {
        background: #00A878;
    }
}


/* --- Manufacturing Process Section Styles --- */

:root {
  /* Change this color to match your brand (e.g., #ff6600 for orange) */
  --brand-color: #00A878;
  --brand-color-light: rgba(13, 110, 253, 0.1);
}

/* 1. The Card Container */
.process-step-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden; /* Ensures the watermark number stays inside */
  height: 100%; /* Makes all cards the same height */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-bottom: 4px solid transparent;
  text-align: center;
  z-index: 1;
}

/* Hover Effect: Lifts up and shows a color bar at the bottom */
.process-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--brand-color);
}

/* 2. The Step Number (Watermark Style) */
.step-number {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 6rem;
  font-weight: 900;
  color: #f3f4f6; /* Very light grey */
  line-height: 1;
  z-index: -1; /* Puts it behind the text */
  opacity: 0.5;
  font-family: sans-serif;
  user-select: none;
}

/* 3. The Icon Circle */
.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--brand-color-light);
  color: var(--brand-color);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto; /* Centers the icon */
  transition: transform 0.3s ease;
}

/* Rotate icon slightly on hover */
.process-step-card:hover .step-icon {
  transform: rotateY(180deg);
  background-color: var(--brand-color);
  color: #ffffff;
}

/* 4. Typography Tweaks */
.process-step-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.process-step-card p {
  color: #6c757d; /* Muted text */
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}