/* NEW CSS START */
/* ============ Hero section css start =============
/* Section Container */
.guide-container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.guide-container h2 {
    position: relative;
    margin: 2rem 0;
    /* Add padding to make room for the line at the bottom */
    padding: 0 0 15px 0;
}

.guide-container h2::after {
    content: "";
    position: absolute;
    left: 0;
    /* This ensures it always stays at the very bottom */
    bottom: 0;
    width: 80px;
    height: 5px;
    background-color: #10B981;
}

.banner-section {
    background-color: #0f4c45 !important;

}

.banner-container {
    display: flex;
    gap: 30px;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
}

/* Content Targeting */
.banner-content h1 {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
}

.banner-content p {
    font-size: 15px !important;
    color: #cfe5df !important;
    margin-bottom: 18px !important;
    line-height: 1.7 !important;
}

/* Button Targeting */
.banner-btn-group a.banner-btn-main {
    padding: 12px 24px !important;
    background-color: #1ec97f !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.banner-btn-group a.banner-btn-main:hover {
    background-color: #18a96a !important;
}

.banner-btn-group a.banner-btn-alt {
    padding: 12px 24px !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #cfe5df !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Image Wrapper */
.banner-media img {
    width: 100% !important;
    height: auto !important;
    padding: 0 0 10px 0 !important;
}

/* Responsive adjustments targeting the tags */
@media (max-width: 768px) {
    .banner-content {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .banner-content h1 {
        font-size: 30px !important;
    }

    .banner-btn-group {
        justify-content: center !important;
    }
}

/*============ Hero section css end =============*/
/* LIST */
.cost-list li {
    margin-bottom: 10px;
}

/* HIDDEN CARDS GRID */
.hidden-costs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* FIXED 3 columns */
    gap: 20px;
    margin-bottom: 30px;
}

/* Removes margins from all headings within the guide grid */
.hidden-costs :is(h1, h2, h3, h4, h5, h6, strong) {
    margin: 0;
	font-size: 1.2rem !important;
    line-height: 25px !important;
}

/* CARD */
.hidden-item {
    background: #f5f3ee;
    padding: 20px;
    border-radius: 6px;
    transition: 0.3s;
}

/* HIDE FULL CONTENT */
.full {
    display: none;
}

/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.read-more {
    color: #0073e6;
    cursor: pointer;
    font-size: 14px;
}

.toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #0073e6;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* CTA */
.cta-btn {
    margin-top: 30px;
    padding: 10px 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}


/* --- STYLES: FMS GUIDE SECTION --- */

.fms-main-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(20px, 5vw, 50px);
    /* Responsive padding */
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1f2d3d;
}

.fms-main-title {
    font-size: clamp(24px, 4vw, 32px);
    /* Responsive font */
    margin-bottom: 25px;
    line-height: 1.2;
}

/* --- INTRO LAYOUT --- */
.fms-intro-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 15px;
}

.fms-intro-text-col {
    flex: 1.5;
}

.fms-intro-image-col {
    flex: 1;
    text-align: right;
}

.fms-responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Media Query for Intro */
@media (max-width: 768px) {
    .fms-intro-row {
        flex-direction: column;
    }

    .fms-intro-image-col {
        order: -1;
        text-align: center;
        width: 100%;
    }
}

/* --- GRID SYSTEM --- */
.fms-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
    /* Prevents stretching */
    margin-bottom: 30px;
}

/* --- CARD DESIGN --- */
.fms-card {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eef2f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Override for your existing pp-card to ensure it behaves like the others */
.fms-full-width-override {
    cursor: pointer;
    margin-top: 20px;
    padding: 30px !important;
    /* Ensure consistent padding */
}

/* THEMES */
.fms-theme-light {
    background-color: #e6f4ea;
    border: none;
}

.fms-theme-dark {
    background: #008751 !important;
    border: none;
    color: white;
}

/* Green Card Section with show more */
.fms-theme-dark h3 {
    color: white !important;
}

.fms-white {
    color: #ffffff !important;
}

/* --- THE TRUNCATION LOGIC (THE FIX) --- */
.fms-collapse-content {
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* Using !important to ensure theme paragraphs don't break the clamp */
.fms-clamp-5 {
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Remove clamp when active */
.js-fms-expand.is-active .fms-clamp-5 {
    -webkit-line-clamp: initial !important;
    display: block !important;
}

/* --- BUTTON UI --- */
.fms-card-footer {
    margin-top: 20px;
}

.fms-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #008751;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 135, 81, 0.2);
}

.fms-btn-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Button for Dark Theme */
.fms-btn-alt {
    background: #fff;
    color: #008751 !important;
}

.fms-btn-alt .fms-btn-icon {
    background: rgba(0, 135, 81, 0.1);
}

/* Active Button State */
.js-fms-expand.is-active .fms-btn {
    background: #333 !important;
    color: #fff !important;
}

/* Responsive Font for Body */
p {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.6;
}

/* --- DESIGN REFRESH --- */
.itc-outer-wrapper {
    background-color: #ffffff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.itc-main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.itc-header-block {
    margin-bottom: 40px;
    text-align: left;
}

.itc-main-title {
    font-size: clamp(24px, 4vw, 36px);
    color: #004d31;
    font-weight: 700;
    margin-bottom: 15px;
}

.itc-accent-line {
    width: 80px;
    height: 5px;
    background: #00a651;
}

/* --- GRID & CARDS --- */
.itc-card-grid {
    display: grid;
    /* align-items: start is the key fix to prevent siblings from stretching */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

/* Apply margin: 0 to headings, strong, and p tags */
.itc-card-grid :is(h1, h2, h3, h4, h5, h6, strong, p) {
    margin: 0;
}

/* Apply font-size only to headings and strong tags */
.itc-card-grid :is(h1, h2, h3, h4, h5, h6, strong) {
    font-size: 1.2rem !important;
    line-height: 25px !important;
}

.itc-card-grid ul {
    margin: 0 0 0 30px;
}

.itc-modern-card {
    background: #eef4ff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid transparent;
    height: auto;
    /* Changed from 100% to auto for independent growth */
}

.itc-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.itc-visual-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.itc-visual-icon img {
    width: 100px;
    height: auto;
}

.itc-card-heading {
    font-size: 20px;
    color: #1a2c4e;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --- CLAMP LOGIC --- */
.itc-collapse-wrapper {
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Default state: Clamp to 2 lines */
.itc-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Active state: Remove clamp when card is active */
.itc-modern-card.is-active .itc-clamp-2 {
    -webkit-line-clamp: unset;
    display: block;
}

.itc-para {
    line-height: 1.6;
    color: #5b6a82;
    font-size: 15px;
    margin: 0;
}

/* --- BUTTON/LINK STYLE --- */
.itc-footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.itc-link-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.itc-btn-text {
    font-weight: 600;
    font-size: 15px;
    color: #00a651;
}

.itc-btn-icon {
    font-size: 18px;
    color: #00a651;
    transition: transform 0.3s ease;
}

/* Active State Design */
.itc-modern-card.is-active .itc-link-box {
    background: #00a651 !important;
}

.itc-modern-card.is-active .itc-btn-text,
.itc-modern-card.is-active .itc-btn-icon {
    color: #ffffff !important;
}



.itc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.itc-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #004d31;
    margin-bottom: 20px;
}

.itc-operating-section .itc-section-intro {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 35px;
}

/*  New Tick Css Start Added By Divya 1-05-2026*/
.itc-checklist li {
  display: flex;    
  align-items: flex-start; 
  gap: 10px;
  list-style: none;
  margin-bottom: 12px;
}

/* icon */
.itc-checklist li::before {
  content: '';
  flex-shrink: 0;  
  width: 20px;
  height: 20px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2328a745'/%3E%3Cpath d='M6.173 12.727L2.4 8.954l1.414-1.414 2.36 2.36 5.657-5.657 1.414 1.414z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 8px;
}

/* text fix */
.itc-checklist li {
  word-break: normal;
  overflow-wrap: break-word;
}

/* IMPORTANT: allow text to take full width */
.itc-checklist li > * {
  flex: 1;
  min-width: 0;
}

.itc-text-content strong {
    color: #061C3D !important;
    font-weight: 700;
}
/*  New Tick Css End */

.inventory-card {
    width: 350px;
    background: #eee;
    padding: 20px;
    border-radius: 6px;
    font-family: Arial;
    transition: 0.3s;
}

.card-icon {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.inventory-card h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.card-content ul {
    padding-left: 20px;
}

.full {
    display: none;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.read-more {
    color: #01924F;
    cursor: pointer;
}

.toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #01924F;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* ACTIVE STATE */
.inventory-card.active .short {
    display: none;
}

.inventory-card.active .full {
    display: block;
}

.inventory-card.active .read-more {
    display: none;
}

.main-titles {
    text-align: left !important;
}

.roi-btn {
    display: inline-block;
    background-color: #00a86b;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.roi-btn:hover {
    background-color: #008f5a;
    color: #e6fff4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 107, 0.4);
}

.roi-btn:active {
    transform: translateY(1px);
}

/* ic-native-solution */


/* === Modern Feature Tags === */

.faqs-header {
    margin-bottom: 40px;
}

.faqs-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 12px;
}

.faqs-underline {
    width: 80px;
    height: 5px;
    background: #00a86b;
    border-radius: 3px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faqs-list p {
    margin: 0;
    color: #555;
    line-height: 1.65;
    font-size: 1.02rem;
}

.faqs-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqs-question{
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3c34;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
	margin: 0;
}

.faqs-question:hover {
    background: #f0f9f4;
}

.faqs-question.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faqs-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.faqs-answer.open {
    padding: 20px 25px;
    max-height: 200px;
}

.faqs-icon {
    font-size: 1.4rem;
    color: #00a86b;
    transition: transform 0.3s ease;
}

.faqs-question.active .faqs-icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
    .faqs-container {
        padding: 30px 20px;
    }

    .faqs-title {
        font-size: 2rem;
    }
}

.it-costs-header {
    margin-bottom: 50px;
}

.it-costs-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 12px;
}

.it-costs-underline {
    width: 80px;
    height: 5px;
    background: #00a86b;
    margin: 0 auto;
    border-radius: 3px;
}

.it-costs-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.it-costs-card {
    background: #f0f6ff;
    border-radius: 16px;
    padding: 35px 25px 30px;
    width: 340px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.it-costs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.it-costs-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.15);
}

.it-costs-icon img {
    width: 70px;
    height: 70px;
}

.it-costs-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 15px;
}

.it-costs-card-description {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 30px;
    min-height: 110px;
}

.it-costs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #00a86b;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #00a86b;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.it-costs-btn:hover {
    background: #00a86b;
    color: white;
    transform: translateX(5px);
}

.it-costs-btn span {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .it-costs-cards {
        gap: 25px;
    }

    .it-costs-card {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .it-costs-container {
        padding: 30px 20px;
    }

    .it-costs-title {
        font-size: 2rem;
    }
}

.data-owner-section {
    display: flex;
    flex-wrap: wrap;
}

.data-owner-content {
    flex: 1;
    min-width: 300px;
}

.data-owner-image-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-owner-image-wrapper {
    background: #f0f9f4;
    border-radius: 20px;
    padding: 30px 20px 20px;
    box-shadow: 0 8px 25px rgba(0, 168, 107, 0.15);
    max-width: 380px;
    position: relative;
}

.data-owner-paragraph {
    margin-bottom: 20px;
    font-size: 1.02rem;
    color: #444;
}

.data-owner-bottom-paragraph {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #eee;
    font-size: 1.02rem;
    color: #444;
}

/* Image Styling */
.data-owner-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .data-owner-section {
        flex-direction: column;
    }

    .data-owner-image-wrapper {
        max-width: 100%;
    }
}

/* Card Styling */
.guide-card {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 10px 25px;
    cursor: pointer; /* Added so the whole card shows a pointer hand */
}

/* Left Green Accent Border */
.guide-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background-color: #00a651;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Button Styling */
.guide-btn {
    background-color: #008f53;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.guide-btn:hover {
    background-color: #006b3e;
}

.guide-btn span {
    font-size: 18px;
    line-height: 0;
}

/* --- ADDED FOR TEXT TRIMMING --- */
/* Closed State: Trims text to 5 lines */
.guide-card .guide-content {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Adjust this to show more/less default text */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Open State: Shows all text */
.guide-card.is-expanded .guide-content {
    display: block;
    -webkit-line-clamp: unset;
}

.cost-of-body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.5;
    margin: 0;
    padding: 40px;
}

/* Headings */
.cost-of-main-title {
    color: #0d4d38;
    /* Dark Green */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cost-of-margin-top {
    margin-top: 50px;
}

/* Paragraphs */
.cost-of-intro-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.cost-of-text {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 20px;
}

/* Table Design */
.cost-of-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cost-of-th {
    border: 1px solid #a2d5c6;
    padding: 20px 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.cost-of-td {
    border: 1px solid #a2d5c6;
    padding: 15px;
    font-size: 13px;
    color: #444;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
}

/* First Column Background */
.cost-of-highlight-col {
    background-color: #e8f5f1;
    font-weight: 600;
    color: #0d4d38;
}

/* CTA Button */
.cost-of-cta-btn {
    background-color: #008f53;
    /* Button Green */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.cost-of-cta-btn:hover {
    background-color: #006b3e;
}

/* Scannability adjustments */
.cost-of-table tr:nth-child(even) {
    background-color: #fafafa;
}

.vendor-spi-body {
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 40px;
}

/* Titles */
.vendor-spi-main-title {
    color: #004d40;
    /* Dark Teal */
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.vendor-spi-title-underline {
    width: 60px;
    height: 4px;
    background-color: #4caf50;
    /* Green bar */
    margin-bottom: 30px;
}

.vendor-spi-sub-title {
    color: #004d40;
    font-size: 22px;
    margin-top: 40px;
    font-weight: 700;
}

/* Text Content */
.vendor-spi-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.vendor-spi-intro-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* --- Table Header Titles --- */
.vendor-spi-main-title,
.vendor-spi-sub-title {
    color: #004d40;
    /* Dark Teal */
    font-weight: 700;
    margin-bottom: 15px;
}

.vendor-spi-text,
.vendor-spi-intro-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Table Design --- */
.vendor-spi-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    /* Thin mint green border as per previous design */
    border: 1px solid #a7f3d0;
    background-color: #ffffff;
}

/* --- Table Headers (Th) --- */
.vendor-spi-th {
    /* Light mint background for headers */
    background-color: #f6fcf9;
    color: #003144;
    /* Dark Navy text */
    font-weight: 700;
    font-size: 18px;
    padding: 25px 15px;
    border: 1px solid #a7f3d0;
    text-align: center;
}

/* --- Standard Data Cells (Td) --- */
.vendor-spi-td {
    /* Pure white background for data columns */
    background-color: #ffffff;
    padding: 20px 15px;
    border: 1px solid #a7f3d0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

/* --- Provider Type Column (First Column) --- */
.vendor-spi-highlight-col {
    /* Light mint background to distinguish labels */
    background-color: #f0fdf9 !important;
    font-weight: 600;
    color: #111827;
    text-align: left;
    /* Left-aligned for better readability */
}

/* --- Hover Effect --- */
.vendor-spi-table tbody tr:hover td {
    background-color: #f9fffb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vendor-spi-th {
        font-size: 15px;
        padding: 15px 10px;
    }

    .vendor-spi-td {
        font-size: 13px;
    }
}



.measuring-rio-main-title {
    color: #064e3b;
    /* Dark Navy/Green tone from image */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* Flexbox Row Box */
.measuring-rio-box {
    display: flex;
    border: 1.5px solid #10b981;
    /* Green border */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Left Section (White Background) */
.measuring-rio-content-left {
    flex: 1.2;
    /* Takes slightly more space */
    padding: 0px 40px;
    display: flex;
    align-items: center;
    background-color: #fff;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

/* Right Section (Green Background) */
.measuring-rio-content-right {
    flex: 1;
    background-color: #059669;
    /* Solid Green */
    padding: 0px 40px;
    color: #ffffff;
}



.measuring-rio-formula-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.95;
}

/* CTA Button */
.measuring-rio-btn {
    background-color: #059669;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.measuring-rio-btn:hover {
    background-color: #047857;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .measuring-rio-box {
        flex-direction: column;
    }

    .measuring-rio-content-left,
    .measuring-rio-content-right {
        padding: 25px;
    }
}

/* Typography */
.jfy-cost-title {
    color: #064e3b;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.jfy-cost-underline {
    width: 80px;
    height: 4px;
    background-color: #10b981;
    margin-bottom: 30px;
}

.jfy-cost-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4b5563;
}

.jfy-cost-subheading {
    color: #064e3b;
    font-size: 26px;
    font-weight: 700;
    margin: 50px 0 60px 0;
}

/* Cards Section Layout */
.jfy-cost-cards-container {
    position: relative;
    padding-top: 20px;
}

/* The horizontal gray line behind numbers */
.jfy-cost-progress-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.jfy-cost-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.jfy-cost-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle Numbers */
.jfy-cost-number {
    background-color: #059669;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    /* Slightly rounded squares like image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gray Cards */
.jfy-cost-card-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 25px 20px;
    width: 100%;
    min-height: 200px;
    box-sizing: border-box;
}

.jfy-cost-card-header {
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.jfy-cost-example {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .jfy-cost-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .jfy-cost-progress-line {
        display: none;
        /* Hide line on tablet/mobile */
    }
}

@media (max-width: 500px) {
    .jfy-cost-grid {
        grid-template-columns: 1fr;
    }
}

/* Table Header Title */
.fms-table-main-title {
    color: #004d40;
    /* Dark Teal */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    /* Clean sans-serif like the image */
}

.fms-table-description {
    color: #555;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Table Design Overhaul */
.fms-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    /* Smooth corners for the wrapper */
}

.fms-table-element {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    /* This matches the thin mint border in your image */
    border: 1px solid #a7f3d0;
    table-layout: fixed;
    /* Ensures even column widths */
}

/* Header Cells (Th) */
.fms-table-th {
    /* Background for the header row */
    background-color: #f6fcf9;
    color: #003144;
    /* Dark Navy text from image */
    font-weight: 700;
    font-size: 20px;
    padding: 30px 20px;
    border: 1px solid #a7f3d0;
    text-align: center;
}

/* Data Cells (Td) */
.fms-table-td {
    padding: 22px 25px;
    border: 1px solid #a7f3d0;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.5;
    text-align: center;
    /* Center align like the image */
    vertical-align: middle;
}

/* First Column (The "Cost Factor" labels) */
.fms-table-label {
    font-weight: 600;
    color: #111827;
    /* Light mint background for the first column as seen in image */
    background-color: #f0fdf9;
}

/* Improvements for Mobile */
@media (max-width: 768px) {
    .fms-table-th {
        font-size: 16px;
        padding: 15px 10px;
    }

    .fms-table-td {
        font-size: 13px;
        padding: 15px 10px;
    }
}

/* --- Table Header (Top Row) --- */
.fms-table-th {
    /* Keep the light mint header background from the image */
    background-color: #f6fcf9;
    color: #003144;
    font-weight: 700;
    font-size: 20px;
    padding: 30px 20px;
    border: 1px solid #a7f3d0;
    text-align: center;
}

/* --- Default Cell Style (USA & Global Columns) --- */
.fms-table-td {
    /* Set the background to pure white as requested */
    background-color: #ffffff;
    padding: 22px 25px;
    border: 1px solid #a7f3d0;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

/* --- Cost Factor Column (First Column) --- */
.fms-table-label {
    font-weight: 600;
    color: #111827;
    /* This keeps the contrast for the first column */
    background-color: #f0fdf9;
}

/* --- Hover Effect --- */
/* Optional: Keeps the row highlight subtle when hovering */
.fms-table-element tbody tr:hover td {
    background-color: #f9fffb;
}

/* Header Styles */
.how-ai-main-title {
    color: #064e3b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-ai-title-underline {
    width: 60px;
    height: 4px;
    background-color: #10b981;
    margin-bottom: 30px;
}

.how-ai-intro-paragraph {
    font-size: 15px;
    margin-bottom: 20px;
    color: #4b5563;
}

.how-ai-section-heading {
    color: #064e3b;
    font-size: 24px;
    font-weight: 700;
    margin: 50px 0 30px 0;
}

/* Feature Rows Layout */
.how-ai-feature-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

/* Alternating effect using Flex direction reverse */
.how-ai-reverse {
    flex-direction: row-reverse;
}

.how-ai-feature-media {
    flex: 1;
    display: flex;
}

.how-ai-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-ai-feature-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    color: #334155;
}

/* Background Colors from Image */
.how-ai-bg-light-green {
    background-color: #e8f5e9;
    /* Light minty green */
}

.how-ai-bg-light-blue {
    background-color: #f1f8f3;
    /* Very light subtle green/blue */
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .how-ai-feature-row,
    .how-ai-feature-row.how-ai-reverse {
        flex-direction: column;
    }

    .how-ai-feature-info {
        padding: 25px;
    }
}



.pp-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #008751;
    /* Green Accent */
    font-family: 'Inter', sans-serif;
}

.pp-card-content {
    padding: 40px 45px;
}

.pp-card-title {
    color: #0d2b52;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.pp-card-text {
    color: #54667a;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.pp-learn-more {
    display: inline-flex;
    align-items: center;
    color: #00a86b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.pp-arrow {
    margin-left: 8px;
    font-size: 1.4rem;
}

.box {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 15px;
}

.box p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.box a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.box a:hover {
    opacity: 0.8;
}

.explore-container {
    padding: 40px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
    text-align: left;
}

.two-column {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.two-column .text {
    flex: 1;
}

.two-column .text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.two-column .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.two-column .image img {
    max-width: 100%;
    height: auto;
}

.bottom-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }

    .two-column .image {
        margin-top: 20px;
    }
}

.cost-section {
    padding: 0px 20px;
}

.cost-container h2 {
    font-size: 26px;
    color: #0d3b2e;
    margin-bottom: 15px;
}

.cost-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.Guide-container .cost-section .cost-list li {
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-left: 0px !important;
}

.hidden-costs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* FIXED 3 columns */
    gap: 20px;
    margin-bottom: 30px;
}

.hidden-item {
    background-color: #e6f4ea;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hidden-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.hidden-item p {
    font-size: 14px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #01924F;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.implementation-container h2 {
    font-size: 28px;
    color: #0d3b2e;
    margin-bottom: 15px;
}

.implementation-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.implementation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.implementation-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-icon {
    font-size: 28px;
    color: #22c55e;
    /* green accent */
}

.implementation-card h3 {
    font-size: 20px;
    color: #0d3b2e;
    margin: 0;
}

.implementation-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.implementation-card a {
    text-decoration: none;
    font-weight: bold;
    color: #219ebc;
    transition: color 0.3s ease;
}

.implementation-card a:hover {
    color: #ffb703;
}


/* Main Content */
.content {
    flex: 3;
    padding-right: 40px;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0d3b2e;
}



.content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #01924F;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.ts-buttons {
    display: flex;
    gap: 15px;
    /* space between buttons */
    align-items: center;
    flex-wrap: wrap;
    /* responsive */
}

.ts-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Primary button (green) */
.ts-btn-primary {
    background-color: #22c55e;
    color: #fff;
}

/* Secondary button (outline) */
.ts-btn-secondary {
    border: 1px solid #22c55e;
    color: #22c55e;
    background-color: transparent;
}

/* Hover effects */
.ts-btn-primary:hover {
    background-color: #16a34a;
}

.ts-btn-secondary:hover {
    background-color: #22c55e;
    color: #fff;
}

/* --- Base Icon Box Style (Closed State) --- */
.feature-drive-icon-box {
    width: 45px;
    height: 45px;
    /* This is the light greenish background when closed */
    background-color: #e9f7ef;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: background-color 0.3s ease;
    /* Smooth color transition */
}

/* --- ACTIVE STATE: Only changes the Icon Box background --- */
/* When the parent has the .feature-drive-active class, change the icon box to white */
.feature-drive-active .feature-drive-icon-box {
    background-color: #ffffff !important;
}

/* --- Optional: Section Background --- */
/* If you want the whole accordion item to stay light green when open */
.feature-drive-accordion-item.feature-drive-active {
    background-color: #f1faf5;
    /* Keeps the light green theme */
}

/* Ensure images inside the icon box fit properly */
.feature-drive-icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Target h3 under this class */
.feature-drive-accordion-item h3 {
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
    color: #111827;
    font-weight: 600;
}

/* Target p tag under this class */
.feature-drive-accordion-item p {
    margin: 0;
}

/* START TOC*/
/* --- Desktop Sticky Sidebar --- */
.sidebar {
    position: sticky;
    top: 180px;
    /* Removed flex and fixed height so it naturally hugs the content and leaves empty space at the bottom */
}

.toc-desktop {
    margin: 10px 0;
    /* Caps the height to leave room for the top offset (180px) and your 230px CTA block, plus a 40px safe buffer */
    max-height: calc(100vh - 450px); 
    background: #fcfcfc;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 0 15px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.toc-desktop::-webkit-scrollbar {
    width: 4px;
}

.toc-desktop::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

/* --- Sidebar CTA Wrapper (New Logic) --- */
.sidebar-bottom-cta {
    margin-top: 10px;
    text-align: center;
}

.sidebar-bottom-cta img {
    width: 100%;
    max-width: 500px;
    height: 150px;
    object-fit: cover; /* Keeps image looking good within 500x150 */
    display: block;
    margin: 10px auto auto; 
}

.btn-schedule-call {
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    width: 100%;
    background-color: #00a651;
    color: #ffffff;
    border: 1px solid #00a651;
    box-sizing: border-box;
}

.btn-schedule-call:hover {
    background-color: #008f45;
    border-color: #008f45;
    color: #ffffff;
}

/* --- Mobile & Tablet Logic Fix --- */
.toc-mobile-btn {
    position: fixed !important;
    right: 15px !important;
    top: 180px !important;
    background: #01924F !important;
    color: #ffffff !important;
    padding: 10px 16px !important;
    border-radius: 30px !important;
    font-weight: bold !important;
    /* Highest layer so it stays clickable */
    z-index: 100000 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 4px 12px rgba(1, 146, 79, 0.3) !important;
}

.toc-mobile {
    position: fixed !important;
    top: 240px !important;
    right: 5% !important;
    left: 5% !important;
    width: 90% !important;
    height: auto !important;
    max-height: 70vh !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 0 15px !important;
    overflow-y: auto !important;
    /* Sits above the backdrop but below the button */
    z-index: 99999 !important;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* --- Typography & Alignment --- */
.toc-header {
    font-weight: 700;
    color: #024430;
    text-align: left;
    padding: 15px 0 10px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    background: #fcfcfc;
    z-index: 2;
    font-size: 1.25rem;
}

.toc-desktop ul,
.toc-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-desktop ul li,
.toc-mobile ul li {
    margin: 10px 0 !important;
}

.toc-desktop ul li a,
.toc-mobile ul li a {
    text-decoration: none;
    color: #333333;
    display: block;
    padding: 0 10px;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
    word-break: break-word;
    text-align: left;
}

.toc-desktop ul li a:hover,
.toc-mobile ul li a:hover {
    color: #209F65;
    background: #f7f7f7;
}

.toc-desktop ul li a.active,
.toc-mobile ul li a.active {
    color: #01924F;
    background: #f0fdf4;
    border-left: 4px solid #01924F;
    font-weight: 600;
}

.toc-backdrop {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.6) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    backdrop-filter: blur(4px) !important;
    /* Layer 1: The Blur */
    z-index: 99998 !important;
}

@media (max-width: 1023px) {
    .toc-desktop {
        display: none;
    }
}

@media (min-width: 1024px) {
    .toc-mobile,
    .toc-mobile-btn,
    .toc-backdrop {
        display: none !important;
    }
}
/* END TOC*/


/* --- START: Total Cost of Ownership (TCO) CSS --- */

/* LAYOUT WRAPPER */
.wp-guide-implementation {
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wp-guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wp-guide-intro {
    margin-bottom: 40px;
}

.wp-guide-main-title {
    font-size: 28px;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.wp-guide-description {
    color: #6b7a8c;
    font-size: 16px;
    line-height: 1.5;
}

/* GRID SYSTEM */
.wp-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

/* CARD STYLING */
.wp-guide-card {
    background: #ffffff;
    border: 1px solid #e6ece8;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.wp-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #2e7d32;
}

/* CARD HEADER */
.wp-guide-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Removes margins from all headings within the guide grid */
.wp-guide-grid :is(h1, h2, h3, h4, h5, h6, strong) {
    margin: 0;
	font-size: 1.2rem !important;
    line-height: 25px !important;
}

.wp-guide-icon {
    width: 44px;
    height: 44px;
    background: #e6f4ea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wp-guide-card-header h3,
.wp-guide-card-header b {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
}

.wp-guide-card-header p {
	margin: 0;
}

/* CONTENT & TRUNCATION LOGIC */
.wp-guide-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7a8c;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Shows exactly 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-guide-card.is-expanded .wp-guide-content p {
    -webkit-line-clamp: unset;
    display: block;
}

/* FOOTER */
.wp-guide-card-footer {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp-guide-read-more {
    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-guide-card.is-expanded .wp-guide-read-more {
    opacity: 0;
}

.wp-guide-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid #e6ece8;
    background: #fff;
    border-radius: 50%;
    color: #2e7d32;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-guide-card.is-expanded .wp-guide-toggle {
    background: #2e7d32;
    color: #fff;
    transform: rotate(180deg);
}


/* If using Flexbox on the container */
.wp-guide-cards-container {
    display: flex;
    align-items: flex-start;
    /* This prevents the "stretching" effect */
    flex-wrap: wrap;
}

/* OR: Apply it directly to the card itself */
.wp-guide-card {
    align-self: flex-start;
    height: fit-content;
}

/* --- START Measuring ROI, Payback Period, and Break-Even Timelines --- */

.ic-native-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* === Typography === */
.ic-native-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    line-height: 1.3 !important;
    color: #024430 !important;
}

.ic-native-intro {
    text-align: center !important;
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    color: #135C58 !important;
    max-width: 900px !important;
    margin: 0 auto 50px auto !important;
}

/* === Modern Feature Tags === */
.ic-native-features {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.ic-native-feat-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0F4C45 !important;
    margin-bottom: 20px !important;
}

.ic-native-tags {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.ic-native-tag {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 76, 69, 0.15) !important;
    color: #0F4C45 !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.ic-native-tag::before {
    content: '✓' !important;
    color: #00A651 !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
}

/* === Interactive "Sliding Door" Grid === */
.ic-native-grid-box {
    margin-top: 50px !important;
}

.ic-native-grid-title {
    text-align: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 40px !important;
    color: #0F4C45 !important;
}

/* Row Container */
.ic-native-row {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 76, 69, 0.15) !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: stretch !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* Left Side: The Pain Point */
.ic-native-pain {
    flex: 1 !important;
    padding: 20px 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    /* Spaces text and mobile chevron */
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #135C58 !important;
    line-height: 1.5 !important;
    transition: color 0.3s ease !important;
}

.ic-native-chevron {
    display: none !important;
    /* Hidden on desktop */
}

/* Right Side: The Hidden Solution */
.ic-native-solution {
    width: 0 !important;
    opacity: 0 !important;
    background: #00A651 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease !important;
}

/* CRITICAL: Fixed min-width prevents text wrapping/squishing during slide animation */
.ic-native-sol-inner {
    width: 450px !important;
    min-width: 450px !important;
    padding: 20px 30px !important;
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

/* === Desktop Hover Interaction (> 900px) === */
@media (min-width: 901px) {
    .ic-native-row {
        cursor: default !important;
        /* No pointer cursor since it's purely hover */
    }

    .ic-native-row:hover {
        border-color: #00A651 !important;
        box-shadow: 0 10px 25px rgba(0, 166, 81, 0.15) !important;
    }

    .ic-native-row:hover .ic-native-pain {
        color: #0F4C45 !important;
    }

    .ic-native-row:hover .ic-native-solution {
        width: 50% !important;
        /* Slides the door open */
        opacity: 1 !important;
    }
}

/* === Mobile Single-Open Accordion Interaction (<= 900px) === */
@media (max-width: 900px) {
    .ic-native-row {
        flex-direction: column !important;
        position: relative !important;
        cursor: pointer !important;
        /* Pointer only on mobile */
    }

    .ic-native-pain {
        padding: 20px !important;
    }

    /* Chevron icon for mobile affordance */
    .ic-native-chevron {
        display: block !important;
        width: 12px !important;
        height: 12px !important;
        border-right: 2px solid #00A651 !important;
        border-bottom: 2px solid #00A651 !important;
        transform: rotate(45deg) !important;
        transition: transform 0.3s ease !important;
        margin-left: 15px !important;
        flex-shrink: 0 !important;
    }

    .ic-native-solution {
        width: 100% !important;
        max-height: 0 !important;
        /* Uses height instead of width for mobile dropdown */
        transition: max-height 0.4s ease, opacity 0.3s ease !important;
    }

    .ic-native-sol-inner {
        width: 100% !important;
        min-width: 0 !important;
        padding: 20px !important;
        /* Padding bottom for the text */
    }

    /* Active State (Triggered by click) */
    .ic-native-row.active {
        border-color: #00A651 !important;
    }

    .ic-native-row.active .ic-native-solution {
        max-height: 300px !important;
        /* Expands downwards */
        opacity: 1 !important;
    }

    .ic-native-row.active .ic-native-chevron {
        transform: rotate(225deg) !important;
        /* Flips arrow up */
    }
}

/* Extra small mobile fix */
@media (max-width: 400px) {
    .ic-native-title {
        font-size: 2rem !important;
    }

    .ic-native-tag {
        width: 100% !important;
        justify-content: center !important;
    }
}


/* --- END Measuring ROI, Payback Period, and Break-Even Timelines --- */


/* ---START Customization and Integration Costs for Scalable Fleets --- */

/* Content ko shuru mein chhupa do */


/* Jab 'match-fleet-active' class ho, tab dikhao */
.match-fleet-active .match-fleet-acc-content {
    display: block;
}

/* Baaki styles wahi rahenge jo aapke paas hain */
.match-fleet-acc-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}



/* Header */
.match-fleet-main-title {
    color: #064e3b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.match-fleet-underline {
    width: 70px;
    height: 4px;
    background-color: #10b981;
    margin-bottom: 30px;
}

.match-fleet-intro {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Layout Grid */
.match-fleet-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

/* Left Image */
.match-fleet-visual img {
    width: 100%;
    border-radius: 15px;
    display: block;
}


.match-fleet-acc-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
}

.match-fleet-acc-header h3{
	font-size: 14px !important;
    color: #0f172a !important;
    /* padding: 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    cursor: pointer;
    font-weight: 600 !important;
	line-height: 20px !important;
	margin: 0px;
}

/* Active State Styling (Light Green Box) */
.match-fleet-active {
    background-color: #ecfdf5;
    border-color: #d1fae5;
}



/* Inner White Cards inside Accordion */
.match-fleet-inner-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #10b981;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

.match-fleet-inner-card ul {
    margin: 0 0 0 10px;
}

.match-fleet-icon {
    font-size: 20px;
    color: #64748b;
}

.match-fleet-acc-content {
    padding: 0 20px 20px 20px;
    display: none;
    /* Add this line */
}



/* Mobile Responsive */
@media (max-width: 850px) {
    .match-fleet-content-grid {
        grid-template-columns: 1fr;
    }
}

/* ---END Matching Fleet Software Costs to Business Size and Needs --- */


/* ---START:  FEATURE-DRIVEN ACCORDION STYLES --- */

.feature-drive-main-title {
    color: #064e3b;
    /* Dark Green */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-drive-underline {
    width: 80px;
    height: 4px;
    background-color: #10b981;
    margin-bottom: 30px;
}

.feature-drive-intro-text {
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Accordion Styles */
.feature-drive-accordion-wrapper {
    margin-top: 40px;
}

.feature-drive-accordion-item {
    border: 1.5px solid #a7f3d0;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Background change when active */
.feature-drive-accordion-item.feature-drive-active {
    background-color: #ecfdf5;
}

.feature-drive-accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.feature-drive-icon-box {
    width: 45px;
    height: 45px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid #d1fae5;
}

.feature-drive-icon-box img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.feature-drive-accordion-title {
    flex-grow: 1;
    color: #111827;
    font-weight: 600;
    font-size: 16px;
}

/* Arrow Icon */
.feature-drive-arrow {
    width: 12px;
    height: 12px;
    border-right: 2.5px solid #059669;
    border-bottom: 2.5px solid #059669;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.feature-drive-active .feature-drive-arrow {
    transform: rotate(-135deg);
}

/* Content logic */
.feature-drive-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.feature-drive-active .feature-drive-accordion-content {
    max-height: 1000px;
    /* Large enough to hold text */
}

.feature-drive-content-inner {
    padding: 0 25px 25px 90px;
    /* Aligned with title */
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
}

.feature-drive-content-inner p {
    margin-bottom: 15px;
}

/* ---END:  FEATURE-DRIVEN ACCORDION STYLES --- */


.itc-checklist p {
    margin: 0px !important;
}

.header-row h3 {
    margin: 0px;
    font-size: 1.25rem;
    color: #fff;
}


/* ICT VTABS [Vertical cards] START (Used in eSourcing Page First) Added by Taqi 15/4/26 */
/* === Core Section Layout === */
.ict-vtabs-section {
    margin: 0 auto;
}

.ict-vtabs-section * {
    box-sizing: border-box;
}

/* Intro Paragraph Styling */
.ict-vtabs-section>p {
    color: #135C58;
}

.ict-vtabs-container {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 35px;
    align-items: flex-start;
}

/* === Left Column: The Modern Capsule Timeline === */
.ict-vtabs-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(15, 76, 69, 0.08);
    border-radius: 50px;
    padding: 20px 10px;
    box-shadow: 0 8px 25px rgba(15, 76, 69, 0.05);
    z-index: 1;
}

/* The Continuous Connecting Track */
.ict-vtabs-nav::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: rgba(19, 92, 88, 0.25);
    z-index: -1;
}

/* The Buttons */
.ict-vtab-btn {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    border: 2px solid rgba(19, 92, 88, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #135C58;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 0 6px #FFFFFF;
}

/* Nav Hover & Active States */
.ict-vtab-btn:hover {
    background-color: #FFFFFF;
    border-color: #68ffb2;
    color: #0F4C45;
    transform: scale(1.05);
}

.ict-vtab-btn.active {
    background: #68ffb2;
    border-color: #68ffb2;
    color: #024430;
    box-shadow: 0 0 0 6px #FFFFFF, 0 4px 12px rgba(104, 255, 178, 0.4);
    transform: scale(1.1);
}

/* NEW: Visual pointer connecting active button towards the content */
.ict-vtab-btn.active::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #68ffb2;
    box-shadow: 0 0 8px #68ffb2;
    z-index: -1;
}

/* === Right Column: Content Panels === */
.ict-vtabs-content {
    position: relative;
    width: 100%;
}

.ict-vtab-panel {
    display: none;
    background: #0F4C45;
    border-radius: 12px;
    padding: 30px;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(15, 76, 69, 0.1);
    border: 1px solid rgba(104, 255, 178, 0.15);
}

/* NEW: Dynamic Universal Badge (e.g., "# 1") to link the content back to the number */
.ict-vtab-panel::before {
    content: "# " attr(data-index);
    display: inline-block;
    background: rgba(104, 255, 178, 0.15);
    color: #68ffb2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(104, 255, 178, 0.3);
    text-transform: uppercase;
}

.ict-vtab-panel.active {
    display: block;
    animation: ict-slide-fade 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Combined H3 and Strong Tag Styling */
.ict-vtab-panel h3,
.ict-vtab-panel strong {
    position: relative; /* Required for the ::after element */
    display: block; /* Forces inline tags like <strong> to handle multiline borders correctly */
    color: #68ffb2;
    font-weight: 700;
    font-size: 1.4rem !important;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    line-height: 1.3;
    /* border-bottom removed in favor of ::after */
}

/* The new ::after border logic */
.ict-vtab-panel h3::after,
.ict-vtab-panel strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* Keeps it spanning the full width */
    height: 1px; /* Same thickness as before */
    background-color: rgba(255, 255, 255, 0.1); /* Same color as before */
}

.ict-vtab-panel b {
    color: #68ffb2;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ict-vtab-panel p {
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0 0 15px 0;
}

.ict-vtab-panel ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ict-vtab-panel li {
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.5;
}

.ict-vtab-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #68ffb2;
    font-weight: 900;
    font-size: 1.1rem;
}

.ic-vtab-panel li {
  padding-left: 0px !important;
}
.ict-vtab-panel ol li::before {
    content: none;
}

/* === Footer Content === */
.ict-vtabs-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(15, 76, 69, 0.1);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ict-vtabs-footer p {
    color: #135C58;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes ict-slide-fade {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Persistent Mobile Responsiveness === */
@media (max-width: 768px) {
    .ict-vtabs-section {
        padding: 40px 15px;
    }

    .ict-vtabs-container {
        grid-template-columns: 55px 1fr;
        gap: 15px;
    }

    .ict-vtabs-nav {
        gap: 16px;
        padding: 15px 5px;
        border-radius: 40px;
    }

    .ict-vtab-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        box-shadow: 0 0 0 4px #FFFFFF;
    }

    .ict-vtab-btn.active {
        box-shadow: 0 0 0 4px #FFFFFF, 0 4px 12px rgba(104, 255, 178, 0.4);
    }

    /* Hide pointer on mobile */
    .ict-vtab-btn.active::after {
        display: none;
    }

    .ict-vtab-panel {
        padding: 20px 15px;
    }

    .ict-vtab-panel h3,
    .ict-vtab-panel strong {
        font-size: 1.25rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .ict-vtab-panel p,
    .ict-vtab-panel li {
        font-size: 0.95rem;
    }

    .ict-vtabs-footer {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* ICT VTABS [Vertical cards] END */


/* START: Custom Subheading + CTA Card Section | Added by Divya 16/4/26*/
.ui-cta-card {
    background-color: #0F4C45;
    color: #FFFFFF;
    padding: clamp(20px, 5vw, 40px);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-left: 6px solid #00A651;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
    transition: background-color 0.3s ease;
}

.ui-cta-card:hover {
    background-color: #135C58;
}

.ui-cta-card .ui-content-left {
    flex: 1 1 350px;
}

.ui-cta-card h3 {
    margin-top: 0;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    line-height: 1.3;
    color: #FFFFFF;
}

.ui-cta-card p {
    margin: 15px 0 25px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
}

.ui-cta-card a:not(.ui-btn) {
    color: #00A651;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ui-cta-card a:not(.ui-btn):hover {
    color: #FFFFFF;
}

.ui-cta-card .ui-btn {
    display: inline-block;
    background-color: #00A651;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 0px #024430;
}

.ui-cta-card .ui-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 166, 81, 0.3);
}

.ui-cta-card .ui-icon-wrapper {
    flex: 0 1 15%;
    display: flex;
    justify-content: center;
}

.ui-cta-card .ui-icon-placeholder {
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .ui-cta-card {
        text-align: center;
        justify-content: center;
    }

    .ui-cta-card .ui-icon-wrapper {
        order: -1;
        margin-bottom: 10px;
    }
}
/* START: Custom Subheading + CTA Card Section */


/* START: Custom Procurement Architecture Section */

/* END: Custom Procurement Architecture Section */

/* ==========================================================================
    CUSTOM PROCUREMENT ARCHITECTURE START (Used in Procurement Process Page)
    Added by Taqi 17/4/26
    ====================================================================== */
/* Core Component Reset & Wrapper */
.ict-p2p-viz-container,
.ict-p2p-viz-container * {
    box-sizing: border-box;
}
.ict-p2p-viz-container {
    background-color: #024430; 
    color: #FFFFFF; 
    border-radius: 8px;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-family: inherit;
    position: relative;
    z-index: 1; /* Protects against theme menu overlap */
}
.ict-p2p-viz-container h3,
.ict-p2p-viz-container strong {
    color: #00A651; 
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 166, 81, 0.3);
    padding-bottom: 1rem;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    clear: both;
}
.ict-p2p-viz-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
}
.ict-p2p-viz-controls-area {
    flex: 1 1 300px;
    background-color: #0F4C45; 
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.ict-p2p-viz-controls-area p {
    line-height: 1.6;
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}
.ict-p2p-viz-toggle-btn {
    background-color: #00A651; 
    color: #FFFFFF;
    border: none;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.ict-p2p-viz-toggle-btn:hover {
    background-color: #FFFFFF; 
    color: #0F4C45;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 166, 81, 0.4);
}
.ict-p2p-viz-desc-box {
    background-color: #135C58; 
    border-left: 4px solid #00A651;
    padding: 1.5rem;
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: auto; 
}
.ict-p2p-viz-desc-box.ict-state-active {
    opacity: 1;
    transform: scale(1.02);
}
.ict-p2p-viz-desc-box h3 {
    margin-top: 0;
    color: #00A651; 
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.ict-p2p-viz-desc-box .ict-p2p-viz-dynamic-text {
    line-height: 1.5;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}
.ict-p2p-viz-desc-box ul {
    margin: 0.75rem 0 0 0 !important;
    padding-left: 1.2rem !important;
    list-style-type: disc !important;
}
.ict-p2p-viz-desc-box li {
    margin-bottom: 0.5rem !important;
    color: #E2E8F0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}
.ict-p2p-viz-desc-box li::marker {
    color: #00A651;
}
.ict-p2p-viz-viewport {
    flex: 2 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px; 
    padding: 2rem 0;
    min-height: 320px;
    transition: min-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ict-p2p-viz-container.ict-state-expanded .ict-p2p-viz-viewport {
    min-height: 450px;
}
.ict-p2p-viz-layer-group {
    position: relative;
    width: clamp(220px, 30vw, 320px);
    height: clamp(220px, 30vw, 320px);
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ict-p2p-viz-layer-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 92, 88, 0.85); 
    border: 2px solid #0F4C45; 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.8), 0 0 10px rgba(2, 68, 48, 0.9);
    letter-spacing: 1px;
    cursor: default; 
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(2, 68, 48, 0.6);
}
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item {
    cursor: pointer;
}
.ict-p2p-viz-layer-item:nth-child(1) { transform: translateZ(60px); border-color: #00A651; } 
.ict-p2p-viz-layer-item:nth-child(2) { transform: translateZ(30px); }
.ict-p2p-viz-layer-item:nth-child(3) { transform: translateZ(0px); } 
.ict-p2p-viz-layer-item:nth-child(4) { transform: translateZ(-30px); }
.ict-p2p-viz-layer-item:nth-child(5) { transform: translateZ(-60px); border-color: rgba(255,255,255,0.2); }

.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:nth-child(1) { transform: translateZ(160px); }
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:nth-child(2) { transform: translateZ(80px); }
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:nth-child(3) { transform: translateZ(0px); }
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:nth-child(4) { transform: translateZ(-80px); }
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:nth-child(5) { transform: translateZ(-160px); }

.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item:hover, 
.ict-p2p-viz-layer-group.ict-state-exploded .ict-p2p-viz-layer-item.ict-state-focused {
    background-color: #00A651;
    border-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 166, 81, 0.5);
}
.ict-p2p-viz-layer-group.ict-state-interacting .ict-p2p-viz-layer-item:not(:hover):not(.ict-state-focused) {
    opacity: 0.2;
}

/* Hide the data payload containers */
.ict-data-payload {
    display: none !important;
}

/* CUSTOM PROCUREMENT ARCHITECTURE END */


/* SCM PAge Workforce And Change Management START */

.ui-stack-layout-light {
    background-color: #FFFFFF;
    padding: clamp(2rem, 5vw, 4rem) 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
    line-height: 1.6;
}

/* Impact Layer - Now with 0.5rem 1rem padding */
.ui-impact-layer {
    background-color: #00A651; /* Accent Green */
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 2rem 0;
}

.ui-impact-layer p {
    margin: 0;
}

/* Stack Logic */
.ui-content-stack {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ui-stack-row {
    display: flex;
    width: 100%;
}

.ui-align-left { justify-content: flex-start; }
.ui-align-right { justify-content: flex-end; }

.ui-text-box {
    width: min(100%, 550px);
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 76, 69, 0.08); /* Primary Dark Tinted Shadow */
    border: 1px solid #E9EFEE;
}

.ui-text-box p strong {
    color: #00A651; /* Accent Green */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    font-weight: 700;
    display: inline-block;
    border-bottom: 2px solid #00A651;
    padding-bottom: 4px;
}

.ui-text-box p {
    margin: 0;
    font-size: 1rem;
    color: #0F4C45; /* Primary Dark text for boxes */
}

/* Desktop Zig-Zag Accent Borders */
@media (min-width: 768px) {
    .ui-align-right .ui-text-box {
        border-right: 10px solid #00A651;
    }
    .ui-align-left .ui-text-box {
        border-left: 10px solid #00A651;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .ui-text-box {
        border-top: 6px solid #00A651;
    }
}

/* Workforce And Change Management END */

/* Calculating ROI for an Inventory Management System START */
.ui-roadmap-light {
  color: #333;
}

/* Step Layout */
.ui-step-node {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.ui-info-panel,
.ui-math-panel {
  flex: 1 1 350px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.ui-math-panel {
  background: #f1f8f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e0e0e0;
}

.ui-plain-box {
  background: #fafafa;
}

/* Alternate layout */
.ui-step-node.ui-reverse {
  flex-direction: row-reverse;
}

.ui-step-node.ui-reverse .ui-math-panel {
  border-left: none;
  border-right: 1px solid #e0e0e0;
}

/* List */
.ui-info-panel ul {
  margin: 1.5rem 0 0 1.2rem;
  color: #00A651;
}

/* Labels */
.ui-math-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #135C58;
  margin-bottom: 1.25rem;
  font-weight: bold;
  border-bottom: 2px solid #00A651;
  display: inline-block;
  padding-bottom: 2px;
}

/* Formula cards */
.ui-formula-card {
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  color: #0F4C45;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .ui-info-panel,
  .ui-math-panel {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .ui-step-node.ui-reverse {
    flex-direction: column;
  }

  .ui-step-node.ui-reverse .ui-math-panel {
    border-right: none;
    border-top: 1px solid #e0e0e0;
  }
}
/* Calculating ROI for an Inventory Management System END */

/* How Should Dynamic Rate START */
  /* Layout Architecture */
  .ui-data-container {
    padding: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: transparent; /* Inherits site white */
  }

  .ui-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 1.5rem;
  }

  /* Structural Components */
  .ui-data-block {
    background-color: #FFFFFF;
    border: 1px solid #E0E6E5;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* CSS-Only Visual Marker (No Icons/Graphics) */
  .ui-accent-line {
    width: 40px;
    height: 4px;
    background-color: #00A651; /* Accent Green */
    margin-bottom: 1.5rem;
  }

  /* Inline Text Highlights */
  .ui-data-block p span {
    color: #135C58; /* Secondary Teal */
    font-weight: 700;
    border-bottom: 1px solid #00A651; /* Accent Green underline */
    padding-bottom: 1px;
  }

  /* Hover States (Subtle UX improvement) */
  .ui-data-block:hover {
    border-color: #0F4C45;
  }
  
  .ui-data-block:hover .ui-accent-line {
    width: 60px;
    transition: width 0.3s ease;
  }
 .guide-container .ui-data-container .ui-data-block p { margin: 0rem 0 !important; }

  /* Responsiveness */
  @media (max-width: 768px) {
    .ui-data-block {
      padding: 1.5rem;}
    
    
  }
/* How Should Dynamic Rate END */


/* ==========================================================================
    GRID CARD LAYOUT (GCL) START (Used in TMS Page)
    Added by Taqi 23/4/26
    ====================================================================== */
/* === Main Grid Wrapper === */
.gcl-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Mobile default (1 column) */
    gap: clamp(1.25rem, 2.5vw, 2rem);
    max-width: 1200px;
    margin: clamp(2rem, 4vw, 3rem) auto 0 auto; 
    padding: 0 20px; 
    box-sizing: border-box;
}

.gcl-grid-wrapper * {
    box-sizing: border-box;
}

/* Tablet & Desktop Layout (Dynamic 2-Column) */
@media (min-width: 768px) {
    .gcl-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* DYNAMIC RULE: If the very last card is an odd number (e.g. 5th card), it spans both columns to fill the row perfectly */
    .gcl-grid-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* === Individual Card Styling === */
.gcl-grid-card {
    background-color: #0F4C45; /* Primary Dark */
    border: 1px solid #135C58; /* Secondary Teal */
    border-radius: 16px; 
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 76, 69, 0.1); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Physics */
.gcl-grid-card:hover {
    transform: translateY(-8px);
    border-color: #00A651;
    box-shadow: 0 15px 40px rgba(0, 166, 81, 0.15); 
}

/* Descendant Card Typography */
.gcl-grid-card h4 {
    color: #FFFFFF;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    font-weight: 700;
    border-bottom: 2px solid #135C58;
    padding-bottom: 0.75rem;
    transition: border-color 0.3s ease;
}

.gcl-grid-card:hover h4 {
    border-color: #00A651;
}

.gcl-grid-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1; /* Pushes the conclusion text to the absolute bottom */
}

/* Updated List Item Styles */
.gcl-grid-card li {
    position: relative;
    padding-left: 1.75rem;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    color: #E0E0E0;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.gcl-grid-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #00A651;
    font-weight: 900;
    font-size: 1.1rem;
}

/* The "Conclusion/Rule" block at the bottom of each card */
.gcl-grid-card p {
    margin: auto 0 0 0; /* Forces it to the bottom */
    padding: 1rem 1.25rem;
    background: rgba(0, 166, 81, 0.08);
    border-left: 3px solid #00A651;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.5;
}

/* Inline Links */
.gcl-grid-card a {
    color: #00A651;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gcl-grid-card a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
/* GRID CARD LAYOUT END */

/* How Does Retail Inventory Management Retail inventory platforms points START */
.second-section-card-new{
	width: unset;
    background: #F2F9F6 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08) !important;
    border-top: 4px solid #1ec97f !important;
}

.second-section-grid-new{
	display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px;
}
.second-section-text-small{
  margin-top: -18px;	
}
/* How Does Retail Inventory Management END */

/*How iCommuneTech Offloads START*/
 .how-ic-card P {
    margin-top: 0 !important;
    color: #ffffff !important;
    border-left: 4px solid #00a651 !important;
    padding-left: 15px !important;
}
/* How iCommuneTech Offloads END */

/* Highlighted content block for notes; includes background and padding for emphasis */
.guide-note {
    display: block;
    color: #0f4c45b0; 
    font-weight: 600;
    margin: 15px 0; 
    background-color: #f0f7f4; 
    border-left: 4px solid #10B981; 
    padding: 12px 18px; 
    border-radius: 0 8px 8px 0; 
}

/* Specific class for Subheadings with a left border accent */
.guide-subheading {
    display: block;
    font-size: 1.5rem;
    margin: 10px 0;
    border-left: 4px solid #10B981;
    padding-left: 12px;
}

/* Specific css for Why is iCommuneTech a Top Implementation Section START */
.guide-container .second-section-icon {
    background: #e6f7ef;
    font-size: 16px;
    width: 45px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
/* Specific css for Why is iCommuneTech a Top Implementation Section START */


/* ==========================================================================
START: CUSTOM CASE STUDY BLOCK SHORTCODE (functions.php) | 
Added by Taqi 7/5/26
========================================================================== */
/* ==========================================================
   CCS BLOCK: STYLES
   ========================================================== */

/* * 1. Main Wrapper & Layout (Strict Percentage Flexbox) * */
.ccs-block-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #F4F7F8; 
    border: 1px solid #E2E9EC;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3.5rem);
    margin: 2.5rem 0;
    box-shadow: 0 10px 40px -10px rgba(10, 56, 72, 0.08); 
    width: 100%;
    box-sizing: border-box;
}

/* * 2. Layout Proportions * */
.ccs-block-wrapper .ccs-block-text {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ccs-block-wrapper .ccs-block-visual-container {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 56, 72, 0.2);
    box-sizing: border-box;
    margin-top: 2rem; 
}

/* Desktop Split Enforcer */
@media (min-width: 992px) {
    .ccs-block-wrapper .ccs-block-text {
        flex: 0 0 42%;
        max-width: 42%;
    }
    .ccs-block-wrapper .ccs-block-visual-container {
        flex: 0 0 54%;
        max-width: 54%;
        margin-top: 0;
    }
}

/* * 3. Typography Targeting * */
.ccs-block-wrapper h2,
.ccs-block-wrapper h3 {
    color: #125753; 
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    border: none;
}

.ccs-block-wrapper p {
    color: #3B5A66; 
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-weight: 400;
}

/* * 4. Call to Action Button * */
.ccs-block-wrapper a.ccs-block-btn {
    display: inline-block;
    background-color: #00A651;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 166, 81, 0.25);
    border: none;
}

.ccs-block-wrapper a.ccs-block-btn:hover {
    background-color: #125753; 
    box-shadow: 0 6px 20px rgba(18, 87, 83, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* * 5. Image & Overlays * */
.ccs-block-wrapper img.ccs-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    margin: 0; 
    max-width: none;
}

.ccs-block-wrapper .ccs-block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 56, 72, 0.75); 
    z-index: 2;
}

/* * 6. Internal 2x2 Grid Enforcer * */
.ccs-block-wrapper .ccs-block-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; 
}

@media (max-width: 650px) {
    .ccs-block-wrapper .ccs-block-grid {
        grid-template-columns: 1fr; 
    }
}

/* * 7. Two-Row Stat Cards * */
.ccs-block-wrapper .ccs-block-card {
    display: flex;
    flex-direction: column; /* New: Stacks header and description */
    gap: 0.85rem; 
    background-color: #FFFFFF; 
    border: 1px solid #E2E9EC;
    border-top: 4px solid #0ebeff; 
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.ccs-block-wrapper .ccs-block-card-header {
    display: flex;
    align-items: center; /* New: Keeps icon and heading perfectly side-by-side */
    gap: 1rem;
    width: 100%;
}

.ccs-block-wrapper .ccs-block-card:hover {
    border-top-color: #00A651; 
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* * 8. SVG Icon Styling * */
.ccs-block-wrapper .ccs-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px; 
    min-height: 46px;
    background-color: rgba(0, 166, 81, 0.1); 
    border-radius: 8px;
    flex-shrink: 0; 
    color: #00A651;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ccs-block-wrapper .ccs-block-card:hover .ccs-block-icon {
    background-color: #00A651; 
    color: #FFFFFF;
}

.ccs-block-wrapper .ccs-block-icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px; 
    flex-shrink: 0;
    display: block;
    overflow: visible;
}

/* * 9. Stat Data Formatting * */
.ccs-block-wrapper strong {
    font-size: clamp(1.2rem, 2vw, 1.5rem) !important; /* ONLY rule with !important */
    font-weight: 800;
    color: #125753; 
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
    display: block;
    border: none;
    padding: 0;
}

.ccs-block-wrapper span {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #3B5A66; 
    font-weight: 500;
    display: block;
    word-wrap: break-word; 
    margin: 0;
}
/* ==========================================================================
END: CUSTOM CASE STUDY BLOCK
========================================================================== */