
:root {
  --primary: #6366f1; /* Indigo */
  --secondary: #ec4899; /* Pink */
  --success: #10b981; /* Emerald */
  --dark: #0f172a; /* Deep Navy */
  --darker: #020617; /* Almost Black */
  --light: #f8fafc; /* Slate White */
  --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}

body {
  font-family: "Poppins", sans-serif;
  color: #475569;
  background-color: #f1f5f9;
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
p {
  color: #64748b;
  font-size: 16px;
}
a {
  text-decoration: none !important;
  transition: all 0.3s;
}
ul {
  list-style: none;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* =========================================
           2. HEADER
           ========================================= */
.theme-main-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 10px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.theme-main-header.sticky {
  top: 10px;
  width: 95%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.logo img {
  height: 150px;
  width: auto;
}
#navMenu {
  display: flex;
  gap: 5px;
  margin: 0;
}
#navMenu li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 30px;
}
#navMenu li a:hover,
#navMenu li a.active {
  background: var(--gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

/* =========================================
           3. HERO SECTION (Maintained)
           ========================================= */
#theme-main-banner {
  position: relative;
  padding: 220px 0 140px 0;
  background: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    center center/cover no-repeat;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
#theme-main-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(51, 65, 85, 0.9) 100%
  );
  z-index: 1;
}
#theme-main-banner .container {
  position: relative;
  z-index: 2;
}
.gradient-text {
  background: linear-gradient(to right, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}
#theme-main-banner h1 {
  color: white;
  font-size: 46px;
  line-height: 1.3;
}
#theme-main-banner h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}
#theme-main-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-button {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  background: white;
  color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
}
.cta-button:hover {
  transform: translateY(-5px);
  background: white;
  color: var(--secondary);
}

/* HERO VISUALIZATION CSS (Smart Flow) */
.smart-flow-container {
  position: relative;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.central-hub {
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1),
    0 20px 50px rgba(99, 102, 241, 0.4);
  z-index: 10;
  position: relative;
  animation: breathe 4s ease-in-out infinite;
}
.hub-logo {
  font-size: 45px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 15px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  min-width: 190px;
  opacity: 0;
  animation: floatIn 1s forwards, floatHover 6s ease-in-out infinite;
}
.glass-card i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.card-call {
  left: -20px;
  top: 35%;
  animation-delay: 0.5s, 0.5s;
}
.card-call i {
  background: #ef4444;
}
.card-sms {
  right: -20px;
  top: 15%;
  animation-delay: 1.5s, 1.5s;
}
.card-sms i {
  background: #3b82f6;
}
.card-wa {
  right: 0px;
  bottom: 25%;
  animation-delay: 2s, 2s;
}
.card-wa i {
  background: #25d366;
}
.connector-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    var(--primary),
    rgba(255, 255, 255, 0)
  );
  top: 50%;
  left: 50%;
  transform-origin: left center;
  width: 0;
  z-index: 1;
  animation: drawLine 1s forwards;
}
.line-left {
  transform: translate(-130px, 0) rotate(180deg);
  animation-delay: 1s;
}
.line-right-top {
  transform: translate(65px, -30px) rotate(-35deg);
  animation-delay: 1.2s;
}
.line-right-bottom {
  transform: translate(65px, 20px) rotate(25deg);
  animation-delay: 1.7s;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes floatHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes drawLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

/* =========================================
           4. REDESIGNED KEY FEATURES (Clean Grid)
           ========================================= */
.what-we-do {
  padding: 100px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h3 {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 2px;
  background: #e0e7ff;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 40px;
  color: var(--dark);
}

.feature-card-new {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  margin-bottom: 30px;
}

.feature-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gray);
  transition: 0.3s;
  z-index: 2;
}

/* Unique Color Accents per card */
.feat-green::before {
  background: #25d366;
}
.feat-pink::before {
  background: var(--secondary);
}
.feat-blue::before {
  background: var(--primary);
}

.feature-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.4s;
  background: #f8fafc;
}

.feat-green .feat-icon {
  color: #25d366;
}
.feat-pink .feat-icon {
  color: var(--secondary);
}
.feat-blue .feat-icon {
  color: var(--primary);
}

.feature-card-new:hover .feat-icon {
  background: var(--dark);
  color: white;
  transform: rotateY(360deg);
}

/* =========================================
           5. REDESIGNED ABOUT US (Asymmetric)
           ========================================= */
.about-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.about-img-box {
  position: relative;
  z-index: 1;
}
.about-img-box img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 20px 20px 0px rgba(99, 102, 241, 0.1);
  animation: floatImage 5s ease-in-out infinite;
}
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-content {
  padding-left: 30px;
}
.about-list {
  margin-top: 30px;
}
.about-list li {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: 0.3s;
  border-left: 4px solid transparent;
}
.about-list li:hover {
  transform: translateX(10px);
  border-left-color: var(--primary);
}
.about-list li i {
  color: white;
  background: var(--primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* =========================================
           6. REDESIGNED WHY US (Dark Theme)
           ========================================= */


.why-us-dark {
  padding: 100px 0;
  background: var(--darker);
  color: white;
  position: relative;
}
/* Background Pattern */
.why-us-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--dark) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  pointer-events: none;
}

.why-us-dark .section-header h2 {
  color: white;
}
.why-us-dark p {
  color: #94a3b8;
}

.dark-feature-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.4s;
  text-align: center;
}
.dark-feature-card:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
  transform: translateY(-10px);
}
.dark-feature-card i {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(to bottom, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dark-feature-card:hover i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dark-feature-card h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}
.dark-feature-card p {
  font-size: 14px;
  margin: 0;
}


/* =========================================
   GLOBAL VARIABLES & UTILITIES
   ========================================= */
:root {
    --primary-blue: #0056b3;
    --bright-blue: #2575fc;
    --cyan: #00d2ff;
    --dark-navy: #0a192f;
    --light-bg: #f4f8fb;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
    --shadow-soft: 0 10px 30px rgba(0, 86, 179, 0.15);
}

/* General Layout Fixes */
.display-flex-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-right-md {
    text-align: right;
}

@media (max-width: 768px) {
    .text-right-md { text-align: center; margin-top: 20px; }
    .display-flex-center { flex-direction: column; }
}

/* =========================================
   SECTION 1: PREMIUM FEATURES
   ========================================= */
#premium-features {
    background: var(--light-bg);
    padding: 80px 0 100px 0; /* Extra bottom padding for floating bar */
    position: relative;
    overflow: hidden;
}

/* --- Left: Animated Phone Image --- */
.premium-image-box {
    position: relative;
    text-align: center;
    padding: 20px;
}

.premium-image-box .phone-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin: 0 auto;
    /* Continuous Float Animation */
    animation: floatUpDown 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Decorative Circle Behind Phone */
.premium-image-box .circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s infinite;
}

/* --- Right: Content Styling --- */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title i {
    color: var(--cyan);
    margin-right: 10px;
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 35px;
    font-size: 16px;
    color: #555;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px); /* Slide effect on hover */
    color: var(--primary-blue);
}

.list-icon, .list-icon-check {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 18px;
}

.list-icon { color: var(--bright-blue); }
.list-icon-check { color: #00c853; } /* Green for checks */

.mt-40 { margin-top: 40px; }

/* =========================================
   PRICING BAR (Floating Card)
   ========================================= */
.pricing-bar-wrapper {
    margin-top: -60px; /* Pull it up to overlap sections */
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.pricing-card {
    background: var(--gradient-blue);
    border-radius: 15px;
    padding: 30px 40px;
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.4);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Glass effect overlay */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-text h4 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.cta-text p {
    font-size: 16px;
    margin: 5px 0 0;
    opacity: 0.9;
}

.price-action-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.price-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    text-align: center;
}

.price-tag .currency { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.price-tag .amount { font-size: 22px; font-weight: 800; }

.app-btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.app-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: var(--bright-blue);
}

@media (max-width: 768px) {
    .pricing-card { text-align: center; padding: 25px; }
    .price-action-group { flex-direction: column; justify-content: center; }
}

/* =========================================
   SECTION 2: MARKETING & BRANDING
   ========================================= */
.marketing-section {
    padding: 120px 0 80px 0;
    background: var(--white);
}

.marketing-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark-navy);
}

.gradient-text-teal {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-50 { margin-top: 50px; }

/* Hand Image Animation */
.marketing-img-holder {
    position: relative;
    text-align: center;
}

.marketing-img-holder .hand-phone-img {
    max-width: 90%;
    transform-origin: bottom center;
    /* Gentle swaying animation */
    animation: swayHand 5s ease-in-out infinite; 
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 117, 252, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* Feature Boxes */
.m-feature-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.m-feature-box:hover {
    border-color: var(--bright-blue);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.m-icon-wrapper {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    color: #fff;
}

.icon-blue { background: linear-gradient(135deg, #4481eb 0%, #04befe 100%); }
.icon-teal { background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%); }

.m-text h4 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--dark-navy); }
.m-text p { font-size: 14px; line-height: 1.5; margin: 0; color: #666; }

.connector-gap {
    height: 30px;
    border-left: 2px dashed #ddd;
    margin-left: 50px; /* Align with icon center */
}

/* Trust Badges */
.trust-badge-container {
    display: inline-flex;
    background: #f9fbfd;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.badge-item {
    padding: 0 20px;
    text-align: center;
}

.border-right { border-right: 1px solid #e1e8ed; }

.stars { color: #ffb400; font-size: 12px; margin-bottom: 5px; }
.badge-icon { font-size: 24px; color: var(--primary-blue); margin-bottom: 5px; }
.badge-icon.icon-money { color: #00c853; }
.badge-text { font-size: 12px; font-weight: 700; line-height: 1.2; color: #555; }

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes floatUpDown {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
}

@keyframes swayHand {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}


/* =========================================
           CONTACT & FOOTER
           ========================================= */
.contact-us-section {
  padding: 100px 0;
  background: white;
}
.contact-card {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}
.contact-card:hover {
  transform: translateX(5px);
  border-color: var(--primary);
}
.contact-card i {
  font-size: 18px;
  color: white;
  background: var(--gradient);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 16px;
  margin-right: 20px;
  flex-shrink: 0;
}
.php-email-form {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}
.php-email-form input,
.php-email-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #f1f5f9;
  border-radius: 14px;
  margin-bottom: 20px;
  background: #f8fafc;
  outline: none;
  transition: 0.3s;
}
.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: var(--primary);
  background: white;
}
.theme-button input {
  background: var(--gradient);
  color: white;
  border: none;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer {
  background: #0f172a;
  padding: 70px 0 30px;
  color: #94a3b8;
}
.footer-menu li {
  display: inline-block;
  margin-left: 25px;
}
.footer-menu li a {
  color: #cbd5e1;
  font-weight: 500;
}
.social-icon li {
  display: inline-block;
  margin-left: 10px;
}
.social-icon li a i {
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
  color: #cbd5e1;
}
.social-icon li a i:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .smart-flow-container {
    height: 350px;
    transform: scale(0.85);
    margin-top: 50px;
  }
  .about-img-box {
    margin-bottom: 40px;
  }
  .about-content {
    padding-left: 0;
  }
  .section-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .theme-main-header {
    width: 95%;
    padding: 15px;
  }
  #navMenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px;
  }
  #navMenu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .smart-flow-container {
    transform: scale(0.65);
    height: 300px;
    margin-left: -15px;
    width: 110%;
  }
}


/* Marketing Section - Removed Top Space */
.marketing-section {
    padding: 0 0 80px 0; /* Top padding is now 0 */
    background: var(--white);
    position: relative;
    z-index: 5;
}

/* Headline - Removed Default Margin */
.marketing-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark-navy);
    margin-top: 30px; /* Small margin to separate from section top */
    margin-bottom: 20px;
}

/*spacing for gradient text*/
.gradient-text-teal {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}