:root {
    --primary-color: #10aece; /* cyan-600 */
    --primary-light: #06b6d4; /* cyan-500 */
    --secondary-color: #2563eb; /* blue-600 */
    --text-dark: #0f172a;
    --text-muted: #4b5563;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}
.shape-1 {
    width: 16rem; height: 16rem;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    top: 10%; left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 24rem; height: 24rem;
    background: linear-gradient(135deg, #60a5fa, #06b6d4);
    top: 50%; right: 10%;
    animation-delay: 5s;
}
.shape-3 {
    width: 20rem; height: 20rem;
    background: linear-gradient(135deg, #67e8f9, #60a5fa);
    bottom: 10%; left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Header & Nav */
.navbar-brand .logo-icon-wrapper {
    width: 2.5rem; height: 2.5rem;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.navbar-brand:hover .logo-icon-wrapper {
    transform: rotate(12deg);
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0891b2, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.custom-link {
    color: #374151;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.custom-link:hover { color: var(--primary-color); }
.custom-link::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    transition: width 0.3s;
}
.custom-link:hover::after { width: 100%; }

/* Buttons */
.cta-button {
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; align-items: center;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.cta-button::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.cta-button:hover::before
.cta-button > * { position: relative; z-index: 10; }

.secondary-button {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    background: transparent;
    border: 2px solid #d1d5db;
    color: #374151;
    transition: all 0.3s;
}
.secondary-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Hero */
.hero-section { padding-top: 8rem; padding-bottom: 5rem; }
.badge-custom {
    background: linear-gradient(90deg, #ffffff, #d7e8ff);
    border: 2px solid #d8f3ff;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    color: #0e7490;
    font-weight: 500;
}
.gradient-text {
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .animate-gradient { animation: gradientFlow 3s linear infinite; }
@keyframes gradientFlow { 0% { background-position: 0% center; } 100% { background-position: 200% center; } } */

/* Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px #d1d1d11a;
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}
.glass-card:hover { box-shadow: 0 25px 50px -12px #d1d1d11a; }

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: .5px solid #f3f4f6;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.feature-card:hover { transform: scale(1.05); }
.feature-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 10; }

.icon-wrapper {
    width: 4rem; height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #cffafe, #dbeafe);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}
.feature-card:hover .icon-wrapper { transform: scale(1.1) rotate(12deg); }

/* Animations */
.animate-float { animation: floatSingle 3s ease-in-out infinite; }
@keyframes floatSingle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.pulse-ring {
    position: absolute; inset: 0;
    border: 4px solid #22d3ee;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(0.8); opacity: 1; } 50% { transform: scale(1.2); opacity: 0; } }

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out backwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.delay-200 { animation-delay: 200ms; }
.delay-400 { animation-delay: 400ms; }
.delay-600 { animation-delay: 600ms; }

/* Grids */
.grid-pattern {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}
/* Option 1: Soft glass grid with gentle parallax */
.grid-pattern-cta {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.9;
  filter: blur(0.25px);               /* tiny softening */
  transform: translateZ(0);
  will-change: transform, opacity;
  animation: ctaGridFloat 18s linear infinite;
  mix-blend-mode: overlay;            /* blends gently with CTA bg */
}

@keyframes ctaGridFloat {
  0%   { transform: translate3d(0,0,0) rotate(0deg); opacity: 0.92; }
  50%  { transform: translate3d(20px,-14px,0) rotate(.1deg); opacity: 0.98; }
  100% { transform: translate3d(0,0,0) rotate(0deg); opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
  .grid-pattern-cta { animation: none; transform: none; }
}

@keyframes gridMove { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 50px); } }

.bg-cta { background: linear-gradient(135deg, #0891b2, #2563eb, #0e7490); }
.text-cyan { color: var(--primary-color); }
.text-cyan-light { color: #cffafe; }
.hover-cyan:hover { color: var(--primary-color) !important; }

/* Capabilities Carousel Styles */
.cap-indicator {
    width: 0.75rem; height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    padding: 0;
    transition: all 0.3s;
}
.cap-indicator.active {
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    width: 2rem;
    border-radius: 9999px;
}
.bg-gradient-light { background: linear-gradient(to bottom, #f9fafb, #ffffff); }
.gradient-text-blue {
    background: var(--3, linear-gradient(308deg, #388BF5 0.4%, #24CBEE 99.6%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gradient-brand { background: linear-gradient(135deg, #ecfeff, #eff6ff); }

/* FAQ */
.faq-btn {
    box-shadow: none !important;
}
.faq-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Utilities */
.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 4rem; height: 4rem; }

.bg-light-gradient { background: linear-gradient(135deg, #f9fafb, #f3f4f6); }
.hero-graphic { height: 100%; min-height: 250px; }
.hero-icon-lg { width: 5rem; height: 5rem; }

.group:hover .group-hover-move { transform: translateX(4px); transition: transform 0.3s; }
.group-hover-rotate:hover { transform: rotate(12deg); }

/* Navbar Scroll */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.small-icon-section { 
  width: 100%;
  display: flex;
  justify-content: center;     /* center horizontally */
}

.small-center-icon {
  width: 120px;                 /* bit bigger (adjust 60–80px as you like) */
  height: 120px;
  object-fit: contain;
  border-radius: 12px;         /* optional rounded look */
  padding: 6px;
}
