@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    --primary: #0257D0;
    --primary-dark: #0146A8;
    --secondary: #1B2A4A;
    --secondary-dark: #0F1B2D;
    --accent: #E8742C;
    --accent-light: #F6AD55;
    --text-dark: #1A1A2E;
    --text-body: #4A5568;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-huge: 40px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
    --font: 'Lato', sans-serif;
    --header-h: 84px;
    --transition: .4s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* --- Gradient Text --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #F6AD55, #FC8181);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Global Section Labels */
.section-label {
    background: rgba(2, 87, 208, 0.05);
    color: #0257D0;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.text-center .section-label,
.section-label.center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.site-header .btn-primary {
    background: #0257D0;
    border-color: #0257D0;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.site-header .btn-primary:hover {
    background: #0146A8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 87, 208, 0.2);
}

.btn-bitelo-primary {
    background: var(--secondary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-bitelo-primary .arrow-circle {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.btn-bitelo-primary:hover {
    background: #fff !important;
    color: #0257D0 !important;
    border-color: #0257D0 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(2, 87, 208, 0.15);
}

.btn-bitelo-primary:hover .arrow-circle {
    background: #0257D0 !important;
}

.btn-bitelo-primary:hover .arrow-circle svg {
    color: #fff !important;
    /* White arrow on blue circle */
}

/* Watch Video Button */
.btn-watch-video {
    background: #fff;
    color: #1B2A4A;
    border: 1px solid #E2E8F0;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-watch-video:hover {
    background: #0257D0 !important;
    color: #fff !important;
    border-color: #0257D0 !important;
    transform: translateY(-4px);
}

.btn-watch-video .play-icon-circle {
    width: 24px;
    height: 24px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-watch-video:hover .play-icon-circle {
    background: rgba(255, 255, 255, 0.2) !important;
}

.btn-watch-video:hover .play-icon-circle svg {
    color: #fff !important;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border);
}

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

.btn-white {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, .25);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(232, 116, 44, .08);
    border-radius: 50px;
}

.text-center .section-label,
.section-label+.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 40px;
}

.text-center.section-subtitle,
.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HEADER — Floating Capsule / Glassmorphism
   ============================================ */
.site-header {
    position: fixed !important;
    top: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 1400px !important;
    height: 84px !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08) !important;
    transition: all 0.4s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.admin-bar .site-header {
    top: 56px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 70px !important;
    }
}

.site-header.scrolled {
    top: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12) !important;
    height: 68px !important;
}

body.admin-bar .site-header.scrolled {
    top: 44px !important;
}

.header-container {
    width: 100%;
    padding: 0 24px 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 42px;
    width: auto;
}

.header-logo .custom-logo {
    height: 42px;
    width: auto;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary);
}

.dropdown-arrow {
    transition: transform .3s;
}

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

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .nav-link {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.dropdown-menu .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Header CTA */
.btn-header-cta {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 50px;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-header-cta:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .35);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 998;
}

/* ============================================
   HERO SECTION — Two-Card Split Layout
   ============================================ */
.hero-section {
    padding: 180px 0 140px;
    /* Increased bottom padding */
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-left {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgb(243, 146, 55) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
}

.hero-bg-right {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 90%;
    background: radial-gradient(circle, rgb(37, 99, 235) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.18;
    /* Increased to match left */
}

.hero-grid-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Area */
.hero-card-left {
    background: transparent;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(-30px);
    animation: revealInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Visual Area */
.hero-card-right {
    background: transparent;
    border-radius: 0;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-wave-graphic {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

/* Curved Hand-Drawn Stroke Underline */
.highlight-container {
    position: relative;
    display: inline-block;
    color: #E8742C;
    /* Precise Orange from reference */
}

.highlight-stroke {
    position: absolute;
    bottom: -30px;
    /* Adjust based on asset height */
    left: -10px;
    width: 115%;
    height: 50px;
    background-image: url('../images/curved%20line.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(232, 116, 44, 0.2));
    /* Added subtle shadow to the line */
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleXIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 1.2s;
}

/* Floating Elements Logic */
.floating-visual-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-dashboard-static {
    width: 90%;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.floating-sub-card {
    position: absolute;
    z-index: 3;
    animation: floatSubCard 4s ease-in-out infinite;
}

.ai-assistant-card {
    top: -60px;
    right: -40px;
    width: 420px;
    /* Bigger */
    animation: floatUpDown 6s ease-in-out infinite;
}

.maintenance-card {
    bottom: 20px;
    /* Higher up to prevent overlap */
    left: -40px;
    width: 440px;
    animation: floatDownUp 6s ease-in-out infinite;
}

.secondary-anim-card {
    position: absolute;
    top: 40%;
    right: -100px;
    width: 260px;
    /* Bigger */
    animation: floatUpDown 7s ease-in-out infinite;
    z-index: 4;
}

.main-dashboard-static {
    width: 85%;
    /* Smaller */
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-dashboard-static:hover {
    transform: scale(1.03) translateY(-10px);
}

@keyframes floatUpDown {

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

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

@keyframes floatDownUp {

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

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

.building-asset-card {
    bottom: 5%;
    right: 5%;
    width: 320px;
    z-index: 4;
}

.asset-location-sub {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: 180px;
}

@keyframes floatSubCard {

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

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

.hero-bottom-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.stat-item-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-check-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #E8742C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8742C;
}

.stat-val-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

.social-icon-pill {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    transition: all 0.3s ease;
}

.social-icon-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* --- Hero Right Side / Floating Cards --- */
.hero-visuals {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.5s ease;
}

.card-ai-alert {
    top: 50px;
    left: 40px;
    padding: 20px;
    display: flex;
    gap: 16px;
    width: 300px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.alert-icon {
    width: 48px;
    height: 48px;
    background: #FFF5ED;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.card-snapshot {
    top: 140px;
    right: 0;
    padding: 30px;
    width: 440px;
    z-index: 2;
}

.card-snapshot img {
    border-radius: 16px;
}

.card-ai-score {
    bottom: 50px;
    left: 20px;
    width: 240px;
    padding: 24px;
    background: var(--secondary);
    color: #fff;
    z-index: 4;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

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

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 116, 44, .06), transparent);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, .06), transparent);
    bottom: -50px;
    left: -80px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 116, 44, .04), transparent);
    top: 40%;
    left: 30%;
}

/* ============================================
   ABOUT US SECTION (NEW PREMIUM LAYOUT)
   ============================================ */
.about-premium-section {
    padding: 80px 0; /* Reduced padding for cleaner look without top text */
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.about-top-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

.section-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-pill-badge.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-main-content {
    max-width: 960px;
}

.about-typography {
    font-size: 36px;
    line-height: 1.35;
    font-weight: 700;
    color: #1B2A4A;
    margin: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-typography.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-highlight-orange {
    color: #E8742C;
}

/* Stats Cards Section */
.about-stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stat-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 60px 40px;
    border-radius: 32px;
    /* Increased rounding per reference */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(60px);
    text-align: left;
}

.about-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-card:hover {
    background: #fff;
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(27, 42, 74, 0.1);
    border-color: #0257D0;
}

.about-card-number {
    display: block;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0257D0 0%, #E8742C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.about-card-label {
    font-size: 17px;
    font-weight: 600;
    color: #64748B;
    line-height: 1.4;
}

.about-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ============================================
   SERVICES INTERACTIVE ACCORDION
   ============================================ */
.services-accordion-section {
    padding: 120px 0;
    background: #fff;
    position: relative; /* For decorative circle-gradient */
    overflow: hidden; /* Prevent gradient overflow */
}

.services-layout-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

.services-left-sticky {
    position: sticky;
    top: 120px;
}

.services-accordion-list {
    display: flex;
    flex-direction: column;
}

.service-accordion-item {
    border-top: 1px solid #F1F5F9;
    padding: 32px 0;
}

/* Decorative Background Gradients */
.circle-gradient {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, #217dd3 0%, #80b4e4 20%, #dfeaf5 40%, #ecf2f8 60%, #fafafa 80%);
    opacity: 0.15; /* Significantly reduced for a more subtle, premium look */
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.circle-gradient.offer {
    top: 25%;
    left: -25%;
}

.circle-gradient.features {
    top: 10%;
    right: -30%;
    opacity: 0.4;
}
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-accordion-item:last-child {
    border-bottom: 1px solid #F1F5F9;
}

.service-item-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.service-item-number {
    font-size: 18px;
    font-weight: 700;
    color: #94A3B8;
    margin-top: 4px;
}

.service-item-title-row {
    flex: 1;
}

.service-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #1B2A4A;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.service-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    max-width: 600px;
    margin: 0;
    opacity: 0.8;
}

.service-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.3s ease;
}

/* Hover/Active States */
.service-accordion-item:hover {
    padding-bottom: 48px;
}

.service-accordion-item:hover .service-item-title {
    color: #0257D0;
}

.service-accordion-item:hover .service-arrow-btn {
    background: #0257D0;
    border-color: #0257D0;
    color: #fff;
    transform: rotate(-45deg);
}

.service-expanded-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 0;
}

.service-accordion-item:hover .service-expanded-content {
    max-height: 600px; /* Slightly increased to ensure images aren't clipped */
    opacity: 1;
    margin-top: 16px; /* Tightened alignment */
}

.service-preview-img-wrap {
    width: 100%;
    max-width: 300px; /* Reduced further as requested for a tighter look */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.service-preview-img-wrap img {
    width: 100%;
    display: block;
}

/* ============================================
   ALL-IN-ONE SECTION
   ============================================ */
.allinone-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.allinone-showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.allinone-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.allinone-card {
    padding: 28px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.allinone-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(232, 116, 44, .1), rgba(37, 99, 235, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.allinone-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.allinone-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.allinone-center {
    position: relative;
}

.allinone-center-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 65%);
    z-index: 0;
    border-radius: 50%;
}

.allinone-center-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-section {
    padding: 100px 0;
}

.modules-section .section-label {
    display: block;
    text-align: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.module-card {
    padding: 36px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

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

.module-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(232, 116, 44, .08), rgba(37, 99, 235, .08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.module-card:hover .module-icon {
    background: var(--primary);
    color: #fff;
}

.module-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.module-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.module-tiny-stat {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-tiny-stat svg {
    color: #2563EB;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.how-it-works-section .container {
    max-width: 1400px;
    width: 95%;
}

.hiw-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 60px;
}

.hiw-card {
    background: #F8FAFC;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

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

.hiw-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4B5563;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.hiw-title {
    font-size: 22px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.hiw-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.hiw-visual-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Active State */
.hiw-card.active {
    background: #2563EB;
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
    border-color: #2563EB;
    z-index: 2;
}

.hiw-card.active .hiw-label,
.hiw-card.active .hiw-title,
.hiw-card.active .hiw-desc {
    color: #fff;
}

.hiw-card.active .hiw-visual-placeholder {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1);
}

/* Timeline Tracker */
.hiw-timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 20px;
}

.hiw-timeline-track {
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #E5E7EB;
    z-index: 1;
}

.hiw-timeline-progress {
    height: 100%;
    background: #2563EB;
    width: 50%;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiw-timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hiw-timeline-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1F2937;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.hiw-timeline-node.active {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

@media (max-width: 992px) {
    .hiw-cards-grid {
        grid-template-columns: 1fr;
    }
    .hiw-card.active {
        transform: translateY(-10px);
    }
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.industries-content-sticky {
    position: sticky;
    top: 120px;
    padding-right: 40px;
}

.industries-interactive-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industries-image-container {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #F3F4F6;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.industry-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1.05);
    z-index: 1;
}

.industry-image-layer.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    animation: imageFloatParallax 10s infinite alternate ease-in-out;
}

@keyframes imageFloatParallax {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.05) translate(-1%, -1%); }
}

.industries-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-tab {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.industry-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border-color: rgba(37, 99, 235, 0.2);
}

.industry-tab.active {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: #2563EB;
}

.industry-tab.active:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.industry-tab-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.industry-tab-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #2563EB;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.industry-tab.active .industry-tab-icon {
    color: #2563EB;
    background: #fff;
    transform: rotate(5deg) scale(1.05);
}

.industry-tab-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1B2A4A;
    transition: color 0.4s ease;
}

.industry-tab.active .industry-tab-title {
    color: #fff;
}

.industry-tab-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 64px; /* Align with text */
    margin-top: 0;
}

.industry-tab.active .industry-tab-body {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.industry-tab-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.industry-tab.active .industry-tab-desc {
    color: rgba(255,255,255,0.9);
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.industry-feature-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    border-radius: 100px;
    transition: all 0.4s ease;
}

.industry-tab.active .industry-feature-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industries-content-sticky {
        position: static;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .industry-tab-body {
        padding-left: 0;
    }
}

/* ============================================
   AI AUTOMATION SECTION
   ============================================ */
.ai-automation-section {
    padding: 100px 0 120px;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

/* AI Header Decoration Elements */
.ai-header-decor-left {
    position: absolute;
    left: calc(50% - 640px); /* Centers close to the text container */
    top: 50px;
    width: 440px; /* Bigger wave line */
    pointer-events: none;
    z-index: 1;
    opacity: 0.28; /* Fainter opacity as requested */
    animation: floatDecorSlow 14s infinite alternate ease-in-out;
}

.ai-header-decor-right {
    position: absolute;
    right: calc(50% - 620px); /* Centers close to the text container */
    top: 30px;
    width: 380px;
    pointer-events: none;
    z-index: 1;
    animation: floatUpDown 6s infinite ease-in-out; /* Smooth vertical up/down transition */
}

.ai-header-decor-left img,
.ai-header-decor-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-24px); } /* Smooth up/down transition */
    100% { transform: translateY(0); }
}

@keyframes floatDecorSlow {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(12px) scale(1.03) rotate(-1deg); }
}

@media (max-width: 1300px) {
    .ai-header-decor-left {
        left: -5%;
        opacity: 0.15;
    }
    .ai-header-decor-right {
        right: -5%;
    }
}

@media (max-width: 1100px) {
    .ai-header-decor-left,
    .ai-header-decor-right {
        display: none;
    }
}


.ai-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, rgba(248,250,252,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.ai-bg-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.section-badge-pill-ai {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    color: #2563EB;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(37,99,235,0.05);
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.ai-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.ai-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
}

.ai-card-header {
    margin-bottom: 32px;
}

.ai-card-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ai-card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-card:hover .ai-card-icon-box {
    background: #2563EB;
}

.ai-card:hover .ai-card-icon-box svg {
    stroke: #ffffff;
}

.ai-card-badge {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    background: #EFF6FF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DBEAFE;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.ai-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.ai-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
}

/* MINI UI GLOBALS */
.ai-card-ui-preview {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.mini-ui-chat, .mini-ui-dashboard, .mini-ui-alerts {
    width: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.ai-card:hover .mini-ui-chat,
.ai-card:hover .mini-ui-dashboard,
.ai-card:hover .mini-ui-alerts {
    transform: translateY(0);
}

/* MINI CHAT */
.chat-header {
    padding: 12px 16px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
}

.chat-actions i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    margin-left: 4px;
}

.chat-body {
    padding: 16px;
    background: #F8FAFC;
}

.chat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 8px;
}

.chat-bubble {
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
}

.user-bubble {
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #334155;
    border-bottom-right-radius: 4px;
}

.ai-bubble {
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #1E3A8A;
    font-weight: 600;
    border-bottom-left-radius: 4px;
    padding-right: 40px;
}

.bubble-flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tiny-chip-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(37,99,235,0.3);
}

.mini-ui-ticket {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px;
}

.ticket-header {
    font-size: 11px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #64748B;
    margin-bottom: 6px;
}
.ticket-row:last-child { margin-bottom: 0; }

.badge-high { color: #EF4444; font-weight: 600; }
.badge-hvac { color: #2563EB; font-weight: 600; }

/* MINI DASHBOARD */
.dash-header {
    padding: 12px 16px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
}

.dash-charts {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
}

.mini-donut {
    width: 70px;
    height: 70px;
    position: relative;
}

.circle-bg {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 3.8;
}

.circle-fill {
    fill: none;
    stroke: #10B981;
    stroke-width: 3.8;
    stroke-linecap: round;
    animation: donutFill 2s ease-out forwards;
}

@keyframes donutFill {
    from { stroke-dasharray: 0, 100; }
    to { stroke-dasharray: 85, 100; }
}

.donut-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.donut-text strong { font-size: 18px; color: #0F172A; line-height: 1; }
.donut-text span { font-size: 9px; color: #10B981; font-weight: 600; }

.mini-line-graph {
    flex-grow: 1;
    height: 50px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #F1F5F9;
    background: #F8FAFC;
}

.stat-box {
    padding: 12px;
    text-align: center;
    border-right: 1px solid #F1F5F9;
}
.stat-box:last-child { border-right: none; }
.stat-box span { display: block; font-size: 9px; color: #64748B; margin-bottom: 4px; font-weight: 600; text-transform: uppercase; }
.stat-box strong { font-size: 14px; color: #2563EB; }
.stat-box.green strong { color: #10B981; }
.stat-box.orange strong { color: #F97316; }

/* MINI ALERTS */
.alerts-header {
    padding: 12px 16px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
}
.alerts-header a { font-size: 10px; color: #2563EB; text-decoration: none; }

.mini-alert-row {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #F1F5F9;
}
.mini-alert-row:last-child { border-bottom: none; }

.alert-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mini-alert-row.danger .alert-icon { background: #FEE2E2; color: #EF4444; border: 1px solid #FCA5A5; }
.mini-alert-row.warning .alert-icon { background: #FEF3C7; color: #F59E0B; border: 1px solid #FCD34D; }

.alert-content { flex-grow: 1; }
.alert-content strong { display: block; font-size: 11px; margin-bottom: 2px; }
.mini-alert-row.danger strong { color: #EF4444; }
.mini-alert-row.warning strong { color: #F59E0B; }

.alert-content span { display: block; font-size: 10px; color: #64748B; line-height: 1.4; }
.alert-arrow { color: #CBD5E1; }

/* BOTTOM CTA BAR */
.ai-cta-bar-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.ai-cta-bar {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    padding: 12px 12px 12px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.cta-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-spark-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

.cta-text-content p {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

.btn-ai-action {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-ai-action:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #E2E8F0 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(27, 42, 74, 0.15);
}

.btn-ai-action:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .ai-cards-grid { grid-template-columns: 1fr; }
    .ai-cta-bar { flex-direction: column; border-radius: 24px; padding: 24px; text-align: center; gap: 24px; }
    .cta-bar-left { flex-direction: column; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-section .section-label {
    display: block;
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 260px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all .5s ease;
    pointer-events: none;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    color: #F6AD55;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 15px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 13px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0 120px;
    background: #F8FAFC;
}

.cta-box {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%), url('../images/Background banner.png'); /* Black gradient overlay on the right to dim orange contrast */
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 110px 60px 100px; /* Slightly taller */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box::before,
.cta-box::after {
    display: none !important;
}

/* Floating Cards on Left & Right */
.cta-floating-left {
    position: absolute;
    left: 15px;
    bottom: -5px; /* Moved up by 40px as requested */
    width: 260px; /* Smaller size to prevent overlap */
    z-index: 1;
    pointer-events: none;
    animation: floatUpDownSmall 6s infinite ease-in-out; /* Smooth vertical up/down float */
    opacity: 0.95;
    transition: all 0.4s ease;
}

.cta-floating-right {
    position: absolute;
    right: -20px; /* Sits on the right side, slightly overflowing the edge for a seamless fit */
    top: 50%; /* Vertically centered */
    transform: translateY(-50%);
    width: 420px; /* Adjusted to prevent overlap with central text */
    z-index: 1;
    pointer-events: none;
    animation: floatLeftRight 7s infinite ease-in-out; /* Smooth horizontal right/left float */
    opacity: 0.95;
    transition: all 0.4s ease;
}

.cta-floating-left img,
.cta-floating-right img {
    width: 100%;
    height: auto;
}

/* Centered content styling */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 520px; /* Squeezed text container slightly to create zero-overlap space */
    margin: 0 auto;
}

/* Custom Floating Animations for CTA Banner */
@keyframes floatUpDownSmall {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); } /* Failsafe up and down transition */
    100% { transform: translateY(0); }
}

@keyframes floatLeftRight {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-15px); } /* Smooth horizontal right-to-left drift, maintaining vertical center */
    100% { transform: translateY(-50%) translateX(0); }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 6px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-credibility {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 0;
    flex-wrap: nowrap;
}

/* Ensure both CTA buttons have equal width */
.cta-buttons a {
    flex: 1 1 0;
    max-width: 240px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-white {
    background: #fff;
    color: #0F172A !important;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: #fff !important;
    border: 2px solid #2563EB;
}

.btn-outline-blue:hover {
    background: #2563EB !important;
    border-color: #2563EB !important;
    transform: translateY(-2px);
}

.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

.cta-trust-row svg {
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .cta-floating-left { width: 260px; left: 10px; }
    .cta-floating-right { width: 310px; right: 10px; }
}

@media (max-width: 991px) {
    .cta-floating-left,
    .cta-floating-right {
        display: none !important;
    }
    .cta-box {
        padding: 80px 24px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, .75);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo .custom-logo {
    height: 40px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

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

.footer-heading {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

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

.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.kasadara-footer-logo {
    height: 18px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.kasadara-footer-logo:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-xl);
        padding: 100px 24px 40px;
        transition: right .35s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-open .mobile-overlay {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .dropdown-open .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav-open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .hero-card-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
        text-align: center;
    }

    .hero-actions-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 40px !important;
        width: 100%;
    }

    .hero-bottom-stats-integrated {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 30px !important;
        width: 100%;
    }

    .hero-card-right {
        max-width: 550px;
        margin: 40px auto 0;
        width: 100%;
    }

    .ai-assistant-card {
        top: -12%;
        right: -5%;
        width: 60%;
    }

    .maintenance-card {
        bottom: -15%;
        left: -8%;
        width: 65%;
    }

    .secondary-anim-card {
        top: 35%;
        right: -8%;
        width: 40%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .allinone-showcase {
        grid-template-columns: 1fr;
    }

    .allinone-center {
        order: -1;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hero-bottom-stats-integrated {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-actions-row {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-actions-row a {
        width: 100%;
        justify-content: center;
    }

    .social-icons-group {
        justify-content: center;
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 34px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .ai-assistant-card,
    .maintenance-card {
        width: 55%;
    }

    .secondary-anim-card {
        display: none;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 50px 24px;
    }

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

/* ============================================
   FEATURES CAROUSEL SECTION
   ============================================ */
.features-carousel-section {
    padding: 120px 0;
    background: #fcfcfc;
    overflow: hidden;
    position: relative; /* For decorative circle-gradient */
}

/* ==========================================================================
   GLOBAL BADGE UPPERCASE UNIFORMITY
   ========================================================================== */
.ind-badge,
.section-badge-pill-rocket,
.plat-cap-pill-badge,
.cta-badge,
.section-label,
.feat-panel-badge,
.about-who-badge,
.pricing-badge,
.hero-badge,
.badge {
    text-transform: uppercase !important;
    letter-spacing: 0.8px;
}

.section-badge-pill-rocket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 10px 20px;
    border-radius: 100px;
    color: #0257D0;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(2, 87, 208, 0.05);
    text-transform: uppercase !important;
}

.section-badge-pill-rocket.center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-down.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PREMIUM TYPOGRAPHY ABOUT SECTION
   ============================================ */
.premium-about-section {
    padding: 100px 0 60px; /* Reduced bottom padding */
    background: #ffffff;
    overflow: hidden;
}

.premium-about-section .container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 120px;
}

.about-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 10px 20px;
    border-radius: 100px;
    color: #3B82F6; /* Blue text as per reference */
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    margin-bottom: 0;
}

.about-typography-content {
    flex-grow: 1;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: #1E293B;
    max-width: 1400px;
}

.about-line-text {
    display: block;
    white-space: nowrap;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-line-text.visible {
    opacity: 1;
    transform: translateY(0);
    animation: text-glow-reveal 2s ease-out forwards;
}

.about-line {
    display: none; /* No longer using about-line divs */
}

.inline-typography-img {
    height: 52px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: -4px 8px 0;
    animation: breathing 4s ease-in-out infinite;
    mix-blend-mode: multiply; /* Removes white backgrounds from PNGs */
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    position: relative;
    z-index: 1;
}

.inline-typography-img.iot-node {
    animation-delay: 1s;
    animation: floating 5s ease-in-out infinite;
}

@keyframes text-glow-reveal {
    0% { text-shadow: 0 0 20px rgba(59, 130, 246, 0.3); filter: brightness(1.3); }
    100% { text-shadow: 0 0 0px rgba(59, 130, 246, 0); filter: brightness(1); }
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@media (max-width: 1100px) {
    .premium-about-section .container {
        flex-direction: column;
        gap: 40px;
    }
    .about-typography-content {
        font-size: 32px;
    }
    .inline-typography-img {
        height: 32px;
    }
}

@media (max-width: 1024px) {
    .about-typography-content {
        font-size: 40px;
    }
    .inline-typography-img {
        height: 36px;
    }
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    cursor: grab;
    padding: 40px 0 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 32px;
    padding: 0 calc(50% - 210px); /* Center focus for 420px cards */
    width: max-content;
}

.carousel-card {
    min-width: 420px;
    width: 420px;
    background: #F3F4F6;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid transparent;
    scroll-snap-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    text-align: left; /* Left align text inside cards */
}

.carousel-card.featured-card {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 40px 80px rgba(37, 99, 235, 0.35);
    border: none;
    transform: scale(1.05);
    z-index: 10;
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0% {
        box-shadow: 0 40px 80px rgba(37, 99, 235, 0.25);
        transform: scale(1.05) translateY(0);
    }
    50% {
        box-shadow: 0 50px 100px rgba(37, 99, 235, 0.45);
        transform: scale(1.05) translateY(-8px);
    }
    100% {
        box-shadow: 0 40px 80px rgba(37, 99, 235, 0.25);
        transform: scale(1.05) translateY(0);
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.visual-mockup-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.carousel-card.featured-card .visual-mockup-wrapper {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.visual-mockup-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) translateY(0);
}

.featured-card .parallax-img {
    transform: scale(1.08) translateY(-4px);
}

.simple-mock {
    background: #E2E8F0;
    opacity: 0.6;
}

.card-text-content {
    padding: 0 8px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card .card-title {
    color: #fff;
    transform: translateY(0);
}

.card-description {
    font-size: 15px;
    line-height: 1.5;
    color: #4B5563;
    margin-bottom: 24px;
    text-align: left;
}

.featured-card .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Pill Style for Featured Card */
.card-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid transparent;
    color: #1F2937;
    padding: 6px 6px 6px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    width: fit-content;
    margin-top: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card .card-cta-pill {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cta-arrow-circle {
    width: 32px;
    height: 32px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.card-cta-pill:hover {
    transform: scale(1.05);
    background: #2563EB;
    color: #fff;
    border: 1px solid #fff;
}

.card-cta-pill:hover .cta-arrow-circle {
    background: #fff;
    color: #2563EB;
}

/* Not-selected Card Fading */
.carousel-card:not(.featured-card) {
    opacity: 0.7;
    transform: scale(0.85);
}

.carousel-card:not(.featured-card):hover {
    opacity: 1;
    transform: scale(0.88) translateY(-5px);
}

.carousel-pagination { display: flex; justify-content: center; gap: 16px; margin-top: 20px; margin-bottom: 60px; position: relative; z-index: 10; } .pagination-dot { width: 10px; height: 10px; border-radius: 50%; background: #E2E8F0; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .pagination-dot:hover { background: #CBD5E1; } .pagination-dot.active { background: #2563EB; transform: scale(1.4); box-shadow: 0 0 15px rgba(37, 99, 235, 0.3); }

/* ==========================================================================
   INDUSTRIES PAGE STYLES
   ========================================================================== */
.industries-page {
    background: #F8FAFC;
    overflow: hidden;
}

/* Background Gradients */
.ind-header-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0 110px;
    background: #FFFFFF;
    color: var(--text-dark);
}

.ind-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ind-bg-left {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(2, 87, 208, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}

.ind-bg-right {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    filter: blur(80px);
}

.ind-container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.ind-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94A3B8;
    margin-bottom: 50px;
}

.ind-breadcrumbs a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ind-breadcrumbs .separator {
    color: #CBD5E1;
}

.ind-breadcrumbs .current {
    color: var(--text-dark);
    background: #F1F5F9;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 13px;
}

/* Page Title */
.ind-page-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

/* Page Load Animation Keyframes */
@keyframes titleSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breadcrumbsReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ind-page-title-animate {
    animation: titleSlideDown 1.2s cubic-bezier(0.21, 1.02, 0.43, 1.01) both;
}

.ind-breadcrumbs-animate {
    animation: breadcrumbsReveal 1.2s cubic-bezier(0.21, 1.02, 0.43, 1.01) both;
    animation-delay: 0.5s;
    position: relative;
    z-index: 100;
}

/* Two-column Header Grid */
.ind-header-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.ind-header-card-left {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 380px;
    height: 380px;
    overflow: hidden;
}

.ind-image-wrapper {
    width: 100%;
    height: 100%;
    max-height: 348px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
    border: 1px solid #F1F5F9;
}

.ind-dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ind-header-card-left:hover .ind-dashboard-img {
    transform: scale(1.025);
}

.ind-header-card-right {
    background: #FFFFFF;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    max-height: 380px;
    height: 380px;
}

.ind-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* Contact Page Hero Header Breathing Space & Zero Overlap */
.contact-page .ind-header-section {
    padding-top: 170px !important;
    padding-bottom: 90px !important;
}

.contact-page .ind-header-card-right {
    padding: 32px 36px;
    box-sizing: border-box;
}

.contact-page .ind-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-page .ind-desc-text {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 16px 0 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.ind-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    gap: 8px;
    background: rgba(249, 115, 22, 0.08);
    color: #F97316;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.ind-desc-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 36px;
    font-weight: 400;
}

.ind-actions-row {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.ind-actions-row .btn-bitelo-primary {
    flex: 1.35;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 20px;
    height: 52px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ind-actions-row .btn-watch-video {
    flex: 0.85;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 16px;
    height: 52px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Accordion Section */
.ind-accordion-section {
    padding: 120px 0;
    background: #F8FAFC;
}

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

.section-header-center .section-badge-pill-rocket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ind-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
}

.ind-section-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Accordion Grid Layout */
.ind-accordion-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 50px;
    align-items: start;
}

.ind-accordion-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Accordion Card Styling */
.ind-accordion-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
}

.ind-accordion-item.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 16px 36px rgba(2, 87, 208, 0.15);
}

.ind-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
}

.ind-header-title-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ind-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ind-accordion-item.active .ind-item-icon {
    background: #fff;
    color: var(--primary);
    transform: rotate(5deg) scale(1.05);
}

.ind-header-title-flex h3 {
    font-size: 17px;
    font-weight: 700;
    color: #475569;
    margin: 0;
    transition: color 0.3s ease;
}

.ind-accordion-item.active h3 {
    color: #fff;
}

.ind-toggle-arrow {
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

.ind-accordion-item.active .ind-toggle-arrow {
    transform: rotate(180deg);
    color: #fff;
}

/* Accordion Body Transition */
.ind-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ind-accordion-item.active .ind-accordion-body {
    max-height: 500px;
}

.ind-body-inner {
    padding: 0 24px 18px 82px;
}

.ind-body-inner p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.65;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.ind-accordion-item.active .ind-body-inner p {
    color: rgba(255, 255, 255, 0.9);
}

/* Explore Industry CTA Button */
.ind-explore-link {
    font-size: 14px;
    font-weight: 700;
    color: #0257D0 !important;
    background: #FFFFFF;
    padding: 8px 12px 8px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-top: 6px;
}

.ind-explore-link .arrow-circle {
    width: 28px;
    height: 28px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0257D0;
    transition: all 0.3s ease;
}

.ind-accordion-item.active .ind-explore-link {
    color: #0257D0 !important;
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.ind-accordion-item.active .ind-explore-link .arrow-circle {
    background: #EFF6FF;
    color: #0257D0;
}

.ind-explore-link:hover,
.ind-accordion-item.active .ind-explore-link:hover {
    background: #FFFFFF !important;
    border-color: #0257D0 !important;
    color: #0257D0 !important;
    box-shadow: 0 8px 20px rgba(2, 87, 208, 0.18);
    transform: translateY(-2px);
}

.ind-explore-link:hover .arrow-circle,
.ind-accordion-item.active .ind-explore-link:hover .arrow-circle {
    background: #0257D0 !important;
    color: #FFFFFF !important;
    transform: translateX(2px);
}

.ind-explore-link svg {
    transition: transform 0.3s ease;
}

/* Right-side Graphic Visual Display */
.ind-accordion-image-wrapper {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ind-image-container-box {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: 18px;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
}

.ind-interactive-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.97) translateY(5px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.ind-interactive-img.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
    .ind-accordion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ind-accordion-image-wrapper {
        position: static;
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .ind-header-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ind-page-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .ind-header-card-right {
        padding: 36px 30px;
    }
}

@media (max-width: 768px) {
    .ind-page-title {
        font-size: 32px;
    }

    .ind-desc-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .ind-actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ind-actions-row .btn-bitelo-primary,
    .ind-actions-row .btn-watch-video {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .ind-section-title {
        font-size: 30px;
    }

    .ind-accordion-header {
        padding: 20px 22px;
    }

    .ind-body-inner {
        padding: 0 22px 20px 72px;
    }
}

/* Why Choose FacilitEasy Section */
.ind-why-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

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

.ind-why-grid .module-card {
    padding: 32px 24px;
}

/* Alternate background for How It Works on Industries & Healthcare pages */
.industries-page .how-it-works-section,
.healthcare-page .how-it-works-section {
    background: #F8FAFC !important;
}

.industries-page .hiw-card,
.healthcare-page .hiw-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
}

.industries-page .hiw-card:not(.active),
.healthcare-page .hiw-card:not(.active) {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
}

.industries-page .hiw-card.active,
.healthcare-page .hiw-card.active {
    background: #2563EB !important;
    border-color: #2563EB !important;
}

@media (max-width: 1100px) {
    .ind-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .ind-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .ind-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== HEALTHCARE PAGE STYLING ===== */
.healthcare-page {
    background: #FFFFFF;
}

.hc-hero-section {
    padding-bottom: 80px;
}

/* Challenges Section */
.hc-challenges-section {
    padding: 100px 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

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

.hc-challenge-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.hc-challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.08);
    border-color: #2563EB;
}

.hc-challenge-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #F1F5F9;
    transition: background 0.3s ease, color 0.3s ease;
}

.hc-challenge-card:hover .hc-challenge-icon {
    background: #2563EB;
    color: #FFFFFF;
}

.hc-challenge-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.hc-challenge-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Overview Section (Split Layout) */
.hc-overview-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.circle-gradient.hc-overview-glow {
    top: 20%;
    left: -35%;
    opacity: 0.3;
}

.hc-split-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

.hc-split-left-col {
    position: sticky;
    top: 110px;
}

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

/* Left action card */
.hc-action-callout-card {
    background: linear-gradient(135deg, #0257D0 0%, #012A6B 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(2, 87, 208, 0.15);
    animation: floatCardSmooth 3.5s ease-in-out infinite;
    will-change: transform;
}

.hc-callout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    pointer-events: none;
}

.hc-callout-content {
    position: relative;
    z-index: 2;
}

.hc-action-callout-card h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.hc-action-callout-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.hc-callout-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-callout-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hc-callout-buttons .btn-white {
    background: #FFFFFF;
    color: #0257D0 !important;
    border: 2px solid #FFFFFF;
}

.hc-callout-buttons .btn-white:hover {
    background: transparent;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.hc-callout-buttons .btn-outline-white {
    background: transparent;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hc-callout-buttons .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Right Detail Column */
.hc-split-right-col {
    display: flex;
    flex-direction: column;
}

.hc-overview-header-group {
    margin-bottom: 40px;
}

.hc-pre-title {
    font-size: 12px;
    font-weight: 800;
    color: #F97316;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.hc-overview-title {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.35;
}

.hc-overview-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 20px 0;
}

.hc-overview-desc:last-child {
    margin-bottom: 0;
}

/* Capabilities Grid inside */
.hc-inner-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
    align-items: stretch;
}

.hc-caps-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.hc-caps-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

.hc-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.hc-check-list li .check-mark {
    color: #0257D0;
    font-weight: 800;
    flex-shrink: 0;
}

/* Screenshot mockup frame */
.hc-screenshot-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-screenshot-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #F1F5F9;
    display: flex;
}

.hc-inner-mockup-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Benefits Block underneath */
.hc-benefits-block {
    border-top: 1px solid #E2E8F0;
    padding-top: 40px;
}

.hc-benefits-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 28px;
}

.hc-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
}

.hc-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hc-benefit-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0257D0;
    margin-top: 8px;
    flex-shrink: 0;
}

.hc-benefit-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.hc-benefit-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
}

/* RESPONSIVE MEDIA QUERIES FOR HEALTHCARE */
@media (max-width: 1100px) {
    .hc-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hc-split-left-col {
        position: static;
    }

    .hc-action-callout-card {
        padding: 36px 30px;
    }
}

@media (max-width: 768px) {
    .hc-inner-layout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hc-benefits-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .hc-challenges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hc-challenges-section {
        padding: 80px 0;
    }

    .hc-overview-section {
        padding: 80px 0;
    }
}

/* ==========================================================================
   CONTACT US PAGE STYLES (UPDATED)
   ========================================================================== */

.contact-page .ind-header-section {
    padding-bottom: 60px;
}

/* Form Section */
.contact-form-section {
    position: relative;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Column */
.contact-left-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-map-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grayscale-map {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.1) opacity(0.85);
    transition: filter 0.3s ease;
}

.grayscale-map:hover {
    filter: grayscale(80%) contrast(1.1) opacity(0.95);
}

.contact-info-card {
    background: #ffffff;
    padding: 0;
    z-index: 2;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

.contact-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: #4B5563;
}

.contact-check-list .check-mark {
    color: #2563EB;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Form Column */
.contact-right-col {
    background: #ffffff;
    padding-top: 0;
}

.contact-form-container h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.contact-form-desc {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 16px;
    line-height: 1.5;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.modern-input, .modern-textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #CBD5E1;
    background: transparent;
    font-size: 0.95rem;
    color: #1E293B;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

.modern-textarea {
    resize: vertical;
    min-height: 65px;
    height: 65px;
}

.modern-input::placeholder, .modern-textarea::placeholder {
    color: #94A3B8;
}

.modern-input:focus, .modern-textarea:focus {
    outline: none;
    border-bottom-color: #3B82F6;
    box-shadow: 0 1px 0 0 #3B82F6;
}

.form-submit-btn {
    align-self: flex-start;
    margin-top: 6px;
    cursor: pointer;
    border: 2px solid #2563EB;
    padding: 12px 24px;
    background: #2563EB;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.form-submit-btn:hover {
    background: #fff !important;
    color: #0257D0 !important;
    border-color: #0257D0 !important;
    box-shadow: 0 10px 30px rgba(2, 87, 208, 0.2);
    transform: translateY(-2px);
}
    border-color: #0257D0 !important;
    box-shadow: 0 10px 30px rgba(2, 87, 208, 0.2);
    transform: translateY(-2px);
}

/* Stay Connected Section */
.stay-connected-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
}
.stay-connected-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.stay-connected-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .stay-connected-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-block {
    background: #F1F5F9;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-info-block:hover {
    transform: translateY(-5px);
    background: #E2E8F0;
}

.info-icon {
    width: 64px;
    height: 64px;
    background: #3B82F6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.contact-info-block h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.contact-info-block p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-block a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-block a:hover {
    color: #2563EB;
}
/* ==========================================================================
   CONTACT US PAGE STYLES (UPDATED)
   ========================================================================== */

.contact-page .ind-header-section {
    padding-bottom: 60px;
}

/* Form Section */
.contact-form-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Column */
.contact-left-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grayscale-map {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.1) opacity(0.85);
    transition: filter 0.3s ease;
}

.grayscale-map:hover {
    filter: grayscale(80%) contrast(1.1) opacity(0.95);
}

.contact-info-card {
    background: #ffffff;
    padding: 0;
    z-index: 2;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
}

.contact-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #4B5563;
}

.contact-check-list .check-mark {
    color: #2563EB;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Form Column */
.contact-right-col {
    background: #ffffff;
    padding-top: 10px;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-form-desc {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.6;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.modern-input, .modern-textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #CBD5E1;
    background: transparent;
    font-size: 1rem;
    color: #1E293B;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0;
}

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

.modern-input::placeholder, .modern-textarea::placeholder {
    color: #94A3B8;
}

.modern-input:focus, .modern-textarea:focus {
    outline: none;
    border-bottom-color: #3B82F6;
    box-shadow: 0 1px 0 0 #3B82F6;
}

.form-submit-btn {
    align-self: flex-start;
    margin-top: 15px;
    cursor: pointer;
    border: 2px solid #2563EB;
    padding: 14px 28px;
    background: #2563EB;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.form-submit-btn:hover {
    background: #fff !important;
    color: #0257D0 !important;
    border-color: #0257D0 !important;
    box-shadow: 0 10px 30px rgba(2, 87, 208, 0.2);
    transform: translateY(-2px);
}

/* Stay Connected Section */
.stay-connected-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
}
.stay-connected-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.stay-connected-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .stay-connected-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-block {
    background: #F1F5F9;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-info-block:hover {
    transform: translateY(-5px);
    background: #E2E8F0;
}

.info-icon {
    width: 64px;
    height: 64px;
    background: #3B82F6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.contact-info-block h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.contact-info-block p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-block a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-block a:hover {
    color: #2563EB;
}
/* ==========================================================================
   CONTACT US PAGE - FINAL REFINEMENTS
   ========================================================================== */

/* Form Input Background Fill (matching screenshot 1) */
.modern-input, .modern-textarea {
    background: #F3F4F6 !important;
    border-radius: 8px 8px 0 0 !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 16px 20px !important;
    font-size: 1rem !important;
    color: #1E293B !important;
    transition: all 0.2s ease !important;
}

.modern-input:focus, .modern-textarea:focus {
    background: #E5E7EB !important;
    border-bottom: 2px solid #3B82F6 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Map Glow Behind */
.map-bg-glow {
    position: absolute;
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure Map is Above Glow */
.contact-map-wrapper {
    position: relative;
    z-index: 1;
}

/* Stay Connected Grid Item Hover (matching screenshot 2) */
.contact-info-block {
    background: #F8FAFC !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.contact-info-block .info-icon {
    width: 64px !important;
    height: 64px !important;
    background: #3B82F6 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    transition: all 0.3s ease !important;
}

.contact-info-block h4 {
    color: #1E293B !important;
    transition: all 0.3s ease !important;
}
.contact-info-block p, .contact-info-block a {
    color: #64748B !important;
    transition: all 0.3s ease !important;
}

/* Hover State - Turns Blue */
.contact-info-block:hover {
    background: #2563EB !important;
    border-color: #2563EB !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2) !important;
}

.contact-info-block:hover h4,
.contact-info-block:hover p,
.contact-info-block:hover a {
    color: #ffffff !important;
}

.contact-info-block:hover .info-icon {
    background: #ffffff !important;
    color: #3B82F6 !important;
}
/* ==========================================================================
   CONTACT US PAGE - FINAL REFINEMENTS
   ========================================================================== */

/* Form Input Background Fill (matching screenshot 1) */
.modern-input, .modern-textarea {
    background: #F3F4F6 !important;
    border-radius: 8px 8px 0 0 !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 16px 20px !important;
    font-size: 1rem !important;
    color: #1E293B !important;
    transition: all 0.2s ease !important;
}

.modern-input:focus, .modern-textarea:focus {
    background: #E5E7EB !important;
    border-bottom: 2px solid #3B82F6 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Map Glow Behind */
.map-bg-glow {
    position: absolute;
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure Map is Above Glow */
.contact-map-wrapper {
    position: relative;
    z-index: 1;
}

/* Stay Connected Grid Item Hover (matching screenshot 2) */
.contact-info-block {
    background: #F8FAFC !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.contact-info-block .info-icon {
    width: 64px !important;
    height: 64px !important;
    background: #3B82F6 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    transition: all 0.3s ease !important;
}

.contact-info-block h4 {
    color: #1E293B !important;
    transition: all 0.3s ease !important;
}
.contact-info-block p, .contact-info-block a {
    color: #64748B !important;
    transition: all 0.3s ease !important;
}

/* Hover State - Turns Blue */
.contact-info-block:hover {
    background: #2563EB !important;
    border-color: #2563EB !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2) !important;
}

.contact-info-block:hover h4,
.contact-info-block:hover p,
.contact-info-block:hover a {
    color: #ffffff !important;
}

.contact-info-block:hover .info-icon {
    background: #ffffff !important;
    color: #3B82F6 !important;
}
/* ==========================================================================
   STAY CONNECTED CARDS HORIZONTAL FIX & GLOW POSITION
   ========================================================================== */

.stay-connected-section .container {
    max-width: 1200px !important; /* Increase width */
}

/* Horizontal Card Layout (Image 2) */
.contact-info-block {
    display: flex !important;
    align-items: center !important;
    text-align: left !important;
    gap: 20px !important;
    padding: 25px 30px !important;
}

.contact-info-block .info-icon {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.contact-info-block h4 {
    margin-bottom: 6px !important;
    font-size: 1.15rem !important;
}

.contact-info-block p, .contact-info-block a {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Move Map Glow Down to avoid overlapping text */
.map-bg-glow {
    top: auto !important;
    bottom: -150px !important;
    transform: none !important;
}
/* ==========================================================================
   STAY CONNECTED CARDS HORIZONTAL FIX & GLOW POSITION
   ========================================================================== */

.stay-connected-section .container {
    max-width: 1200px !important; /* Increase width */
}

/* Horizontal Card Layout (Image 2) */
.contact-info-block {
    display: flex !important;
    align-items: center !important;
    text-align: left !important;
    gap: 20px !important;
    padding: 25px 30px !important;
}

.contact-info-block .info-icon {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.contact-info-block h4 {
    margin-bottom: 6px !important;
    font-size: 1.15rem !important;
}

.contact-info-block p, .contact-info-block a {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Move Map Glow Down to avoid overlapping text */
.map-bg-glow {
    top: auto !important;
    bottom: -150px !important;
    transform: none !important;
}
/* ==========================================================================
   STAY CONNECTED EXACT COLORS & MAP TEXT ANIMATION
   ========================================================================== */

/* Stay Connected Section Background */
.stay-connected-section {
    background: #ffffff !important;
}

/* Card Exact Colors & Compact Height */
.contact-info-block {
    background: #F3F4F6 !important; /* Grey color for cards */
    border: none !important; /* Remove any border */
    padding: 20px 25px !important; /* Reduced padding for lower height */
}

/* Default icon: blue background, white icon */
.contact-info-block .info-icon {
    background: #2563EB !important; /* Blue background */
    color: #ffffff !important; /* White icon */
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
}

/* Hover state: Card turns blue, icon turns white background with blue icon */
.contact-info-block:hover {
    background: #2563EB !important;
}

.contact-info-block:hover h4,
.contact-info-block:hover p,
.contact-info-block:hover a {
    color: #ffffff !important; /* Text turns white */
}

.contact-info-block:hover .info-icon {
    background: #ffffff !important; /* Circle turns white */
    color: #2563EB !important; /* Icon turns blue */
}

/* Map Above Content Top-To-Down Animation */
.reveal-down {
    animation: revealDownAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
@keyframes revealDownAnim {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* ==========================================================================
   STAY CONNECTED EXACT COLORS & MAP TEXT ANIMATION
   ========================================================================== */

/* Stay Connected Section Background */
.stay-connected-section {
    background: #ffffff !important;
}

/* Card Exact Colors & Compact Height */
.contact-info-block {
    background: #F3F4F6 !important; /* Grey color for cards */
    border: none !important; /* Remove any border */
    padding: 20px 25px !important; /* Reduced padding for lower height */
}

/* Default icon: blue background, white icon */
.contact-info-block .info-icon {
    background: #2563EB !important; /* Blue background */
    color: #ffffff !important; /* White icon */
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
}

/* Hover state: Card turns blue, icon turns white background with blue icon */
.contact-info-block:hover {
    background: #2563EB !important;
}

.contact-info-block:hover h4,
.contact-info-block:hover p,
.contact-info-block:hover a {
    color: #ffffff !important; /* Text turns white */
}

.contact-info-block:hover .info-icon {
    background: #ffffff !important; /* Circle turns white */
    color: #2563EB !important; /* Icon turns blue */
}

/* Map Above Content Top-To-Down Animation */
.reveal-down {
    animation: revealDownAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
@keyframes revealDownAnim {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* ==========================================================================
   STAY CONNECTED CARDS INCREASED HEIGHT PADDING
   ========================================================================== */
.contact-info-block {
    padding: 36px 25px !important; /* Increased vertical padding to add roughly 16px to height */
}
/* ==========================================================================
   STAY CONNECTED CARDS INCREASED HEIGHT PADDING
   ========================================================================== */
.contact-info-block {
    padding: 36px 25px !important; /* Increased vertical padding to add roughly 16px to height */
}
/* ==========================================================================
   PHONE NUMBER COUNTRY CODE DROPDOWN
   ========================================================================== */
.phone-input-wrapper {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
}

.country-code-select {
    background: #F3F4F6 !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 16px 10px 16px 20px !important;
    font-size: 1rem !important;
    color: #4B5563 !important;
    border-radius: 8px 0 0 0 !important;
    cursor: pointer !important;
    font-family: 'Lato', sans-serif !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    border-right: 1px solid #E2E8F0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Custom simple arrow for select */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px !important;
    padding-right: 35px !important; /* Make room for arrow */
}

.country-code-select:focus {
    background: #E5E7EB !important;
    border-bottom: 2px solid #3B82F6 !important;
}

.phone-number-input {
    border-radius: 0 8px 0 0 !important;
    flex-grow: 1 !important;
}
/* ==========================================================================
   PHONE NUMBER COUNTRY CODE DROPDOWN
   ========================================================================== */
.phone-input-wrapper {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
}

.country-code-select {
    background: #F3F4F6 !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 16px 10px 16px 20px !important;
    font-size: 1rem !important;
    color: #4B5563 !important;
    border-radius: 8px 0 0 0 !important;
    cursor: pointer !important;
    font-family: 'Lato', sans-serif !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    border-right: 1px solid #E2E8F0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Custom simple arrow for select */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px !important;
    padding-right: 35px !important; /* Make room for arrow */
}

.country-code-select:focus {
    background: #E5E7EB !important;
    border-bottom: 2px solid #3B82F6 !important;
}

.phone-number-input {
    border-radius: 0 8px 0 0 !important;
    flex-grow: 1 !important;
}

/* ==========================================================================
   INTL-TEL-INPUT OVERRIDES
   ========================================================================== */
.iti {
    width: 100% !important;
    display: block !important;
}
.iti__flag-container {
    z-index: 10 !important;
}
.iti__selected-flag {
    padding: 0 16px 0 20px !important;
    background: transparent !important;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}
/* Ensure the input padding makes room for the flag */
.iti input[type="tel"] {
    padding-left: 90px !important;
}

/* ==========================================================================
   INTL-TEL-INPUT OVERRIDES
   ========================================================================== */
.iti {
    width: 100% !important;
    display: block !important;
}
.iti__flag-container {
    z-index: 10 !important;
}
.iti__selected-flag {
    padding: 0 16px 0 20px !important;
    background: transparent !important;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}
/* Ensure the input padding makes room for the flag */
.iti input[type="tel"] {
    padding-left: 90px !important;
}

/* ==========================================================================
   INTL-TEL-INPUT PADDING FIX FOR OVERLAPPING
   ========================================================================== */
.iti {
    width: 100% !important;
}
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input[type="tel"],
.iti input[type="tel"] {
    padding-left: 110px !important; /* Increase padding to push text away from flag & dial code */
}
/* For very wide dial codes, some themes need more padding */
.iti--separate-dial-code.iti--show-flags input[type="tel"] {
    padding-left: 120px !important;
}

/* ==========================================================================
   INTL-TEL-INPUT PADDING FIX FOR OVERLAPPING
   ========================================================================== */
.iti {
    width: 100% !important;
}
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input[type="tel"],
.iti input[type="tel"] {
    padding-left: 110px !important; /* Increase padding to push text away from flag & dial code */
}
/* For very wide dial codes, some themes need more padding */
.iti--separate-dial-code.iti--show-flags input[type="tel"] {
    padding-left: 120px !important;
}

/* ==========================================================================
   FAQ SECTION STYLES
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.faq-item {
    border-bottom: 1px solid #E2E8F0;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: #0257D0;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-answer p {
    padding: 0 0 24px 0;
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large max-height for transition */
    opacity: 1;
}
.faq-item.active .faq-question {
    color: #0257D0;
}
.faq-item.active .faq-icon {
    color: #0257D0;
}

/* ==========================================================================
   FAQ SECTION STYLES
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.faq-item {
    border-bottom: 1px solid #E2E8F0;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: #0257D0;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-answer p {
    padding: 0 0 24px 0;
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large max-height for transition */
    opacity: 1;
}
.faq-item.active .faq-question {
    color: #0257D0;
}
.faq-item.active .faq-icon {
    color: #0257D0;
}

/* ==========================================================================
   HORIZONTAL LOGO SIZING
   ========================================================================== */
.logo-img {
    height: auto !important;
    max-height: 60px !important;
    width: auto !important;
    object-fit: contain;
}
.footer-logo-img {
    height: auto !important;
    max-height: 75px !important;
    width: auto !important;
    object-fit: contain;
}
@media (max-width: 768px) {
    .logo-img {
        max-height: 32px !important;
    }
    .footer-logo-img {
        max-height: 60px !important;
    }
}

/* ==========================================================================
   HORIZONTAL LOGO SIZING
   ========================================================================== */
.logo-img {
    height: auto !important;
    max-height: 60px !important;
    width: auto !important;
    object-fit: contain;
}
.footer-logo-img {
    height: auto !important;
    max-height: 75px !important;
    width: auto !important;
    object-fit: contain;
}
@media (max-width: 768px) {
    .logo-img {
        max-height: 32px !important;
    }
    .footer-logo-img {
        max-height: 60px !important;
    }
}





/* ==========================================================================
   VIDEO MODAL LIGHTBOX
   ========================================================================== */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}
.video-modal-body {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* ==========================================================================
   VIDEO MODAL LIGHTBOX
   ========================================================================== */
.video-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}
.video-modal-body {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}



/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* Hero Section */
.about-hero-section {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.about-hero-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.about-desc-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ==========================================================================
   ABOUT US PAGE — REVISED STYLES
   ========================================================================== */

/* Hero Section: reuses ind-header-section styles naturally */
.about-header-section {
    padding-bottom: 70px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .about-hero-grid { grid-template-columns: 1fr; }
}

/* Who We Are Section — new layout */
.about-who-section {
    background: #ffffff;
    padding: 90px 0 80px;
}

/* Top row: heading left, description right */
.about-who-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .about-who-top-row { grid-template-columns: 1fr; gap: 30px; }
}

.about-who-heading {
    font-size: 2.4rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-who-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* Bottom row: cards column + stats column */
.about-who-bottom-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

@media (max-width: 991px) {
    .about-who-bottom-layout { grid-template-columns: 1fr; }
}

.about-who-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 767px) {
    .about-who-cards-col { grid-template-columns: 1fr; }
}

.about-video-col-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-who-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #E2E8F0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-who-card-video {
    height: 400px;
}

.about-who-card-dash {
    height: 380px;
}

.about-who-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Review Badge */
.about-review-badge {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatars {
    display: flex;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    z-index: 1;
}
.review-avatar:nth-child(2) { z-index: 2; }
.review-avatar:nth-child(3) { z-index: 3; }

.review-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-stars {
    color: #FBBF24;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 700;
}

.review-score {
    color: #1E293B;
    font-size: 14px;
    margin-left: 4px;
}

.review-count {
    color: #64748B;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* Play overlay for video card */
.about-who-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.30);
    transition: background 0.3s ease;
    border-radius: 16px;
}

.about-who-card-video:hover .about-who-play-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.about-play-btn {
    width: 72px;
    height: 72px;
    background: #ffffff;
    color: #0257D0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    padding-left: 4px; /* optical centering for play icon */
}

.about-play-btn::before,
.about-play-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    animation: about-pulse 2.2s infinite ease-out;
    z-index: -1;
}
.about-play-btn::after { animation-delay: 1.1s; }

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

.about-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}

/* Stats column — vertical cards */
.about-who-stats-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-who-stat-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-who-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,99,235,0.08);
    border-color: #BFDBFE;
}

.about-stat-num-v {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.about-stat-label-v {
    font-size: 1rem;
    color: #64748B;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* YouTube Video Modal */
.about-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(4px);
}

.about-video-modal-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
}

.about-video-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.about-video-close:hover {
    background: rgba(255,255,255,0.3);
}

.about-video-frame-wrapper {
    width: 100%;
    height: 100%;
}

.about-video-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Misc reused styles */
.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-section-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
}

/* Our Platform Interactive Module */
.about-platform-section {
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-platform-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(37, 99, 235, 0.02) 55%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-platform-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-platform-section .ind-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .platform-split-grid { grid-template-columns: 1fr; }
}

.platform-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.platform-chip {
    padding: 8px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 30px;
    background: #ffffff;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.platform-chip:hover {
    border-color: #94A3B8;
    background: #F1F5F9;
}

.platform-chip.active {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.platform-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.platform-content-display {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.platform-module-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.platform-module-content.active {
    display: block;
    animation: slideUpFade 0.3s forwards ease-out;
}

@keyframes slideUpFade {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

.module-desc {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.module-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #E2E8F0;
}

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


.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-who-grid {
        grid-template-columns: 1fr;
    }
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-section-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
}

/* Video Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    border-radius: inherit;
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.2);
}

.play-btn-pulse {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #0257D0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-pulse::before,
.play-btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.play-btn-pulse::after {
    animation-delay: 1s;
}

.play-btn-pulse:hover {
    transform: scale(1.1);
    color: #0143a3;
}

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

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.about-stat-card {
    background: #F8FAFC;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: #CBD5E1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748B;
    font-weight: 500;
    margin: 0;
}

/* Our Platform Interactive Module */
.about-platform-section {
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
}

.platform-split-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: start;
}

@media (max-width: 991px) {
    .platform-split-grid {
        grid-template-columns: 1fr;
    }
}

.platform-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.platform-chip {
    padding: 8px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 30px;
    background: #ffffff;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.platform-chip:hover {
    border-color: #94A3B8;
    background: #F1F5F9;
}

.platform-chip.active {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.platform-content-display {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.platform-module-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.platform-module-content.active {
    display: block;
    animation: slideUpFade 0.3s forwards ease-out;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

.module-desc {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.module-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #E2E8F0;
}

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

/* ==========================================================================
   PRICING PAGE STYLES (EXACT MATCH TO REFERENCE IMAGE 1 & 4)
   ========================================================================== */

html {
    scroll-padding-top: 140px;
}

.pricing-section {
    padding: 100px 0 110px;
    background: #FAFCFF;
    position: relative;
    scroll-margin-top: 140px;
}

#pricing-cards {
    scroll-margin-top: 140px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 0;
}

@media (max-width: 991px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Base Pricing Card (Neutral State) */
.pricing-card {
    background: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    box-shadow: none;
}

/* Badge at top of card (Starter, Growth, Pro) */
.pricing-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: #FFFFFF;
    color: #1E293B;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    align-self: flex-start;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Pricing Header */
.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1A1D1F;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    transition: color 0.4s ease;
}

.pricing-amount .period {
    font-size: 0.88rem;
    font-weight: 400;
    color: #6F767E;
    transition: color 0.4s ease;
}

.pricing-desc {
    color: #6F767E;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 28px;
    min-height: 44px;
    transition: color 0.4s ease;
}

/* Pricing CTA Button (Upgrade Now) - Reduced Width matching 3rd Reference Image */
.pricing-btn {
    width: fit-content;
    min-width: 180px;
    max-width: 220px;
    height: 48px;
    border-radius: 50px;
    border: none;
    background: #2563EB;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 4px 4px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-sizing: border-box;
    margin-bottom: 28px;
}

.pricing-btn .btn-arrow-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    margin-left: auto;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

/* Feature Divider */
.pricing-divider {
    border-top: 1px solid #E6E8EC;
    margin-bottom: 24px;
    transition: border-color 0.4s ease;
}

/* Key Features Section */
.pricing-features-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A1D1F;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #33383F;
    transition: color 0.4s ease;
}

.pricing-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* ==========================================
   SCROLL REVEAL (DOWN-TO-UP SMOOTH TRANSITION)
   FOR PRICING CARD CONTENTS (IMAGE 2 MATCH)
   ========================================== */

.pricing-card .pricing-badge,
.pricing-card .pricing-amount,
.pricing-card .pricing-desc,
.pricing-card .pricing-btn,
.pricing-card .pricing-divider,
.pricing-card .pricing-features-title,
.pricing-card .pricing-features-list {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card.visible .pricing-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}

.pricing-card.visible .pricing-amount {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.24s;
}

.pricing-card.visible .pricing-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.36s;
}

.pricing-card.visible .pricing-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.48s;
}

.pricing-card.visible .pricing-divider,
.pricing-card.visible .pricing-features-title,
.pricing-card.visible .pricing-features-list {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* ==========================================
   ACTIVE CARD STATE (DYNAMICALLY TOGGLED BY JS)
   ========================================== */

.pricing-card.active {
    background: #2563EB;
    border-color: #2563EB;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.pricing-card.active .pricing-badge {
    background: #FFFFFF;
    color: #1E293B;
}

.pricing-card.active .pricing-amount {
    color: #FFFFFF;
}

.pricing-card.active .pricing-amount .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.active .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.active .pricing-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.active .pricing-features-title {
    color: #FFFFFF;
}

.pricing-card.active .pricing-feature-item {
    color: #FFFFFF;
}

.pricing-card.active .pricing-check-icon {
    background: #FFFFFF;
    color: #2563EB;
}

/* Button style on Active Card (Transparent with thin white border like Image 1) */
.pricing-card.active .pricing-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
    box-shadow: none;
}

.pricing-card.active .pricing-btn .btn-arrow-icon {
    background: #FFFFFF !important;
    color: #2563EB !important;
}

/* Button Hover State on Active Card (Turns solid white pill like Image 4!) */
.pricing-card.active .pricing-btn:hover {
    background: #FFFFFF !important;
    border-color: #FFFFFF !important;
    color: #1E293B !important;
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card.active .pricing-btn:hover .btn-arrow-icon {
    background: #2563EB !important;
    color: #FFFFFF !important;
}

/* General Button Hover on Neutral Card */
.pricing-card:not(.active) .pricing-btn:hover {
    background: #0257D0 !important;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(2, 87, 208, 0.3) !important;
}

/* ==========================================
   FACILITEASY BLOG PAGE STYLING
   ========================================== */

.blog-grid-section {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #FAFCFF 0%, #F1F5F9 100%);
    position: relative;
    z-index: 2;
}

/* 3 Columns x 4 Rows Responsive Cards Grid */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Individual Blog Card */
.blog-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    position: relative;
}

/* Card Image Container */
.blog-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0F172A;
    position: relative;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* Card Content Body */
.blog-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: transparent;
    transition: background-color 300ms ease;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: #0F172A;
    margin-bottom: 24px;
    transition: color 300ms ease;
}

/* Card Footer CTA */
.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Read Now Pill Button (Normal state matching Image 2: Solid Blue Pill with White Circle Arrow) */
.blog-read-now-btn {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF !important;
    background: #0257D0;
    padding: 6px 8px 6px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 300ms ease;
    box-shadow: 0 4px 12px rgba(2, 87, 208, 0.2);
}

.btn-bitelo-primary {
    background: var(--secondary);
    color: #fff;
    padding: 12px 28px;
    min-height: 52px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    flex-shrink: 0;
}

.btn-bitelo-primary .arrow-circle {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.btn-bitelo-primary:hover {
    background: #fff !important;
    color: #0257D0 !important;
    border-color: #0257D0 !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(2, 87, 208, 0.15);
}

.btn-bitelo-primary:hover .arrow-circle {
    background: #0257D0 !important;
}

.btn-bitelo-primary:hover .arrow-circle svg {
    color: #fff !important;
    /* White arrow on blue circle */
}

/* Watch Video Button */
.btn-watch-video {
    background: #fff;
    color: #1B2A4A;
    border: 1px solid #E2E8F0;
    padding: 12px 28px;
    min-height: 52px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.blog-read-now-btn .btn-arrow-icon {
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0257D0;
    transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}

/* Card Hover Micro-Interactions (Prompt Spec) */
.blog-card:hover {
    background: #2563EB !important;
    border-color: #2563EB !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card:hover .blog-card-title {
    color: #FFFFFF !important;
}

.blog-card:hover .blog-read-now-btn {
    background: #FFFFFF !important;
    color: #0257D0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-card:hover .blog-read-now-btn .btn-arrow-icon {
    background: #0257D0 !important;
    color: #FFFFFF !important;
    transform: translateX(3px);
}

/* Scroll Entrance Animation Initial State */
.blog-card.reveal-stagger {
    opacity: 0;
    transform: translateY(40px) translateX(-20px);
    transition: opacity 500ms cubic-bezier(0.25, 1, 0.5, 1), transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.blog-card.reveal-stagger.in-view {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ==========================================================================
   QUICK INDUSTRY SWITCHER BREADCRUMB DROPDOWN & HEADER NAV DROPDOWN
   ========================================================================== */

/* Breadcrumbs Stacking Context */
.ind-breadcrumbs {
    position: relative;
    z-index: 999;
}

.ind-header-grid {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Switcher Wrapper */
.ind-switcher-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    z-index: 999;
}

/* Switcher Button Badge */
.ind-switcher-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 99px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
    user-select: none;
}

.ind-switcher-badge:hover,
.ind-switcher-wrapper:hover .ind-switcher-badge,
.ind-switcher-wrapper.active .ind-switcher-badge {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.ind-switcher-icon {
    font-size: 14px;
    line-height: 1;
}

.ind-switcher-label {
    letter-spacing: 0.02em;
}

.ind-switcher-arrow {
    transition: transform 0.25s ease;
}

.ind-switcher-wrapper:hover .ind-switcher-arrow,
.ind-switcher-wrapper.active .ind-switcher-arrow {
    transform: rotate(180deg);
}

/* Switcher Dropdown Menu */
.ind-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(8px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    min-width: 230px;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ind-switcher-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.ind-switcher-wrapper:hover .ind-switcher-menu,
.ind-switcher-wrapper.active .ind-switcher-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ind-switcher-header {
    padding: 6px 12px 4px;
    font-size: 10px;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Dropdown Menu Item */
.ind-switcher-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ind-switcher-item:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    transform: translateX(3px);
}

.ind-switcher-item.active {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    font-weight: 700;
}

.ind-switcher-item .item-icon {
    font-size: 16px;
}

.ind-switcher-item .item-title {
    flex: 1;
    text-align: left;
}

.ind-switcher-item .item-check {
    margin-left: auto;
}

/* --------------------------------------------------------------------------
   HEADER NAV "INDUSTRIES" HOVER DROPDOWN
   -------------------------------------------------------------------------- */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-item-has-children .nav-arrow {
    transition: transform 0.25s ease;
}

.nav-item-has-children:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    min-width: 210px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    list-style: none;
    margin: 0;
    z-index: 999;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

.nav-dropdown li {
    margin: 0;
    padding: 0;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    transform: translateX(3px);
}

.nav-dropdown .drop-icon {
    font-size: 16px;
}

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

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN FOR TABLETS & MOBILE DEVICES
   ========================================================================== */

/* Tablet Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Hero Header Section */
    .ind-header-section {
        padding: 100px 0 60px;
    }

    .ind-page-title {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .ind-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ind-header-card-left {
        max-height: 320px;
        height: 320px;
    }

    /* Industry Modules 4-Cards Grid */
    .modules-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    /* Challenges & Capabilities Grids */
    .ind-challenges-grid,
    .ind-capabilities-grid,
    .ind-benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Features Carousel Track & Cards */
    .carousel-track {
        padding: 0 calc(50% - 175px);
        gap: 24px;
    }

    .carousel-card {
        min-width: 350px;
        width: 350px;
        padding: 20px;
    }

    .visual-mockup-wrapper {
        height: 200px;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 24px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Header Section */
    .ind-header-section {
        padding: 80px 0 40px;
    }

    .ind-breadcrumbs {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 11px;
        margin-bottom: 30px;
    }

    .ind-page-title {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .ind-header-card-left {
        max-height: 250px;
        height: 250px;
        padding: 10px;
    }

    .ind-header-card-right {
        padding: 24px 20px;
    }

    /* Modules 4-Cards Grid to Single Column */
    .modules-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .module-card {
        padding: 24px 20px;
    }

    .module-card h4 {
        font-size: 18px;
    }

    /* Challenges & Capabilities Grids to Single Column */
    .ind-challenges-grid,
    .ind-capabilities-grid,
    .ind-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Features Carousel Mobile Sizing */
    .carousel-track {
        padding: 0 calc(50% - 150px);
        gap: 16px;
    }

    .carousel-card {
        min-width: 300px;
        width: 300px;
        padding: 16px;
        border-radius: 20px;
    }

    .visual-mockup-wrapper {
        height: 170px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .card-cta-pill {
        font-size: 13px;
        padding: 5px 5px 5px 16px;
    }

    .cta-arrow-circle {
        width: 28px;
        height: 28px;
    }

    .carousel-pagination {
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 40px;
    }

    .pagination-dot {
        width: 8px;
        height: 8px;
    }

    /* Industry Switcher Dropdown Mobile Alignment */
    .ind-switcher-badge {
        padding: 4px 10px;
        font-size: 11px;
        gap: 5px;
    }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .ind-page-title {
        font-size: 22px;
    }

    .carousel-track {
        padding: 0 calc(50% - 135px);
    }

    .carousel-card {
        min-width: 270px;
        width: 270px;
    }

    .visual-mockup-wrapper {
        height: 150px;
    }
}

/* ==========================================================================
   FEATURES PAGE STYLES (SAAS 12-FEATURE EXPLORER & SYSTEM)
   ========================================================================== */

/* Hero Section Refinements (150px padding to clear sticky header nav bar) */
.feat-hero-section {
    padding: 150px 0 40px !important;
}

/* Overview Section (Equal Card Heights Matching Industry Hero) */
.feat-overview-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.feat-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.feat-overview-left,
.feat-overview-right {
    height: 100%;
}

.feat-mockup-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.feat-mockup-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feat-mockup-card:hover .feat-mockup-img {
    transform: scale(1.04);
}

.feat-overview-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page .ind-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feat-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563EB;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.feat-overview-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-page .ind-desc-text {
    font-size: 17.5px;
    line-height: 1.65;
    color: #475569;
    margin: 18px 0 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.feat-overview-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Feature Explorer Section */
.feat-explorer-section {
    padding: 90px 0;
    background: #F8FAFC;
}

.feat-explorer-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Nav (12 Accordion Items) */
.feat-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

.feat-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: left;
    width: 100%;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    outline: none;
}

.feat-nav-item:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563EB;
    transform: translateX(4px);
}

.feat-nav-item.active {
    background: #2563EB;
    border-color: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
    transform: translateX(6px);
}

.feat-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #F1F5F9;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.feat-nav-item.active .feat-nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.feat-nav-title {
    flex: 1;
    line-height: 1.3;
}

/* Circular Arrow Button on Sidebar Item */
.feat-nav-arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.feat-nav-item:hover .feat-nav-arrow-circle {
    background: #2563EB;
    color: #FFFFFF;
    transform: translateX(2px);
}

.feat-nav-item.active .feat-nav-arrow-circle {
    background: #FFFFFF;
    color: #2563EB;
    transform: translateX(3px);
}

/* Dynamic Right Content Display Panel & Keyframe Entry Animation */
.feat-content-container {
    position: relative;
    min-height: 550px;
}

@keyframes featurePanelEnter {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feat-content-panel {
    display: none;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.feat-content-panel.active {
    display: block;
    animation: featurePanelEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feat-panel-badge {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.feat-panel-title {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.25;
}

.feat-panel-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 24px;
}

.feat-divider {
    height: 1px;
    background: #F1F5F9;
    margin: 24px 0;
}

/* Compact Mockup with Interactive Hover Zoom Effect */
.feat-compact-mockup-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    background: #0F172A;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.feat-compact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feat-compact-mockup-wrapper:hover .feat-compact-img {
    transform: scale(1.05);
}

.feat-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.feat-panel-.contact-page .ind-desc-text {
    font-size: 17.5px;
    line-height: 1.65;
    color: #475569;
    margin: 18px 0 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.feat-panel-overview p {
    font-size: 17.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 12px;
}

.feat-panel-overview p:last-child {
    margin-bottom: 0;
}

/* Key Highlights 2x3 Grid */
.feat-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-top: 16px;
}

.feat-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1E293B;
    background: #F8FAFC;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
}

.feat-highlight-item .check-icon {
    flex-shrink: 0;
}

/* Key Benefits Section */
.feat-benefits-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.feat-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feat-benefit-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.feat-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #2563EB;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.15);
}

.feat-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.06);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.feat-benefit-card:hover .feat-benefit-icon {
    background: #2563EB !important;
    color: #FFFFFF !important;
    transform: scale(1.05);
}

.feat-benefit-card:hover .feat-benefit-icon svg {
    stroke: #FFFFFF !important;
}

.feat-benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.35;
}

.feat-benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.feat-card-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #2563EB;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: auto;
    text-align: center;
}

/* Related Features Horizontal Track */
.feat-related-section {
    padding: 80px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.feat-related-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

.feat-related-card {
    min-width: 280px;
    width: 280px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feat-related-card:hover {
    transform: translateY(-6px);
    border-color: #2563EB;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.feat-related-card:hover .cta-arrow-circle {
    transform: translateX(4px);
}

.feat-rel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F1F5F9;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feat-rel-badge {
    font-size: 11px;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.feat-related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.feat-related-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

/* Features Responsive Breakpoints */
@media (max-width: 1024px) {
    .feat-overview-grid {
        grid-template-columns: 1fr;
    }

    .feat-explorer-grid {
        grid-template-columns: 1fr;
    }

    .feat-sidebar-nav {
        position: static;
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feat-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feat-highlights-grid {
        grid-template-columns: 1fr;
    }

    .feat-benefits-grid {
        grid-template-columns: 1fr;
    }

    .feat-panel-title {
        font-size: 24px;
    }

    .feat-content-panel {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   SERVICES / PLATFORM CAPABILITIES CLEAN ACCORDION SECTION
   ========================================================================== */
.services-accordion-section {
    padding: 120px 0;
    position: relative;
    background: #FFFFFF;
}

.services-layout-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: flex-start;
}

.services-left-sticky {
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

/* Hexagon Pill Badge */
.plat-cap-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #0257D0;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

/* Accordion Item Rows */
.services-accordion-list {
    display: flex;
    flex-direction: column;
}

.service-accordion-item {
    border-bottom: 1px solid #F1F5F9;
    padding: 18px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-accordion-item:first-child {
    border-top: 1px solid #F1F5F9;
}

.service-item-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.service-item-number {
    font-size: 20px;
    font-weight: 700;
    color: #94A3B8;
    line-height: 1.3;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-accordion-item.active .service-item-number {
    color: #0257D0;
}

.service-item-title-row {
    flex-grow: 1;
}

.service-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-accordion-item.active .service-item-title {
    color: #0257D0;
}

.service-accordion-item:hover:not(.active) .service-item-title {
    color: #0257D0;
}

/* Arrow Button Toggle */
.service-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-arrow-btn .arrow-icon-normal {
    display: block;
}

.service-arrow-btn .arrow-icon-active {
    display: none;
}

.service-accordion-item:hover:not(.active) .service-arrow-btn {
    border-color: #0257D0;
    color: #0257D0;
    transform: scale(1.05);
}

.service-accordion-item.active .service-arrow-btn {
    background: #0257D0;
    border-color: #0257D0;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(2, 87, 208, 0.3);
}

.service-accordion-item.active .service-arrow-btn .arrow-icon-normal {
    display: none !important;
}

.service-accordion-item.active .service-arrow-btn .arrow-icon-active {
    display: block !important;
    stroke: #FFFFFF !important;
}

/* Expandable Content Container */
.service-expanded-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin 0.4s ease;
}

.service-accordion-item.active .service-expanded-content {
    max-height: 500px;
    opacity: 1;
}

.service-item-description {
    font-size: 15.5px;
    line-height: 1.6;
    color: #64748B;
    margin: 8px 0 14px;
    max-width: 520px;
}

.service-preview-img-wrap {
    display: inline-block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.service-preview-img-wrap img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-preview-img-wrap:hover img {
    transform: scale(1.04);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .services-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-left-sticky {
        position: static;
    }

    .service-item-title {
        font-size: 20px;
    }

    .service-preview-img-wrap img {
        max-width: 100%;
    }
}

/* ==========================================================================
   MODULE CARDS CHECKLIST STYLES
   ========================================================================== */
.module-card-divider {
    height: 1px;
    background: #F1F5F9;
    margin: 20px 0 16px;
    width: 100%;
}

.module-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.module-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.module-check-item .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(2, 87, 208, 0.08);
    color: #0257D0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

/* ==========================================================================
   2-COLUMN ABOUT SPLIT SECTION STYLES
   ========================================================================== */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-gif-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.09);
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-gif-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.about-gif-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

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