/* Global Reset & Variables */
:root {
    --primary-color: #3b82f6;
    /* Brand Navy from Logo */
    --primary-dark: #3b82f6;
    --primary-light: #e8effa;
    --accent-color: #3B82F6;
    /* Vibrant Blue */
    --secondary-color: #0F172A;
    /* Deep Navy for rich contrast */
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #7c3aed 100%);
    --bg-white: rgba(255, 255, 255, 0.7);
    --bg-off-white: rgba(248, 250, 252, 0.4);
    --border-light: #e2e8f0;
    --text-main: #1e293b;
    --text-light: #0b0c0c;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-main: 'Work Sans', sans-serif;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition-fast: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Effects */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

/* Futuristic Tech Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020617;
    /* Deep Navy Space */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.8s ease;
}

#preloader::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: preloader-glow 4s infinite alternate;
}

#preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
}

.preloader-visuals {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.tech-rings {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-color: var(--primary-color);
    animation: spin 2s linear infinite;
}

.ring-2 {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-bottom-color: #9333ea;
    /* Purple accent */
    animation: spin 1.5s linear infinite reverse;
}

.ring-3 {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border-right-color: #2dd4bf;
    /* Teal accent */
    animation: spin 3s linear infinite;
}

.preloader-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo-wrap img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    animation: pulse-gear 2s infinite ease-in-out;
}

.brand-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    margin-top: 20px;
}

.loading-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #9333ea);
    box-shadow: 0 0 10px var(--primary-color);
    animation: fill-bar 2s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes preloader-glow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulse-gear {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes fill-bar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body {
    font-family: var(--font-main);
    background-color: #f0f7ff;
    /* Very soft light blue tint */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Page Background System */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background-color: #f8fafc;
    /* Base shade */
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
    filter: blur(40px);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: -1;
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -200px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -200px;
    animation-delay: -7s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -12s;
}

.blob-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.12) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: -18s;
}

.abstract-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
    animation: rotate 60s infinite linear;
}

.shape-1 {
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    bottom: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    animation-direction: reverse;
    animation-duration: 80s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 80px) scale(1.1);
    }

    66% {
        transform: translate(-40px, 40px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Hero Background */
.background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#ffffff, #2563eb66),
        url('2151910965.jpg') center/cover no-repeat;
    z-index: -1;
}

/* Case Study Hero Specifics */
.case-study-hero .background-grid {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)),
        url('case-study-hero-bg.png') center/cover no-repeat;
}

.case-study-hero h1,
.case-study-hero .hero-subtext {
    color: white !important;
}

.case-study-hero .text-gradient {
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar-pill {
    background: rgba(255, 255, 255, 0.599);
    backdrop-filter: blur(12px);
    /* border: 1px solid rgba(226, 232, 240, 0.8); */
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    box-shadow: var(--shadow-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.logo a img {
    display: block;
}

.highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.dropdown-trigger:hover {
    color: var(--primary-color);
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--bg-off-white);
    color: var(--primary-color);
}

/* Sub-dropdown Styles (Vertical Accordion) */
.sub-dropdown {
    position: relative;
    width: 100%;
}

.sub-dropdown-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.sub-dropdown:hover>.sub-dropdown-trigger {
    background: var(--bg-off-white);
    color: var(--primary-color);
}

.sub-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.sub-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    /* Slightly different background to differentiate */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.sub-dropdown:hover .sub-dropdown-menu {
    max-height: 300px;
    /* Large enough value to fit content */
}

.sub-dropdown-menu a {
    padding: 8px 35px !important;
    /* Extra indentation */
    font-size: 0.85rem !important;
    border-left: 2px solid transparent;
}

.sub-dropdown-menu a:hover {
    border-left-color: var(--primary-color);
    background: white !important;
}

.sub-dropdown:hover .sub-arrow {
    transform: rotate(180deg);
}


.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-primary-sm {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-primary-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile Navigation Elements - Hidden on Desktop */
.mobile-nav,
.mobile-nav-overlay,
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle {
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Badge */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Typography */
h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-container {
    display: inline-flex;
    align-items: center;
    min-width: 320px;
    padding: 2px 20px;
    background: rgba(255, 255, 255, 0.85);
    /* Whiter background for contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--primary-color);
    /* Highlight with brand color */
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
    margin: 0 12px;
    height: 1.4em;
    vertical-align: middle;
    transition: all 0.3s ease;
}

#typing-text {
    font-weight: 800;
    /* Extra bold for readability */
    letter-spacing: -0.01em;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background-color: var(--primary-color);
    margin-left: 4px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-primary-lg {
    background: var(--accent-gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    transition: var(--transition-fast);
}

.btn-primary-lg:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

.btn-secondary-lg {
    background: white;
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-secondary-lg:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Floating Widgets */
.floating-widget {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.widget-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-3deg);
    width: 260px;
    padding: 16px;
}

.widget-right {
    top: 40%;
    right: 0;
    transform: translateY(-50%) rotate(3deg);
    width: 240px;
    padding: 20px;
    animation-delay: 2s;
}

/* CRM Widget styles */
.crm-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-off-white);
}

.window-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 8px;
}

.dot-red,
.dot-yellow,
.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.dot-yellow {
    background: #fef9c3;
    border: 1px solid #fde047;
}

.dot-green {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.kanban-column {
    background: var(--bg-off-white);
    padding: 12px;
    border-radius: var(--radius-md);
}

.column-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kanban-card {
    background: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.kanban-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.card-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
}

.tag-blue {
    background: #eff6ff;
    color: #2563eb;
}

.tag-purple {
    background: #faf5ff;
    color: #9333ea;
}

.card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.card-price {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Analytics Widget Styles */
.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.stats-title {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.graph-container {
    height: 100px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
}

.bar-group {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
    transition: height 1s ease;
}

.bar-1 {
    height: 40%;
}

.bar-2 {
    height: 60%;
}

.bar-3 {
    height: 45%;
}

.bar-4 {
    height: 85%;
    background: var(--primary-color);
}

.bar-5 {
    height: 70%;
}

.sales-pill {
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Connected Elements (Bottom) */
.hero-connections-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.connection-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 250px;
    box-shadow: var(--shadow-md);
}

.card-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: var(--bg-off-white);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.app-icon:hover {
    background: var(--primary-light);
}

.app-icon .icon {
    font-size: 1.2rem;
}

.app-name {
    font-size: 0.7rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Connection Hub */
.connection-hub {
    position: relative;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connector-line {
    position: absolute;
    top: 50%;
    height: 2px;
    background: var(--border-light);
    z-index: -1;
}

.line-left-animated {
    right: 50%;
    width: 180px;
    overflow: hidden;
}

.line-left-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    animation: flowRight 2s infinite linear;
}

.line-right-animated {
    left: 50%;
    width: 180px;
    overflow: hidden;
}

.line-right-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateX(-100%);
    animation: flowRight 2s infinite linear 1s;
}

.odoo-hub {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1), var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
}

.odoo-logo {
    font-weight: 800;
    color: #714B67;
    /* Odoo purple-ish default, or use primary */
    font-size: 1.2rem;
}

.hub-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
    animation: pulse 2s infinite;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: zoomIn 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--secondary-color);
}

.modal-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-align: center;
}

.modal-content p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-off-white);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 16px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    background: var(--primary-color);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) rotate(-3deg);
    }

    50% {
        transform: translateY(calc(-50% - 15px)) rotate(-2deg);
    }
}

@keyframes flowRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: white;
    /* margin-bottom: 60px; */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint */
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}


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

    .navbar-wrapper {
        top: 10px;
        padding: 0 10px;
    }

    .navbar-pill {
        border-radius: 20px;
        padding: 10px 20px;
    }

    .floating-widget,
    .hero-connections-wrapper {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Nav Drawer */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 1000;
        padding: 100px 30px 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

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

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .mobile-nav .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--secondary-color);
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-nav .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0 10px 15px;
    }

    .mobile-nav .mobile-dropdown-content.active {
        display: flex;
    }

    .mobile-nav .mobile-dropdown-content a {
        font-size: 0.95rem;
        color: var(--text-light);
        padding: 5px 0;
    }

    .mobile-nav .mobile-cta {
        margin-top: auto;
        width: 100%;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-primary-lg,
    .btn-secondary-lg {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }
}

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

    h1 {
        font-size: 2.3rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .problem-content {
        padding: 30px 20px;
    }

    .problem-content h3 {
        font-size: 1.8rem;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: var(--bg-off-white);
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.problem-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.problem-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.problem-badge {
    background: #FFEBEE;
    color: #FF5252;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 32px;
    border: 1.5px solid #FFCDD2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.problem-content h3 {
    font-size: 2.8rem;
    margin-bottom: 32px;
    color: #1A1F2B;
    line-height: 1.2;
    font-weight: 800;
}

/* Reversed Layout */
.card-reversed {
    flex-direction: row-reverse;
}

/* Badge Themes */
.badge-blue {
    background: #E3F2FD;
    border-color: #BBDEFB;
    color: #2196F3;
}

.badge-purple {
    background: #F3E5F5;
    border-color: #E1BEEF;
    color: #9C27B0;
}

.badge-dark {
    background: #ECEFF1;
    border-color: #CFD8DC;
    color: #455A64;
}

/* Text Highlights */
.text-highlight {
    color: #FF5252;
    position: relative;
    display: inline-block;
}

.text-highlight-blue {
    color: #3b82f6;
    position: relative;
    display: inline-block;
}

.text-highlight-purple {
    color: #9333ea;
    position: relative;
    display: inline-block;
}

.text-highlight-dark {
    color: #334155;
    position: relative;
    display: inline-block;
}

/* Icon Themes */
.icon-blue {
    background: #eff6ff;
    color: #2563eb;
}

.icon-purple {
    background: #faf5ff;
    color: #9333ea;
}

.icon-dark {
    background: #f1f5f9;
    color: #334155;
}


.problem-content p {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #1A1F2B;
    font-weight: 700;
    font-size: 1.15rem;
}

.cross-icon {
    width: 28px;
    height: 28px;
    background: #FFEBEE;
    color: #FF5252;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}

.problem-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, white 0%, transparent 20%);
    pointer-events: none;
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


/* Concluding Note */
.problem-note {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 24px 32px;
    background: white;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    font-size: 1.15rem;
    color: var(--secondary-color);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-note strong {
    color: var(--primary-color);
    margin-right: 6px;
}

.note-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    vertical-align: middle;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    transition: all 0.3s ease;
    background: var(--accent-gradient);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon-wrapper {
    height: 80px;
    width: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-img-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-svg-icon {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: white;
    min-height: 54px;
    /* Align text across cards */
}

.service-card p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    /* Limit initial view to 5 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card.expanded {
    background: #0052cc;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.service-card.expanded p {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    opacity: 1;
}

.service-more-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-more-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-action {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments for Services Section */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }
}

/* Industry Section */
.industry-section {
    padding: 80px 20px;
    background: var(--bg-off-white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.2);
    /* Darken slightly */
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.565) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.3;
    z-index: -2;
    /* Move behind overlay */
    transition: all 0.5s ease;
}

/* Black Overlay */
.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.565) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.industry-card:hover h3,
.industry-card:hover p {
    color: white;
}

.industry-card:hover .industry-icon {
    background: var(--primary-color);
}

.card-manufacturing::before {
    background-image: url('https://img.freepik.com/free-photo/photo-automobile-production-line-welding-car-body-modern-car-assembly-plant-auto-industry-interior-hightech-factory-modern-production_645730-185.jpg?semt=ais_hybrid&w=740&q=80');
}

.card-retail::before {
    background-image: url('https://img.freepik.com/free-photo/person-setting-up-online-store-uploading-products-laptop_73899-54387.jpg?semt=ais_hybrid&w=740&q=80');
}

.card-healthcare::before {
    background-image: url('https://img.freepik.com/premium-photo/stethoscope-x-ray-picture_51530-2906.jpg?semt=ais_hybrid&w=740&q=80');
}

.card-logistics::before {
    background-image: url('images/logistics.avif');
}

.card-finance::before {
    background-image: url('https://img.freepik.com/premium-photo/graph-rows-coins-finance-banking-digital-stock-market-financial_18497-366.jpg?semt=ais_hybrid&w=740&q=80');
}

.card-education::before {
    background-image: url('https://img.freepik.com/premium-photo/black-graduation-hat-with-diploma-book_488220-77063.jpg');
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: background 0.3s;
}

.industry-card:hover .industry-icon {
    background: transparent;
    color: white;
}

.industry-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    /* color: var(--secondary-color); */
    letter-spacing: 0.02em;
    color: #3b82f6;
}

.industry-card:hover h3 {
    color: white;
}

.industry-card p {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.875);
}

.industry-card:hover p {
    color: white;
}

/* Responsive for Industry */
@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .industry-card p {
        text-align: center;
    }

    .industry-icon {
        margin-bottom: 0;
        width: 64px;
        height: 64px;
        padding: 12px;
    }

    .industry-card h3 {
        font-size: 1.2rem;
    }
}




/* Responsive adjustments for Problem Section */
@media (max-width: 1024px) {
    .section-header-center h2 {
        font-size: 2rem;
    }

    .problem-card {
        flex-direction: column !important;
    }

    .problem-image-wrapper {
        min-height: 250px;
        width: 100%;
        order: -1;
        /* Image first on mobile */
    }

    .problem-content {
        padding: 30px 20px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: transparent;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-content {
    flex: 1.5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h3 {
    font-size: 1.25rem;
    color: #3b82f6;
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.trust-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.trust-visual svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.visual-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Visual Themes */
.visual-speed {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://osswalinfo.com/wp-content/uploads/2024/06/Top-ERP-Systems-1024x576.jpg') center/cover no-repeat;
}

.visual-fit {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.fup-ag.com/wp-content/webp-express/webp-images/uploads/2024/11/AdobeStock_979148370-1920x1076.jpeg.webp') center/cover no-repeat;
}

.visual-support {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://imageio.forbes.com/specials-images/imageserve/63ecf7e1affdaa0a74171308/0x0.jpg?format=jpg&height=900&width=1600&fit=bounds') center/cover no-repeat;
}

.visual-ai {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://t4.ftcdn.net/jpg/17/71/42/53/360_F_1771425308_82TGgcQeiDcGYN2vQ00MkGT1iyBPK2eL.jpg') center/cover no-repeat;
}


/* Responsive for Trust layout */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        flex-direction: column-reverse;
    }

    .trust-visual {
        min-height: 140px;
    }
}

/* Modern CTA Section */
.modern-cta-section {
    padding: 60px 20px 100px;
    background: transparent;
}

.modern-cta-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 24px;
    padding: 30px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
    color: white;
    isolation: isolate;
    /* Create stacking context for shapes */
}

/* Background Abstract Shapes */
.cta-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #f472b6;
    /* Pinkish glow */
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #60a5fa;
    /* Blue glow */
    bottom: -80px;
    left: -50px;
}

.modern-cta-content {
    flex: 1;
    z-index: 1;
    max-width: 800px;
}

.modern-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.modern-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modern-cta-action {
    z-index: 1;
    margin-left: 40px;
}

.btn-glow-white {
    background: white;
    color: #2563eb;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-glow-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-glow-white:hover .btn-arrow {
    transform: translateX(5px);
}


.modern-cta-icon-wrapper {
    /* background: rgba(255, 255, 255, 0.1); */
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
    backdrop-filter: blur(8px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    flex-shrink: 0;
}

.modern-cta-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

/* Responsive Modern CTA */
@media (max-width: 900px) {
    .modern-cta-card {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
        gap: 40px;
    }

    .modern-cta-content {
        margin-right: 0;
    }

    .modern-cta-action {
        margin-left: 0;
    }

    .modern-cta-content h2 {
        font-size: 1.8rem;
    }

    .modern-cta-icon-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Case Study Section */
.case-study-section {
    padding: 80px 20px;
    background: var(--bg-off-white);
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.case-card {
    flex: 0 0 calc(33.333% - 20px);
    /* 3 cards visible */
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-image svg {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 20px;
}

.case-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.case-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.case-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.case-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.case-link:hover {
    gap: 10px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .case-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 cards */
    }
}

@media (max-width: 768px) {
    .case-card {
        flex: 0 0 calc(100% - 10px);
        /* 1 card */
    }

    .carousel-btn {
        display: none;
        /* Hide buttons on mobile, rely on swipe */
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
    /* Hide scrollbar for the marquee */
}

.logo-slider {
    margin-top: 40px;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Gradient fade masks on sides */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 10);
    /* 5 logos * 2 sets * width */
    animation: scroll 30s linear infinite;
}

.client-logo {
    width: 250px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    /* filter: grayscale(1) opacity(0.6); */
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

/* Marquee Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

    /* Scroll half the track width */
}

/* Responsive Clients */
@media (max-width: 768px) {

    .logo-slider::before,
    .logo-slider::after {
        width: 50px;
        /* Smaller fade area on mobile */
    }

    .client-logo {
        width: 180px;
        padding: 0 20px;
    }

    .logo-slide-track {
        width: calc(180px * 10);
        animation: scroll 20s linear infinite;
        /* Faster scroll on mobile */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 5));
        }
    }
}

/* Consultation Section */
.consultation-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.consult-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.consult-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consult-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Form Styling */
.consult-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.full-button {
    width: 100%;
    margin-top: 10px;
}

/* Visual Side */
.consult-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.consult-image-shell {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 1;
}

.consult-girl-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floating-image 6s infinite ease-in-out;
}

.visual-accent-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    z-index: 10;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-support {
    bottom: 40px;
    right: -20px;
    animation: bounce-slow 4s infinite ease-in-out;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes floating-image {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Consultation */
@media (max-width: 1024px) {
    .consult-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consult-visual {
        min-height: 400px;
        order: -1;
        /* Headshot remains at top on tablet/mobile */
    }

    .consult-image-shell {
        max-width: 380px;
    }

    .badge-support {
        bottom: 20px;
        right: 0;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .consult-form {
        padding: 25px;
    }

    .consult-content h2 {
        font-size: 2rem;
    }
}

/* Blogs Section */
.blog-section {
    padding: 100px 20px;
    background: transparent;
}

.blog-slider {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
}

.blog-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.blog-track::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.blog-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.blog-image.has-image {
    background-image: none;
    /* Will be overriden by inline style */
}

.gradient-blue {
    background: url('https://i.ytimg.com/vi/nbso3NVz3p8/maxresdefault.jpg');
}

.gradient-purple {
    background: url('https://sbs-me.b-cdn.net/wp-content/uploads/2024/05/AIERP.jpg');
}

.gradient-teal {
    background: url('https://acropolium.com/img/articles/embracing-iot-in-transportation-and-logistics-to-boost-supply-chain-visibility/img01.jpg');
}

.gradient-orange {
    background: url('https://media.licdn.com/dms/image/v2/D4D12AQEGspjvf1jfmw/article-cover_image-shrink_600_2000/article-cover_image-shrink_600_2000/0/1736413290427?e=2147483647&v=beta&t=Pqa1oKexE_qFwFHBdo2_g-0g5C-mnRmWwmyN_O8Khgg');
}

.gradient-dark {
    background: url('https://img.freepik.com/premium-photo/b2b-business-company-commerce-technology-marketing-concept_29488-8245.jpg');
}

.blog-date {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-body h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6rem;
}

.blog-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: auto;
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* Dots Styling */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 650px) {
    .blog-card {
        flex: 0 0 calc(100% - 10px);
    }
}

/* Footer Section */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 20px 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .footer-logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-review {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
}

.stars-outer::before {
    content: "★★★★★";
    color: #334155;
    /* Muted gray for empty stars */
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    transition: width 0.3s;
}

.stars-inner::before {
    content: "★★★★★";
    color: #fbbf24;
    /* Gold color for filled stars */
}

.review-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* --- ERP Consulting Hero Styles --- */
.hero-erp {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-main);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

/* Floating Visual Elements */
.hero-erp::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(55, 99, 233, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-erp::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 2%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}


.hero-erp .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-erp .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
}

.hero-erp .hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 100%;
}

.cta-box-wrapper {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.cta-box {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-box.left {
    border-right: 1px solid var(--border-light);
    background: #f8fafc;
}

.cta-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.cta-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 5px;
}

.cta-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.hero-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
}

.erp-form .form-group {
    margin-bottom: 20px;
}

.erp-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.erp-form input,
.erp-form select,
.erp-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s;
}

.erp-form input:focus,
.erp-form select:focus,
.erp-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.erp-form textarea {
    resize: none;
}

@media (max-width: 1100px) {
    .hero-erp .hero-title {
        font-size: 3rem;
    }

    .hero-erp .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-erp {
        padding: 140px 0 80px;
    }

    .hero-erp .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-erp .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-box-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero-erp .hero-title {
        font-size: 2.2rem;
    }

    .cta-box-wrapper {
        flex-direction: column;
    }

    .cta-box.left {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .erp-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-form-card {
        padding: 30px 20px;
    }
}

/* Why Choose Section Styles */
.why-choose-section {
    position: relative;
    background-color: var(--bg-off-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-actions .btn-primary-lg {
    min-width: 200px;
}

/* Growth Section Styles (Interactive Tabs) */
.growth-section {
    padding: 100px 0;
    background: white;
}

.growth-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.growth-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
}

.growth-tab-item {
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.growth-tab-item:last-child {
    border-bottom: none;
}

.growth-tab-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.growth-tab-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    transition: color 0.3s;
}

.growth-tab-item.active {
    background: #f8fafc;
    border-left: 5px solid var(--primary-color);
}

.growth-tab-item.active h3 {
    color: var(--primary-color);
}

.growth-tab-item:hover:not(.active) {
    background: rgba(0, 102, 255, 0.02);
}

.growth-visual-side {
    position: sticky;
    top: 120px;
}

.growth-image-container {
    width: 100%;
    aspect-ratio: 7/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    background: #f1f5f9;
    position: relative;
}

.growth-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-out;
    transform: scale(1.05);
}

.growth-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

@media (max-width: 1024px) {
    .growth-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .growth-visual-side {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    .growth-tab-item {
        padding: 20px;
    }

    .growth-tab-item h3 {
        font-size: 1.15rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: var(--bg-off-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    width: 100%;
    border: none;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Large enough for content */
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }
}

/* About Us Page Specific Styles */
.section-padding {
    padding: 100px 0;
}

.about-hero {
    min-height: 60vh !important;
    padding-bottom: 40px !important;
}

.rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.vision-card h3,
.mission-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h4 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    padding: 50px;
    color: white;
    text-align: center;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

.check-icon-blue {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Modern Results Section for Case Studies */
.results-modern-section {
    margin-top: 80px;
}

.results-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: white;
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.2);
}

.result-card:hover::before {
    opacity: 1;
}

.result-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon-wrapper {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.1);
}

.result-num {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.result-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .results-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .results-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments for About Us */
@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* WordPress Integration & Blog Styles */
.blog-action {
    text-align: center;
    margin-top: 40px;
}

.blog-track.loading {
    min-height: 480px;
}

/* Skeleton Loader */
.blog-card.skeleton {
    pointer-events: none;
}

.blog-card.skeleton .blog-image {
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.blog-card.skeleton .blog-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.blog-card.skeleton .blog-body h3,
.blog-card.skeleton .blog-body p,
.blog-card.skeleton .blog-tag {
    background: #e2e8f0;
    border-radius: 4px;
    color: transparent !important;
}

.blog-card.skeleton .blog-body h3 {
    width: 90%;
}

.blog-card.skeleton .blog-body p {
    width: 70%;
}

.blog-card.skeleton .blog-tag {
    width: 40%;
    height: 1rem;
}

.blog-card.skeleton .read-more {
    opacity: 0.3;
}

/* Single Blog Post Page Styles */
.post-header {
    padding: 160px 20px 60px;
    text-align: center;
}

.post-meta {
    margin-top: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.post-featured-image {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto 60px;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-content-area {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 1.15rem;
    color: #334155;
}

.post-content-area h2,
.post-content-area h3 {
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.post-content-area p {
    margin-bottom: 25px;
}

.post-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-hero {
        min-height: auto !important;
        padding-top: 120px !important;
    }
}

/* Modern Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #52c41a;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: #52c41a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.toast-content h4 {
    margin: 0;
    font-size: 15px;
    color: #1d1d1f;
}

.toast-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
}