

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Color Palette */
  --primary-orange: #FE5722;
  --primary-orange-hover: #E64A19;
  --orange-light: rgba(254, 87, 34, 0.1);
  --orange-border: rgba(254, 87, 34, 0.25);
  
  --bg-light: #FAF6F2;
  --bg-cream: #F3EFEC;
  --bg-card-light: #FFFFFF;
  
  --bg-dark: #0F0C09;
  --bg-dark-secondary: #16120E;
  --bg-dark-card: #1D1814;
  
  --text-dark: #0F0C09;
  --text-body: #4A443F;
  --text-muted: #7E7770;
  
  --text-light: #FAF6F2;
  --text-light-body: #C9C3BC;
  --text-light-muted: #8E8780;
  
  --border-light: #E6E0DA;
  --border-dark: #2A241F;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 4px 12px rgba(15, 12, 9, 0.03);
  --shadow-md: 0 12px 32px rgba(15, 12, 9, 0.06);
  --shadow-lg: 0 20px 48px rgba(15, 12, 9, 0.1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Helpers */
.font-display {
  font-family: var(--font-main);
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  letter-spacing: -0.03em;
  color: var(--text-dark);
  font-weight: 700;
}

.text-orange {
  color: var(--primary-orange) !important;
}

/* Badge Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: var(--orange-light);
  color: var(--primary-orange);
  border: 1px solid var(--orange-border);
  width: fit-content;
}

.pill-badge.pill-badge-dark {
  background-color: rgba(254, 87, 34, 0.15);
  color: var(--primary-orange);
  border-color: rgba(254, 87, 34, 0.3);
}

.pill-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-orange);
}

/* Buttons */
.btn-flexio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-flexio-primary {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: 0 8px 24px rgba(254, 87, 34, 0.25);
}

.btn-flexio-primary:hover {
  background-color: var(--primary-orange-hover);
  border-color: var(--primary-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(254, 87, 34, 0.35);
}

.btn-flexio-secondary {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  border-color: var(--border-light);
}

.btn-flexio-secondary:hover {
  background-color: #EAE3DD;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-flexio-outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-flexio-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-flexio-dark {
  background-color: var(--bg-dark);
  color: #FFFFFF;
}

.btn-flexio-dark:hover {
  background-color: #241D17;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Floating Fixed Navbar */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0 24px;
}

.navbar-flexio {
  background: rgba(250, 246, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(230, 224, 218, 0.8);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.navbar-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-brand-logo .logo-icon {
  width: 12px;
  height: 12px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: inline-block;
}

.nav-link-flexio {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.nav-link-flexio:hover, .nav-link-flexio.active {
  color: var(--primary-orange);
  background-color: rgba(254, 87, 34, 0.08);
}

/* Hero Section (Exact Match to Reference Image input_file_2.png) */
.hero-section {
  padding-top: 140px;
  padding-bottom: 0px;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero-orange-badge {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  max-width: 600px;
  text-align: left;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* Auto-Sliding Hero Gallery Strip matching exact image shapes (input_file_3.png & input_file_4.png fix) */
.hero-gallery-container {
  margin-top: 60px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  display: flex;
  user-select: none;
  padding: 20px 0;
}

.hero-gallery-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: heroGalleryMarquee 38s linear infinite;
  will-change: transform;
}

.hero-gallery-container:hover .hero-gallery-track {
  animation-play-state: paused;
}

@keyframes heroGalleryMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Perfect Circle Gallery Item (Hardware Accelerated Clip-Path Masking) */
.hero-card-circle {
  width: 280px;
  height: 280px;
  min-width: 280px;
  min-height: 280px;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  box-shadow: var(--shadow-sm);
}

.hero-card-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circle Image + Attached Solid Orange Vertical Block */
.hero-card-circle-orange-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-card-circle-orange-block .circle-part {
  width: 280px;
  height: 280px;
  min-width: 280px;
  min-height: 280px;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  box-shadow: var(--shadow-sm);
}

.hero-card-circle-orange-block .circle-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-circle-orange-block .orange-block-part {
  width: 80px;
  height: 280px;
  min-width: 80px;
  min-height: 280px;
  background-color: var(--primary-orange);
  flex-shrink: 0;
}

/* Teal / Mint Green Semi-Circle Graphic Shape with Orange Dot */
.hero-shape-teal-semicircle {
  width: 140px;
  height: 280px;
  min-width: 140px;
  min-height: 280px;
  background-color: #76C6B3;
  border-radius: 0 140px 140px 0;
  clip-path: inset(0 0 0 0 round 0 140px 140px 0);
  -webkit-clip-path: inset(0 0 0 0 round 0 140px 140px 0);
  flex-shrink: 0;
  position: relative;
}

.hero-shape-teal-semicircle .teal-orange-dot {
  width: 14px;
  height: 14px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

/* Logo Marquee Section */
.marquee-section {
  background-color: var(--bg-dark);
  padding: 50px 0;
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  font-weight: 600;
  margin-bottom: 30px;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.logo-item:hover {
  color: #FFFFFF;
}

/* Key Features Section */
.features-section {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.feature-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-image-wrapper img {
  width: 100%;
  /* height: 520px; */
  object-fit: cover;
}

.feature-badge-floating {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(15, 12, 9, 0.85);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Expert Services Section */
.services-section {
  padding: 120px 0;
  background-color: var(--bg-cream);
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(254, 87, 34, 0.4);
}

.service-card-image {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-arrow-btn {
  background-color: var(--primary-orange);
  color: #FFFFFF;
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.process-step-card {
  background-color: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition-fast);
}

.process-step-card:hover {
  background-color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.process-banner-img {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Impact & Stats Section */
.impact-section {
  padding: 120px 0;
  background-color: var(--bg-cream);
}

.stat-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Expertise / Industries We Serve Section (Exact Match to input_file_5.png) */
.expertise-section {
  padding: 110px 0 0;
  background-color: var(--bg-cream);
  text-align: center;
  overflow: hidden;
}

.industry-orange-badge {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.expertise-title {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight:600;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 850px;
  margin: 0 auto 50px;
}

/* Staggered 2-Tier Pill Layout sitting on bottom */
.industry-pills-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  /* overflow-x: auto; */
  padding-bottom: 10px;
}

.pill-row-top {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
  padding-left: 5%;
}

.pill-row-bottom {
  display: flex;
  gap: 14px;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
}

/* Thick Solid Color Pill Cards */
.solid-pill {
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  user-select: none;
}

.solid-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* Exact Pill Color Matching input_file_5.png */
.pill-mint { background-color: #66CBBB; color: #FFFFFF; }
.pill-peach { background-color: #FF8A5B; color: #FFFFFF; }
.pill-royal-blue { background-color: #355CDE; color: #FFFFFF; }
.pill-electric-blue { background-color: #3861F9; color: #FFFFFF; }
.pill-vibrant-orange { background-color: #FE5722; color: #FFFFFF; }
.pill-warm-yellow { background-color: #FDD874; color: #0F0C09; }
.pill-sky-blue { background-color: #6BA4E8; color: #FFFFFF; }
.pill-coral-pink { background-color: #FFAEAE; color: #FFFFFF; }

/* Pricing Section (Dark Theme) */
.pricing-section {
  padding: 130px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.pricing-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary-orange);
  background: linear-gradient(180deg, #251B15 0%, var(--bg-dark-card) 100%);
  box-shadow: 0 16px 40px rgba(254, 87, 34, 0.15);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 87, 34, 0.5);
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light-body);
  margin-bottom: 14px;
}

.pricing-features-list li i {
  color: var(--primary-orange);
  font-size: 1.1rem;
}

/* Pricing Row Table View (as seen in image section) */
.pricing-table-row {
  background: var(--bg-dark-card);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  border: 1px solid var(--border-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.pricing-table-row:hover {
  border-color: var(--primary-orange);
  background: #231C16;
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background-color: var(--bg-cream);
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

/* Insights / Blog Section */
.insights-section {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.insight-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.insight-thumb {
  height: 240px;
  overflow: hidden;
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-thumb img {
  transform: scale(1.06);
}

.insight-body {
  padding: 28px;
}

/* CTA Banner Section (Exact Matching Image Layout & Auto-Slide Marquee) */
.cta-section {
  padding: 120px 0 0;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-badge {
  background-color: #FFFFFF;
  color: var(--primary-orange);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  display: inline-block;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 800px;
  margin: 24px auto 36px;
}

.cta-btn-wrapper {
  position: relative;
  display: inline-block;
}

.cta-btn-white {
  background-color: #FFFFFF;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-btn-white:hover {
  background-color: #FAF6F2;
  color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-btn-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  right: -4px;
  border: 3px solid var(--bg-dark);
}

/* Auto-Sliding Graphic Track Marquee */
.cta-slider-container {
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
}

.cta-slider-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ctaMarquee 35s linear infinite;
  will-change: transform;
}

.cta-slider-container:hover .cta-slider-track {
  animation-play-state: paused;
}

@keyframes ctaMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual Shape Components */
.cta-shape-item {
  height: 220px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
}

/* Shape 1: 2 Vertical Orange Bars */
.cta-shape-bars-2 {
  width: 140px;
  display: flex;
  gap: 16px;
}
.cta-shape-bars-2 .bar {
  flex: 1;
  height: 100%;
  background-color: var(--primary-orange);
  border-radius: 0;
}

/* Shape 2: Split Diagonal Circle (Orange & Teal) */
.cta-shape-split-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(from 225deg, #FE5722 0deg 180deg, #76C6B3 180deg 360deg);
}

/* Shape 3: Wide Photo Stadium Pill */
.cta-shape-photo-pill {
  width: 460px;
  height: 220px;
  border-radius: 110px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.cta-shape-photo-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shape 4: Stacked Semi-Circles (Blue Top, Yellow Bottom) */
.cta-shape-stacked-semicircles {
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-shape-stacked-semicircles .semi-top {
  height: 105px;
  background-color: #3861F9;
  border-radius: 0 0 105px 105px;
}
.cta-shape-stacked-semicircles .semi-bottom {
  height: 105px;
  background-color: #FFD166;
  border-radius: 105px 105px 0 0;
}

/* Shape 5: 3 Vertical Orange Bars */
.cta-shape-bars-3 {
  width: 190px;
  display: flex;
  gap: 14px;
}
.cta-shape-bars-3 .bar {
  flex: 1;
  height: 100%;
  background-color: var(--primary-orange);
  border-radius: 0;
}

/* Shape 6: Large Orange Circle */
.cta-shape-orange-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: var(--primary-orange);
}

/* Footer Section */
.footer-section {
  background-color: var(--bg-cream);
  padding: 90px 0 40px;
  border-top: 1px solid var(--border-light);
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-body);
  display: block;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-orange);
  transform: translateX(4px);
}

.footer-giant-logo {
  font-size: clamp(4rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--text-dark);
  line-height: 0.85;
  text-align: center;
  margin-top: 60px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-giant-logo .giant-icon {
  width: clamp(40px, 12vw, 120px);
  height: clamp(40px, 12vw, 120px);
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: inline-block;
}

/* Responsiveness Overrides */
@media (max-width: 991.98px) {
  .hero-section { padding-top: 130px; }
  .navbar-flexio {         padding: 15px 16px 20px;
        border-radius: 10px;}
  .feature-image-wrapper img { height: 380px; }
  .process-banner-img { height: 340px; }
  .pricing-table-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.3rem; }
  .hero-avatar-item { width: 70px; height: 100px; border-radius: 40px; }
  .btn-flexio { padding: 12px 24px; font-size: 0.88rem; width: 100%; }
  .pricing-card { padding: 28px 20px; }
  .stat-number { font-size: 2.8rem; }
}

.ab-sec2 img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.ab-sec2 {
    border-radius: 30px;
    overflow: hidden;
    height: 800px;
}
.fun-tx-pro{
        font-size: 14px;
    color: #ffffff73;
}
.navbar-brand-logo img{
    width: 200px;
}

.pay-cards img{
       height: 16px;
    filter: invert(0.6);
}