/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens (Light Theme) --- */
:root {
    --bg-main: #ffffff;
    --bg-section-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-hover: rgba(0, 0, 0, 0.15);
    
    --primary: #157f9e;          /* TMI Teal Blue */
    --primary-glow: rgba(21, 127, 158, 0.12);
    --secondary: #94a823;        /* TMI Lime Green */
    --secondary-glow: rgba(148, 168, 35, 0.12);
    --accent: #0b7a9a;           /* TMI Accent Blue */
    --accent-glow: rgba(11, 122, 154, 0.12);

    --text-primary: #1e293b;     /* Slate 800 */
    --text-secondary: #545454;   /* Brand Secondary Text */
    --text-muted: #64748b;       /* Slate 500 */
    
    --font-sans: 'Quicksand', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
    --shadow-primary: 0 8px 20px -6px rgba(21, 127, 158, 0.35);
}

/* --- Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-light {
    background-color: var(--bg-section-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: var(--primary-glow);
    border: 1px solid rgba(21, 127, 158, 0.2);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.5rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -10px rgba(21, 127, 158, 0.5);
    color: #fff;
}

.btn-secondary {
    background: rgba(21, 127, 158, 0.05);
    border-color: rgba(21, 127, 158, 0.15);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(21, 127, 158, 0.1);
    border-color: rgba(21, 127, 158, 0.25);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent) 50%, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
        padding: 0.25rem 0 !important;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 2.75rem;
    width: auto;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--secondary);
    background: rgba(21, 127, 158, 0.05);
}

.nav-link svg {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-fast);
}

.nav-item:hover > .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Menu Dropdowns */
.mega-menu {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    z-index: 101;
}

.mega-menu.wide {
    width: 820px;
    grid-template-columns: repeat(3, 1fr);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.menu-group-title {
    grid-column: 1 / -1;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.menu-item:hover {
    background: rgba(21, 127, 158, 0.05);
}

.menu-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(21, 127, 158, 0.1);
    color: var(--primary);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}

.menu-item:hover .menu-item-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px var(--primary-glow);
}

.menu-item-info {
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.menu-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
        padding-right: 0;
}

.hero-section {
    padding: 6rem 0 6rem;
}

.mobile-nav-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.mobile-menu-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active {
    max-height: 1000px;
}

.mobile-sub-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 127, 158, 0.08) 0%, rgba(148, 168, 35, 0.04) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

/* Dashboard Mockup / Visual Graphic */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), 0 0 50px -10px rgba(21, 127, 158, 0.1);
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.mockup-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
}

.mockup-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mockup-val {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
    color: var(--primary);
}

.mockup-sparkline {
    height: 24px;
    background: linear-gradient(90deg, rgba(21, 127, 158, 0.15), transparent);
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden;
}

.mockup-sparkline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.mockup-flow {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.625rem;
}

.flow-icon {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(21, 127, 158, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.flow-desc {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.flow-badge {
    margin-left: auto;
    font-size: 0.6875rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-weight: 600;
}

.floating-element {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Trusted Partners Marquee --- */
.partners-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-section-light);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: var(--transition-normal);
}

.partner-logo svg {
    height: 2.5rem; /* Increased base height for better visibility */
    width: auto;
    max-width: 180px;
    display: block;
    transition: var(--transition-normal);
}

/* Custom sizes for visual balancing */
.partner-logo .logo-zoho {
    height: 2.5rem;
}

.partner-logo .logo-salesforce {
    height: 3.0rem; /* Salesforce cloud logo needs to be slightly taller to match text-wide logos */
}

.partner-logo .logo-hubspot {
    height: 2.2rem; /* HubSpot is wide, keeps visual balance */
}

.partner-logo .logo-freshworks {
    height: 2.2rem; /* Balanced now that the wide layout is cropped tightly */
}

.partner-logo .logo-odoo {
    height: 2.2rem; /* Balanced now that the layout is cropped tightly */
}

.partner-logo .logo-gohighlevel {
    height: 2.5rem;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo:hover svg {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 2rem;
    }
}


/* --- Business Problems Section --- */
.problems-section {
    background: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    background: #ffffff;
    border-color: #ef4444;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.problem-card:hover .problem-icon {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.problem-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.problem-desc {
    font-size: 0.9375rem;
}

/* --- Services Grid Section --- */
.services-section {
    background: var(--bg-section-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    gap: 0.375rem;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--secondary);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* --- Platforms We Work With --- */
.platforms-section {
    position: relative;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.platform-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.platform-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: var(--bg-section-light);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    color: var(--text-muted);
}

.platform-desc {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.platform-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.platform-feature svg {
    width: 1rem;
    height: 1rem;
    color: #22c55e;
    flex-shrink: 0;
}

/* --- Industries We Serve --- */
.industries-section {
    background: var(--bg-section-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(21, 127, 158, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
    transform: rotateY(180deg);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.industry-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.industry-desc {
    font-size: 0.875rem;
    color: var(--accent);
    margin-top: 0.75rem;
    line-height: 1.5;
}

a.industry-card {
    text-decoration: none;
    color: inherit;
}

/* --- Why Choose Us --- */
.why-section {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    gap: 1rem;
}

.why-point-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(148, 168, 35, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-point-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

/* --- Implementation Process Timeline --- */
.process-section {
    background: var(--bg-section-light);
    overflow: hidden;
}

.timeline-outer {
    position: relative;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateY(-50%);
    z-index: 2;
    transition: width var(--transition-slow);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 80px;
}

.timeline-node {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.timeline-step.active .timeline-node {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(21, 127, 158, 0.08);
}

.timeline-step.completed .timeline-node {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.timeline-step-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.timeline-step.active .timeline-step-label {
    color: var(--primary);
}

.timeline-card-container {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-card {
    padding: 2.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-normal);
    display: none;
}

.timeline-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.timeline-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.timeline-card-icon {
    color: var(--primary);
}

.timeline-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Business Outcomes --- */
.outcomes-section {
    position: relative;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.outcome-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.outcome-icon {
    color: #22c55e;
    margin-bottom: 1rem;
}

.outcome-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* --- Case Studies & Testimonials --- */
.testimonials-section {
    background: var(--bg-section-light);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-quote {
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    position: absolute;
    top: -2.5rem;
    left: 0;
    opacity: 0.1;
    line-height: 1;
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
}

.testimonial-meta {
    text-align: left;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary);
    width: 1.5rem;
    border-radius: 9999px;
}

/* --- FAQ Accordion --- */
.faq-section {
    background: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition-normal);
    background: #ffffff;
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(21, 127, 158, 0.02);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active,
.faq-item.active .faq-question {
    background: none !important;
    background-color: transparent !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
    outline: none !important;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* --- Final Call to Action --- */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    border-radius: 1.5rem;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.cta-box-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21, 127, 158, 0.1) 0%, rgba(148, 168, 35, 0.05) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.8fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(21, 127, 158, 0.05);
}

.footer-col h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* --- Media Queries --- */
@media (max-width: 1200px) {
    .mega-menu {
        width: 600px;
    }
    .mega-menu.wide {
        width: 720px;
    }
}

@media (max-width: 1024px) {
    .nav-menu, .header-ctas .btn {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .timeline-steps {
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 1rem;
    }
    
    .timeline-step {
        flex-shrink: 0;
    }
    
    .timeline-line, .timeline-progress {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
}

/* Make header container 100% width instead of fixed max-width container */
.header .container {
    max-width: 100%;
    padding: 0 3rem;
}
@media (max-width: 768px) {
    .header .container {
        padding: 0 1.5rem;
    }
    
}

/* --- Breadcrumbs System --- */
.breadcrumbs-container {
    padding: 0.85rem 0;
    font-size: 0.875rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: var(--accent);
}

.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--border-color-dark);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.breadcrumbs-current {
    color: var(--primary);
    font-weight: 600;
}

/* Dark hero theme overrides for services page breadcrumbs */
.services-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.services-hero .breadcrumbs a:hover {
    color: var(--primary);
}

.services-hero .breadcrumbs-separator {
    color: rgba(255, 255, 255, 0.4);
}

.services-hero .breadcrumbs-current {
    color: #ffffff;
}

/* --- Floating Human Support Widget (Sarah Chat) --- */
.tmi-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    font-family: var(--font-family);
}

/* Collapsed Trigger Button */
.tmi-chat-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 1.25rem 0.6rem 0.6rem;
    border-radius: 5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    user-select: none;
}

.tmi-chat-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.tmi-trigger-avatar {
    position: relative;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.tmi-trigger-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tmi-trigger-status {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.tmi-trigger-info {
    display: flex;
    flex-direction: column;
}

.tmi-trigger-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.tmi-trigger-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Chat Popup Window */
.tmi-chat-popup {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tmi-chat-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.tmi-chat-header {
    background: linear-gradient(135deg, #091e3a 0%, #030712 100%);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tmi-chat-header-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tmi-chat-header-avatar {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tmi-chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tmi-chat-header-meta {
    display: flex;
    flex-direction: column;
}

.tmi-chat-header-name {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
}

.tmi-chat-header-status {
    font-size: 0.775rem;
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tmi-chat-header-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.tmi-chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tmi-chat-close:hover {
    color: #ffffff;
}

/* Chat Messages Area */
.tmi-chat-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 280px;
}

.tmi-chat-msg {
    max-width: 85%;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.925rem;
    line-height: 1.5;
}

.tmi-chat-msg.incoming {
    background: #ffffff;
    color: var(--text-color);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}

.tmi-chat-msg.outgoing {
    background: var(--primary);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.tmi-chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tmi-chat-opt-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    text-align: left;
}

.tmi-chat-opt-btn:hover {
    background: rgba(37, 99, 235, 0.03);
    border-color: var(--primary);
    color: var(--primary);
}

.tmi-chat-opt-btn i {
    font-size: 1rem;
    width: 1.25rem;
}

/* Chat Footer / Input Form */
.tmi-chat-footer {
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tmi-chat-input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition-fast);
}

.tmi-chat-input:focus {
    border-color: var(--primary);
}

.tmi-chat-send {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.tmi-chat-send:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .tmi-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }
    .tmi-chat-popup {
        width: calc(100vw - 2rem);
        bottom: 4.5rem;
    }
}

/* --- Implementation Journey Grid --- */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

@media (min-width: 1200px) {
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.journey-card {
    position: relative;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-normal);
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.journey-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(37, 99, 235, 0.05);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.03) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.journey-card:hover .journey-number {
    color: rgba(37, 99, 235, 0.1);
}

.journey-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.journey-card:hover .journey-icon-wrap {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.journey-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.journey-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.journey-deliverables {
    border-top: 1px dashed var(--border-color);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.journey-deliverables-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.journey-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.journey-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 0.25rem;
}

/* --- Homepage Recent Blogs --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.blog-card-visual {
    height: 12rem;
    background: var(--bg-section-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary);
    overflow: hidden;
}
.blog-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-card-tag {
    color: var(--primary);
    background: rgba(21, 127, 158, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.blog-card-title {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}
.blog-card-title a {
    text-decoration: none;
    color: inherit;
}
.blog-card-title a:hover {
    color: var(--primary);
}
.blog-card-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.blog-card-link {
    font-size: 0.9375rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.blog-card-link:hover {
    color: var(--accent);
}

/* --- Blog Categories --- */
.blog-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.category-tab {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: #ffffff;
    transition: var(--transition-normal);
}
.category-tab:hover, .category-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

/* --- Single Blog Article Layout --- */
.article-layout {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: flex-start;
}
.article-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-sm);
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.article-tag {
    color: var(--primary);
    background: rgba(21, 127, 158, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.article-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 800;
}
.article-content {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}
.article-content h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.article-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.article-content p {
    margin-bottom: 1.5rem;
}
.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.article-content li {
    margin-bottom: 0.5rem;
}
.article-sidebar {
    background: var(--bg-section-light);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
}
.sidebar-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
}
.sidebar-post {
    margin-bottom: 1.5rem;
}
.sidebar-post:last-child {
    margin-bottom: 0;
}
.sidebar-post-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}
.sidebar-post-title a {
    text-decoration: none;
    color: var(--text-primary);
}
.sidebar-post-title a:hover {
    color: var(--primary);
}
.sidebar-post-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}





/*...03/08/2026...*/

.cta-box {
    margin-top: 4px;
}

.hero-ctas {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 0;
}

.quick-links-grid {
    margin-top: 0 !important;
}


.services-grid-page {
    margin-top: 0 !important;
}
.Services_Grid_Section{
    padding-top: 0;
}

.service_section_testimonials {
    padding: 0 !important;
}

.service_section_hero {
    padding-bottom: 80px !important;
}

.plstforms_section_new {
    background: transparent;
}

.platform_cta_section{
    padding-top: 0;
}
section#resources{
    padding-bottom: 0;
}
.cta-box{
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.glass-card:hover {
    border-color: var(--primary) !important;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover{
    background-color: #248490;
}

.integration-flow-container {
    gap: 1rem !important;
}
.integration-flow-container {
    padding-bottom: 0 !important;
}
.hero-visual {
    width: 100%;
}
.industry-card-premium .card-num-meta .num{
    opacity: 1;
}

@media (max-width: 1199px){
    .hero-section {
        padding-bottom: 80px !important;
    }

    .industries-section {
        padding-top: 80px !important;
    }

    .faq-section {
        padding-bottom: 80px;
    }

    .cta-section {
        padding-bottom: 80px;
    }

    .cta-box {
        padding: 2rem 2rem;
    }

     button.faq-question {
        white-space: normal !important;
    }
    .logo img {
        height: 2rem;
    }
    .navbar {
        height: 4rem;
    }
    .mobile-nav-header .logo img {
        object-fit: contain;
        height: auto !important;
    }
    button.mobile-nav-close {
        padding: 7px 2px 2px 9px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .float-2 {
        right: -10px;
    }
    .float-1 {
        left: -10px;
     }
     .blog-grid {
        gap: 2rem;
    }
    .cta-title {
        font-size: 2.5rem;
    }
    .stat-num {
        font-size: 2rem;
    }
    .hero-section {
        padding: 7rem 0 6rem;
    }
    .breadcrumbs-current, .breadcrumbs a {
        font-size: 14px;
        font-weight: 500;
    }
    .breadcrumbs-separator {
        font-size: 11px;
    }
    .section {
        padding: 5rem 0;
    }
    .integration-flow-container {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
    }
    .integration-node {
        padding: 1.25rem 1.25rem !important;
        font-weight: 600 !important; 
    }
    .case-study-metric {
        font-size: 2rem !important;
    }
    .industries-grid-page {
        gap: 2rem !important;
    }
}

@media (max-width: 991px){
    .hero-section {
        padding: 6rem 0 6rem;
    }
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .blog-grid {
        gap: 2rem;
    }
    .blog-card-content {
        padding: 1rem;
    }
    .blog-card-meta {
        gap: 0.5rem;
    }
    .section-title,
    .cta-title{
        font-size: 2rem;
    }
    .footer-brand {
        width: 100%;
    }
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
    .footer-col {
        width: 42%;
    }
    .footer {
        padding: 4rem 0 1rem;
    }
    .footer-bottom {
        padding-top: 1rem;
    }
    .logo img {
        height: 2rem;
    }
    .navbar {
        height: 3.5rem;
    }
    .mobile-nav-header .logo img {
        object-fit: contain;
        height: auto !important;
    }
    .mobile-nav {
        padding: 1rem;
    }
    .mobile-menu-item {
        line-height: normal;
    }
    .mobile-menu-link {
        font-size: 1rem;
        font-weight: 600;
        line-height: normal;
    }
    .mobile-menu-list {
        gap: 0.7rem;
    }
    .mobile-menu-item {
        padding-bottom: 0.5rem;
    }
    .mobile-sub-link {
        padding: 0.2rem 0;
    }
    .mobile-nav-header .logo {
        width: 80%;
    }
    .mobile-menu-item:nth-last-child(1) {
        padding-bottom: 16px;
    }
    .header .container {
        padding-right: 1rem;
    }
    .mobile-nav-header {
        width: 100%;
    }
    .section {
        padding: 4rem 0;
    }
    .feature-panel {
        padding: 1.5rem !important;
    }
    .feature-panel-title {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
        padding-bottom: 10px !important;
    }
    .integration-node {
        padding: 1rem 1rem !important;
    }
    .service-icon {
        margin-bottom: 1.5rem;
    }
    .platform-card {
        padding: 2rem;
    }
}

@media (max-width: 767px){
    .mobile-nav {
        padding: 1rem 1rem 6rem;
    }
    .float-1 {
        left: -10px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title,
    .cta-title,
    #services-hero h1{
        font-size: 2rem;
    }
    .problems-grid, .services-grid, .industries-grid, .case-study-grid, .journey-grid, .outcomes-grid,.blog-grid, .services-grid-page,.packages-grid{
        gap: 1rem !important;
    }
    .blog-card-content {
        padding: 1rem;
    }
    .blog-card-meta {
        gap: 0.5rem;
        font-weight: 400;
    }
    .footer {
        padding: 4rem 0 1rem;
    }
    .footer-links {
        gap: 0.5rem;
    }
    .footer-col h4 {
        margin: 0 0 15px;
    }
    .footer-grid {
        margin-bottom: 2rem;
    }
    .footer-brand {
        width: 100%;
    }
    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-col {
        width: 42%;
    }
    #services-hero {
        padding: 7rem 0 4rem 0;
    }
    .breadcrumbs a,
    .breadcrumbs-current{ font-size: 12px;}
    .breadcrumbs-separator {
        font-size: 10px;
    }
    .service-card {
        padding: 1.5rem;
    }
    section#resources {
        padding-bottom: 0;
    }
    .package-card {
        padding: 2rem 1rem 1rem !important;
    }
    .integration-flow-container {
        flex-wrap: wrap;
    }
    .industry-features-list {
        margin: 0 0 1rem 0 !important;
        padding-top: 1rem !important;
    }
    .industry-card-premium .industry-icon {
        margin-bottom: 1rem !important;
    }
    .industry-card-premium .industry-title {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 580px){

    .mobile-menu-link {
        font-size: 15px;
    }

    .mobile-nav {
        gap: 1rem;
    }

    .mobile-dropdown {
        margin-top: 0;
    }

    .mobile-dropdown {
        gap: 0rem;
        padding-left: 0.5rem;
        margin-top: 0.5rem !important;
    }

    .logo img {
        width: 220px;
        object-fit: contain;
    }

    .hero-ctas {
        margin-bottom: 0;
    }

    .section-header {
        margin: 0 auto 0rem;
    }

    .platforms-grid {
        gap: 2rem;
    }

    .problem-card,
    .platform-card,
    .journey-card,
    .outcome-card,
    .blog-card-content,
    .cta-box {
        padding: 1rem;
    }

    .service-card {
        padding: 1rem 1rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .journey-grid {
        margin-top: 0;
    }

    .cta-title {
        font-size: 1.7rem;
    }
    .journey-number {
        font-size: 3rem;
    }

    .platforms-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .footer {
        padding: 2rem 0 2rem;
    }

    .glass-card {
        padding: 1rem !important;
    }

    .family-card img {
        object-fit: cover !important;
        object-position: top !important;
    }

    .family-grid {
        gap: 1rem !important;
    }

    .navbar {
        height: 3.5rem;
    }
    .section-title, .cta-title, #services-hero h1{
        font-size: 1.7rem;
    }
    .section-desc {
        font-size: 1rem;
    }

    .testimonial-quote {
        font-size: 1.3rem;
    }
    .hero-section {
        padding: 5rem 0 6rem;
    }


    .service-icon {
        margin-bottom: 1rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .platform-card-premium {
        padding: 1rem !important;
    }

    .card-num-meta,
    .platform-card-premium .platform-icon {
        margin-bottom: 1rem !important;
    }

    .platform-card-premium .platform-title {
        margin-top: 0 !important;
    }


    .case-study-grid {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .hero-grid {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .mockup-flow {
        display: flex;
        flex-direction: column;
    }


    .problems-grid,
    .services-grid,
    .industries-grid,
    .case-study-grid {
        gap: 1rem;
    }

    .case-study-sidebar {
        width: 100%;
    }

    .case-study-sidebar {
        padding: 1rem !important;
    }
    .cta-box h3 {
        font-size: 18px !important;
    }
    .cta-desc {
        font-size: 1rem;
    }
    .cta-section {
        padding-bottom: 60px;
    }
    .blog-card-tag {
        padding: 0.25rem 0.5rem;
    }
    .testimonial-quote {
        font-size: 1.1rem;
    }
    .testimonial-slide { padding: 20px 0 10px;}
    .breadcrumbs a,
    .breadcrumbs-current{ font-size: 12px;}
    .breadcrumbs-separator {
        font-size: 10px;
    }
    .faq-answer-inner {
        padding: 0 1rem 1rem;
    }
    .faq-question {
        padding: 1rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .testimonial-quote::before {
        top: -26px;
        left: -7px;
    }
    .footer-brand .logo img {
        width: auto;
    }
    .case-study-metric {
        font-size: 1.5rem !important;
    }
}


