/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./public/css/homepage.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
/* Homepage Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: white;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    overflow: hidden;
}

/* Wave at bottom */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: white;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

/* AI Digital Studio Section Styles */
.studio-section {
    /* background: white; */
    padding: 0px 23px 83px 24px;
    max-width: 1580px;
    margin: 0 auto;
}

.text-brand-gradient {
    background: linear-gradient(135deg, #2A2D9F, #5356D2, #9092E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.gradient-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.gradient-btn-primary:hover::before {
    left: 0;
}

.gradient-btn-primary > * {
    position: relative;
    z-index: 1;
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #3b82f6;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes metricGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.2),
                    0 0 20px rgba(59, 130, 246, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4),
                    0 0 30px rgba(59, 130, 246, 0.2),
                    0 0 40px rgba(59, 130, 246, 0.1);
        transform: scale(1.02);
    }
}

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

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-2px);
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    25% {
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
        box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translateY(-15px) rotateX(0deg) rotateY(5deg);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
    }
    75% {
        transform: translateY(-10px) rotateX(-5deg) rotateY(0deg);
        box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes rubberBand {
    0% { transform: scale(1); }
    30% { transform: scaleX(1.25) scaleY(0.75); }
    40% { transform: scaleX(0.75) scaleY(1.25); }
    50% { transform: scaleX(1.15) scaleY(0.85); }
    65% { transform: scaleX(0.95) scaleY(1.05); }
    75% { transform: scaleX(1.05) scaleY(0.95); }
    100% { transform: scale(1); }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes rotateGlow {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(180deg) brightness(1.2);
    }
    100% {
        filter: hue-rotate(360deg) brightness(1);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40% {
        transform: scale(1.1);
    }
}

@keyframes popupScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes dashboardPopup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes barPulse {
    0%, 100% {
        height: var(--target-height);
        opacity: 1;
    }
    50% {
        height: calc(var(--target-height) * 1.1);
        opacity: 0.8;
    }
}

@keyframes metricFlash {
    0%, 100% {
        background: rgba(255, 255, 255, 0.1);
    }
    50% {
        background: rgba(255, 255, 255, 0.2);
    }
}

@keyframes metricDataRefresh {
    0%, 70% { opacity: 1; }
    85% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes dashboardPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

@keyframes dashboardGlow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

@keyframes chartBarGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes pieChartDraw {
    from {
        stroke-dasharray: 0 176;
    }
}

@keyframes numberCountUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Background effects */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(124, 58, 237, 0.3));
    top: -10%;
    left: -5%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.2));
    bottom: 10%;
    right: -5%;
}

/* Additional decorative shapes */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -15%;
    right: 10%;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    top: 30%;
    right: -10%;
    animation: shapeFloat 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation: shapeFloat 22s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.abstract-shape-2 {
    position: absolute;
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, rgba(220, 38, 38, .15), rgba(239, 68, 68, .15));
    border-radius: 40% 60% 30% 70%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Content container */
.container {
    position: relative;
    z-index: 10;
    max-width: 1598px;
    margin: -20px auto 0;
    padding: 137px 56px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    min-height: auto;
}

/* Left content */
.left-content {
    max-width: 700px;
}

/* Hero graphic container */
.hero-graphic-container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    width: -moz-fit-content;
    width: fit-content;
}

.badge-dot {
    display: none;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gradient-text {
    /* background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 1);
    color: #1e40af;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary svg {
    stroke: #1e40af;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white !important;
    color: #2563eb !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid white !important;
    color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Right content - Card */
.card-container {
    position: relative;
    margin-left: auto;
}

.main-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

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

.floating-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(192, 132, 252, 0.6);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.badge-ring::before,
.badge-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(192, 132, 252, 0.4);
    animation: rippleEffect 2s ease-out infinite;
}

.badge-ring::before {
    width: 120%;
    height: 120%;
    animation-delay: 0s;
}

.badge-ring::after {
    width: 140%;
    height: 140%;
    animation-delay: 1s;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.badge-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
}

.badge-icon {
    width: 50px;
    height: 50px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-block {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.content-block:nth-child(1) {
    animation-delay: 0.2s;
}

.content-block:nth-child(2) {
    animation-delay: 0.5s;
}

.content-block:nth-child(3) {
    animation-delay: 0.8s;
}

.content-block:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.3);
}

.block-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.block-icon:hover {
    transform: translateZ(10px) rotateX(10deg) rotateY(10deg);
}

.block-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    border-radius: 12px;
    z-index: 1;
}

.block-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.block-text {
    flex: 1;
}

.block-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.block-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.block-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.floating-label {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #2A2D9F 0%, #5356D2 50%, #9092E2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(42, 45, 159, 0.4);
    animation: labelFloat 5s ease-in-out infinite;
}

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

/* Logo Carousel */
@keyframes logoScroll {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.logo-scroll {
    animation: logoScroll 30s linear infinite;
}

.logo-scroll:nth-child(1) { animation-delay: 0s; }
.logo-scroll:nth-child(2) { animation-delay: -10s; }
.logo-scroll:nth-child(3) { animation-delay: -20s; }
.logo-scroll:nth-child(4) { animation-delay: -25s; }
.logo-scroll:nth-child(5) { animation-delay: -15s; }

.logo-showcase:hover .logo-scroll {
    animation-play-state: paused;
}

.logo-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200%;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(42, 45, 159, 0.8),
        rgba(83, 86, 210, 1),
        rgba(144, 146, 226, 1),
        rgba(83, 86, 210, 1),
        rgba(42, 45, 159, 0.8),
        transparent
    );
    animation: borderTravel 12s ease-in-out infinite;
}

@keyframes borderTravel {
    0% { top: 0; left: -100%; width: 100%; height: 2px; }
    25% { top: 0; left: 100%; width: 100%; height: 2px; }
    25.01% { top: 0; left: calc(100% - 2px); width: 2px; height: 100%; }
    50% { top: 100%; left: calc(100% - 2px); width: 2px; height: 100%; }
    50.01% { top: calc(100% - 2px); left: 100%; width: 100%; height: 2px; }
    75% { top: calc(100% - 2px); left: -100%; width: 100%; height: 2px; }
    75.01% { top: 100%; left: 0; width: 2px; height: 100%; }
    100% { top: -100%; left: 0; width: 2px; height: 100%; }
}

@keyframes textShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.text-brand-gradient.shine {
    background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 2s ease-in-out;
}

.btn-glass {
    background: linear-gradient(135deg,
        rgba(42, 45, 159, 0.8),
        rgba(83, 86, 210, 0.9)
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(42, 45, 159, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-glass:hover {
    background: linear-gradient(135deg,
        rgba(42, 45, 159, 0.9),
        rgba(83, 86, 210, 1)
    );
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(42, 45, 159, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-glass > * {
    position: relative;
    z-index: 1;
}

/* Industry Solutions Styles */
.shine-effect {
    position: relative;
    overflow: hidden;
    background: white;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.5) 70%,
        transparent 80%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease-out;
    z-index: 10;
    pointer-events: none;
}

.shine-effect:hover::before {
    left: 100%;
}

.solution-card {
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow:
        0 20px 40px rgba(42, 45, 159, 0.15),
        0 10px 20px rgba(42, 45, 159, 0.1) !important;
}

.periodic-shine::before {
    animation: autoShine 4s ease-in-out infinite;
}

@keyframes autoShine {
    0%, 85%, 100% {
        left: -100%;
    }
    15%, 75% {
        left: 100%;
    }
}

/* Global Presence Animations */
@keyframes globeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes riseFromBottom {
    0% {
        transform: translateY(0px) translateX(0px) scale(0.3);
        opacity: 0;
    }
    10% {
        transform: translateY(-120px) translateX(30px) scale(0.5);
        opacity: 0.4;
    }
    20% {
        transform: translateY(-250px) translateX(-20px) scale(0.7);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-390px) translateX(45px) scale(0.9);
        opacity: 0.9;
    }
    40% {
        transform: translateY(-540px) translateX(-35px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-700px) translateX(60px) scale(1.2);
        opacity: 1;
    }
    60% {
        transform: translateY(-870px) translateX(-40px) scale(1.1);
        opacity: 0.9;
    }
    70% {
        transform: translateY(-1050px) translateX(50px) scale(0.9);
        opacity: 0.7;
    }
    80% {
        transform: translateY(-1240px) translateX(-30px) scale(0.7);
        opacity: 0.5;
    }
    90% {
        transform: translateY(-1440px) translateX(25px) scale(0.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-1650px) translateX(0px) scale(0.2);
        opacity: 0;
    }
}

.office-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Blog Card Styles */
.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================ */
/* RESPONSIVE DESIGN - MOBILE FIRST APPROACH  */
/* ============================================ */

/* Fix horizontal scroll and overflow issues */
html, body {
    overflow-x: hidden;
    width: 100%;
}

.container, .image-section-container, .client-success-grid {
    /* max-width: 100%; */
    overflow-x: hidden;
}

/* Tablet - Large (1024px - 1280px) */
@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
        padding: 60px 40px;
        gap: 60px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .visual-dashboard {
        max-width: 480px;
        padding: 32px;
    }

    .dashboard-title {
        font-size: 1.25rem;
    }

    .metrics-grid {
        gap: 16px;
    }

    .metric-box {
        padding: 20px;
    }

    .metric-value {
        font-size: 2rem;
    }
}

/* Tablet - Medium (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 32px;
        min-height: auto;
    }

    .left-content {
        max-width: 100%;
        text-align: center;
    }

    .card-container {
        margin-left: 0;
        margin-right: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .button-group {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.0625rem;
    }

    .main-card {
        padding: 40px;
    }

    .floating-badge {
        top: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
    }

    .badge-core {
        width: 85px;
        height: 85px;
        margin: 17px;
    }

    .badge-icon {
        width: 42px;
        height: 42px;
    }

    .floating-label {
        font-size: 1.125rem;
        padding: 14px 28px;
    }

    .content-block {
        padding: 24px;
    }

    .block-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .block-icon svg {
        width: 28px;
        height: 28px;
    }

    .block-title {
        font-size: 0.9375rem;
    }

    /* Studio Section Tablet */
    .studio-section {
        padding: 50px 32px 60px 32px;
    }

    .studio-section > div > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .studio-section aside {
        max-width: 100% !important;
        height: auto !important;
        max-height: 500px;
    }

    /* Visual Dashboard Tablet */
    .visual-dashboard {
        max-width: 100%;
        margin: 0 auto;
    }

    .chart-bars {
        height: 100px;
    }

    .progress-ring {
        width: 70px;
        height: 70px;
    }

    .progress-ring-text {
        font-size: 1.125rem;
    }
}

/* Mobile - Large (640px - 768px) */
@media (max-width: 768px) {
    .container, .image-section-container, .client-success-grid {
        max-width: 100%;
        overflow-x: hidden;
    }

    section > div ,
    section.relative > div  {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    /* section header ,
    .global-office-grid {
         padding-left: 20px !important;
        padding-right: 20px !important;
    } */

    .container {
        padding: 50px 20px;
        gap: 40px;
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
 
    

    .container aside ,
    .iam-bento-container ,
    .visual-dashboard {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Ensure sections don't overflow */
    section {
        overflow-x: hidden;
    }

    /* Standard mobile padding: 20px left and right */
    .studio-section,
    .image-section-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .left-content * {
        text-align: center;
    }

    .hero-graphic-container {
        min-height: 350px;
        margin-top: 30px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }

    /* Better mobile heading display */
    .hero-section h1 {
        font-size: 2.25rem !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
    }

    .gradient-text {
        display: inline-block;
        white-space: normal;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 5px 12px;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .button-group {
        gap: 12px;
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    .main-card {
        padding: 32px;
        border-radius: 24px;
    }

    .floating-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }

    .badge-core {
        width: 70px;
        height: 70px;
        margin: 15px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
    }

    .floating-label {
        font-size: 1rem;
        padding: 12px 24px;
        bottom: -15px;
        left: -15px;
    }

    .content-block {
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
    }

    .block-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .block-icon svg {
        width: 24px;
        height: 24px;
    }

    .block-title {
        font-size: 0.875rem;
    }

    .block-description {
        font-size: 0.8125rem;
    }

    /* Studio Section Mobile */
    .studio-section {
        padding: 40px 24px 50px 24px;
    }

    /* Visual Dashboard Mobile */
    .visual-dashboard {
        padding: 28px;
        border-radius: 20px;
    }

    .dashboard-header {
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .dashboard-title {
        font-size: 1.125rem;
    }

    .live-indicator {
        font-size: 0.6875rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .metric-box {
        padding: 18px;
    }

    .metric-value {
        font-size: 2.25rem;
    }

    .chart-container {
        padding: 20px;
        margin-bottom: 20px;
    }

    .chart-title {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }

    .chart-bars {
        height: 90px;
        gap: 8px;
    }

    .chart-bar-label {
        font-size: 0.6875rem;
    }

    .progress-ring-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .progress-ring {
        width: 65px;
        height: 65px;
    }

    .progress-ring-text {
        font-size: 1rem;
    }

    .progress-ring-label {
        font-size: 0.6875rem;
    }

    /* Industry Solutions Mobile */
    section[aria-labelledby="industry-heading"] {
        padding: 50px 24px !important;
    }

    section[aria-labelledby="industry-heading"] > div > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    section[aria-labelledby="industry-heading"] > div > div:nth-child(3) {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
  main .image-section-container .content-article.jsx-e31cef2987abe875 ul,
  main .image-section-container .content-article.jsx-e31cef2987abe875 ul li ,
  main .image-section-container .content-article.jsx-e31cef2987abe875 ul li div,
  main .image-section-container .content-article.jsx-e31cef2987abe875 ul li strong {
    text-align: left !important;
  }
}

/* Mobile - Small (480px - 640px) */
@media (max-width: 640px) {
    .container {
        padding: 40px 20px;
    }

    section .graphic-section-container.jsx-c41143b130b9c20a {
        padding: 32px 0px !important;
    }

    .badge {
        margin-bottom: 10px !important;
    }
    .masonry-grid article {
        margin-bottom: 30px !important;
    }

    .masonry-grid {
        display: inherit !important;
    }
    .faq-section > div > div > div {
        opacity: 1 !important;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.25;
    }

    /* Better mobile heading display for small screens */
    .hero-section h1 {
        font-size: 1.875rem !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        word-spacing: 0.05em;
    }

    .subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .main-card {
        padding: 24px;
    }

    .main-card  .floating-badge{
        display: block;
        right: 0px
    }

    .floating-badge {
        display: none;
    }

    .floating-label {
        position: static;
        display: inline-block;
        margin-top: 16px;
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .card-container {
        display: block !important;
        visibility: visible !important;
    }

    .card-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        visibility: visible !important;
    }

    .content-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
        display: flex !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .block-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex !important;
        visibility: visible !important;
    }

    .block-icon svg {
        stroke: #ffffff !important;
        fill: none !important;
    }

    .block-text {
        display: block !important;
        visibility: visible !important;
    }

    .block-title {
        font-size: 0.8125rem;
        color: #ffffff !important;
        display: block !important;
        visibility: visible !important;
    }

    .block-description {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
        visibility: visible !important;
    }

    /* Block images*/
   .image-section-grid .content-graphic > div.jsx-e31cef2987abe875 ,
   .image-section-grid .content-graphic.jsx-e31cef2987abe875 > div.jsx-e31cef2987abe875  {
        display: block !important;
         aspect-ratio: 0 !important;
         min-width: 350px;
    }

    .content-graphic aside {
        width: 100% !important;
    } 

    /* Wave adjustment for mobile */
    .wave-bottom {
        height: 100px;
    }

    /* Visual Dashboard Small Mobile */
    .visual-dashboard {
        padding: 24px;
    }

    .dashboard-title {
        font-size: 1rem;
    }

    .metric-box {
        padding: 16px;
    }

    .metric-label {
        font-size: 0.6875rem;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-change {
        font-size: 0.8125rem;
    }

    .chart-bars {
        height: 80px;
    }

    .progress-ring {
        width: 60px;
        height: 60px;
    }

    .progress-ring-text {
        font-size: 0.9375rem;
    }
}

/* Mobile - Extra Small (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 32px 20px;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    /* Extra small mobile heading - optimized for narrow screens */
    .hero-section h1 {
        font-size: 1.625rem !important;
        line-height: 1.35 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.01em;
    }

    .subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .badge {
        font-size: 0.625rem;
        padding: 4px 10px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.875rem;
        gap: 8px;
    }

    .main-card {
        padding: 20px;
        border-radius: 20px;
    }

    .card-container {
        display: block !important;
        visibility: visible !important;
    }

    .card-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        visibility: visible !important;
    }

    .content-block {
        padding: 16px;
        gap: 12px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
        display: flex !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .block-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        display: flex !important;
        visibility: visible !important;
    }

    .block-icon svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff !important;
        fill: none !important;
    }

    .block-text {
        display: block !important;
        visibility: visible !important;
    }

    .block-title {
        font-size: 0.75rem;
        margin-bottom: 6px;
        color: #ffffff !important;
        display: block !important;
        visibility: visible !important;
    }

    .block-description {
        font-size: 0.6875rem;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
        visibility: visible !important;
    }

    .floating-label {
        font-size: 0.8125rem;
        padding: 8px 16px;
        margin-top: 12px;
    }

    /* Studio Section Extra Small */
    .studio-section {
        padding: 32px 16px 40px 16px;
    }

    /* Visual Dashboard Extra Small */
    .visual-dashboard {
        padding: 20px;
        border-radius: 16px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .dashboard-title {
        font-size: 0.9375rem;
    }

    .metric-box {
        padding: 14px;
    }

    .metric-value {
        font-size: 1.75rem;
    }

    .chart-container {
        padding: 16px;
    }

    .chart-bars {
        height: 70px;
        gap: 6px;
    }

    .chart-bar-label {
        font-size: 0.625rem;
    }

    .progress-ring {
        width: 55px;
        height: 55px;
    }

    .progress-ring-text {
        font-size: 0.875rem;
    }

    /* Background orbs - hide on very small screens */
    .bg-orb,
    .shape-circle {
        display: none;
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

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

/* Circular flow diagram animations */
@keyframes rotate360 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 80px rgba(59, 130, 246, 0.8);
    }
}

/* Isometric platform animations */
@keyframes floatPlatform {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 10;
    }
}

/* === ANIMATED VISUAL DASHBOARD CARD === */
.visual-dashboard {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  animation: cardFloat 6s ease-in-out infinite;
  max-width: 550px;
  margin-left: auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Animated Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.metric-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out backwards;
}

.metric-box:nth-child(1) { animation-delay: 0.2s; }
.metric-box:nth-child(2) { animation-delay: 0.3s; }
.metric-box:nth-child(3) { animation-delay: 0.4s; }

.metric-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
  border-radius: 50%;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-change {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Animated Chart */
.chart-container {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  animation: slideInUp 0.6s ease-out 0.5s backwards;
}

.chart-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 12px;
}

.chart-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.chart-bar-visual {
  width: 100%;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
  animation: growBar 1s ease-out backwards;
}

.chart-bar-item:nth-child(1) .chart-bar-visual { animation-delay: 0.6s; }
.chart-bar-item:nth-child(2) .chart-bar-visual { animation-delay: 0.7s; }
.chart-bar-item:nth-child(3) .chart-bar-visual { animation-delay: 0.8s; }
.chart-bar-item:nth-child(4) .chart-bar-visual { animation-delay: 0.9s; }

.chart-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}

/* Progress Ring */
.progress-ring-container {
  display: flex;
  justify-content: space-around;
  animation: slideInUp 0.6s ease-out 1s backwards;
}

.progress-ring-item {
  text-align: center;
}

.progress-ring {
  width: 80px;
  height: 80px;
  position: relative;
}

.progress-ring svg {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  stroke: #e5e7eb;
  fill: none;
  stroke-width: 8;
}

.progress-ring-circle {
  stroke: #3b82f6;
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  animation: fillRing 1.5s ease-out 1.2s backwards;
}

.progress-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
}

.progress-ring-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 8px;
}

@keyframes growBar {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fillRing {
  from { stroke-dashoffset: 251.2; }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/products/ai-low-code-automation-platform/styles.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
/* === MOBILE RESPONSIVE STYLES FOR AI LOW CODE AUTOMATION PLATFORM === */

/* Fix "Build & Scale Faster" title section for mobile */
@media (max-width: 768px) {
  /* Target the GraphicSection with "Build and Scale Faster" title */
  .graphic-section-container {
    padding: 40px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .graphic-section-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Fix content article width */
  .content-article {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Fix title width and height */
  .content-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }

  .content-title span {
    display: block !important;
  }

  /* Fix description */
  .content-description {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  /* Fix graphic section image container */
  .graphic-section-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .graphic-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
  }

  /* Fix feature items */
  .feature-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Fix CTA buttons */
  .content-cta,
  .content-secondary-cta {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile fixes */
  .graphic-section-container {
    padding: 32px 16px !important;
  }

  .graphic-section-grid {
    gap: 24px !important;
  }

  .content-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .content-description {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .graphic-section-image {
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
  }

  .graphic-wrapper {
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
  }

  .feature-item strong {
    font-size: 0.9375rem !important;
  }

  .feature-item span {
    font-size: 0.875rem !important;
  }

  .content-cta,
  .content-secondary-cta {
    padding: 12px 20px !important;
    font-size: 0.9375rem !important;
  }
}

/* Fix for screens below 680px specifically */
@media (max-width: 680px) {
  .graphic-section-container {
    padding: 40px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .graphic-section-grid {
    width: 100% !important;
    max-width: 100% !important;
  }

  .content-article {
    width: 100% !important;
    max-width: 100% !important;
  }

  .content-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.625rem !important;
  }

  .graphic-section-image {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }

  .graphic-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }
}


/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./components/sections/BentoGrid.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
/* Bento Grid Masonry Layout */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

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

@media (max-width: 640px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* Resource Card Styles */
.resource-card {
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  /* background removed - now controlled via inline styles only */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Colors */
.resource-card.card-blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.resource-card.card-purple {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.resource-card.card-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.resource-card.card-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

/* Card Tags/Badges */
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  height: 28px;
  line-height: 1;
}

.badge-featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
}

.badge-core {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
}

.badge-integration {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-whitepaper {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border: none;
}

.badge-guide {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  border: none;
}

.badge-defense {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
}

.badge-pricing {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  border: none;
}

.badge-security {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-ai-innovation {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-transformation {
  background: white;
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-intelligence {
  background: white;
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.badge-deployment {
  background: white;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-scalability {
  background: white;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-performance {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-enterprise {
  background: white;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-solution {
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-optimizing {
  background: rgba(255, 255, 255, 0.95);
  color: #4338ca;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Resource Card Lists */
.resource-card ul {
  list-style: none;
  padding-left: 0 !important;
}

.resource-card ul li {
  position: relative;
  padding-left: 24px !important;
  display: flex;
  align-items: flex-start;
}

.resource-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #3b82f6;
}

/* White checkmarks for dark theme cards */
.resource-card[data-theme="dark"] ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

.resource-card.card-teal ul li::before,
.resource-card.card-purple ul li::before {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .resource-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .resource-card {
    padding: 20px;
  }

  .card-tag {
    font-size: 0.625rem;
    padding: 4px 10px;
    height: 24px;
  }
}

