:root {
  --primary: 220 100% 55%;
  /* #0066FF */
  --primary-dark: 220 100% 45%;
  /* #0052CC */
  --secondary: 210 11% 98%;
  /* #F5F7FA */
  --text-dark: 210 10% 23%;
  /* #344054 */
  --text-light: 210 8% 46%;
  /* #667085 */
  --border: 210 16% 93%;
  /* #E4E7EC */
  --success: 142 76% 36%;
  /* #12B76A */
  --warning: 38 92% 50%;
  /* #F79009 */
  --danger: 0 84% 60%;
  /* #F04438 */
  --white: 0 0% 100%;
  /* #FFFFFF */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: hsl(var(--text-dark));
  background-color: hsl(var(--white));
}

/* Navigation */
.navbar {
  background-color: hsl(var(--white));
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--text-dark));
  text-decoration: none;
}

.brand-text {
  margin-left: 0.5rem;
}

.nav-link {
  font-weight: 500;
  color: hsl(var(--text-light));
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--white));
}

.btn-primary:hover {
  background-color: hsl(var(--primary-dark));
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  background-color: transparent;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  width: 90%;
  max-width: 500px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 3rem;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Hero Software Preview */
.hero-software-preview {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.software-window {
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.software-window:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.window-header {
  background: #f8f9fa;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}

.window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
}

.window-controls span:nth-child(1) {
  background: #ff5f56;
}

.window-controls span:nth-child(2) {
  background: #ffbd2e;
}

.window-controls span:nth-child(3) {
  background: #27ca3f;
}

/* .window-title {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
} */

.window-content {
  padding: 0;
}

.dashboard-image {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  display: block;
}

.floating-metrics {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.metric-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatMetric 4s ease-in-out infinite;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.metric-1 .metric-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.metric-2 .metric-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.metric-3 .metric-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.metric-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.metric-2 {
  top: 70%;
  left: -4%;
  animation-delay: 1.5s;
}

.metric-3 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes floatMetric {
  0%,
  100% {
    transform: translateY(0px);
  }

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

/* Hero Image */
.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-card {
  position: absolute;
  background: hsl(var(--white));
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.floating-card span {
  font-weight: 600;
  color: hsl(var(--text-dark));
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

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

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

/* Section Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--text-light));
  max-width: 600px;
  margin: 0 auto;
}

/* Solution Cards */
.solution-card {
  background: hsl(var(--white));
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-preview {
  position: relative;
  height: 220px;
  margin: -2rem -2rem 2rem -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.device-frame {
  font-size: 80px;
  color: #ffffff;
}

.device-mockup {
  width: 150px;
  height: 150px;
  background: #ff9531;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.solution-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.featured-badge {
  background: linear-gradient(135deg, #f093fb, #f5576c) !important;
}

.solution-content {
  padding: 0 1rem;
  flex-grow: 1;
}

.solution-actions {
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  background-color: #e8e8e8;
}

.solution-actions a.btn {
  color: rgb(120, 120, 120) !important;
  font-size: 16px !important;
}

.solution-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  margin-bottom: 50px;
}

.highlight-tag {
  background: hsl(var(--secondary));
  color: hsl(var(--primary));
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: translateX(0);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid hsl(var(--primary));
  transform: scale(1.05);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-icon i {
  font-size: 2rem;
  color: hsl(var(--white));
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.solution-card p {
  color: hsl(var(--text-light));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: hsl(var(--text-light));
}

.solution-features i {
  color: hsl(var(--success));
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

/* Clients Section */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  height: 100px;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.client-stats {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
}

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

.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  font-size: 0.9rem;
  color: hsl(var(--text-light));
  font-weight: 500;
}

/* Integration Section */
.integration-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--text-dark));
  margin-bottom: 1rem;
}

.integration-benefits {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.benefit-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-item h5 {
  font-weight: 600;
  color: hsl(var(--text-dark));
  margin-bottom: 0.25rem;
}

.benefit-item p {
  color: hsl(var(--text-light));
  margin-bottom: 0;
}

/* Integration Diagram */
.integration-diagram {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  border-radius: 20px;
  overflow: hidden;
}

.erp-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.erp-box {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  color: hsl(var(--white));
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
  position: relative;
  z-index: 2;
  min-width: 140px;
}

.erp-box i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.erp-box span {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.erp-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
  border-radius: 30px;
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

.solution-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.solution-node {
  position: absolute;
  background: hsl(var(--white));
  border: 3px solid hsl(var(--primary));
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 120px;
}

.solution-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.node-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-dark)) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.node-icon i {
  font-size: 1.5rem;
  color: hsl(var(--white));
}

.solution-node span {
  font-weight: 600;
  color: hsl(var(--text-dark));
  font-size: 0.85rem;
  display: block;
  line-height: 1.2;
}

.node-status {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  background: #12b76a;
  border-radius: 50%;
  border: 3px solid hsl(var(--white));
  animation: status-blink 2s ease-in-out infinite;
}

.node-1 {
  top: 8%;
  left: 8%;
  animation: float-node 4s ease-in-out infinite;
}

.node-2 {
  top: 8%;
  right: 8%;
  animation: float-node 4s ease-in-out infinite 1.3s;
}

.node-3 {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-node 4s ease-in-out infinite 2.6s;
}

.connection-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--white));
  color: hsl(var(--primary));
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid hsl(var(--primary));
  white-space: nowrap;
}

/* Animation Keyframes */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes flow {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

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

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

@keyframes status-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes connection-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }
}

@keyframes data-flow-1 {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes data-flow-2 {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes data-flow-3 {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes packet-flow-1 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(200px) translateY(-50px);
  }
}

@keyframes packet-flow-2 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-200px) translateY(-50px);
  }
}

@keyframes packet-flow-3 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(0) translateY(-150px);
  }
}

@keyframes flow-animation {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Feature Cards */
.feature-card {
  background: hsl(var(--white));
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-weight: 600;
  color: hsl(var(--text-dark));
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: hsl(var(--text-light));
  margin-bottom: 0;
}

/* Demo Section */
.demo-benefits {
  list-style: none;
  margin-top: 1.5rem;
}

.demo-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.demo-benefits i {
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.demo-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.demo-form .form-control,
.demo-form .form-select {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.demo-form .btn-light {
  background: hsl(var(--white));
  color: hsl(var(--primary));
  font-weight: 600;
}

.demo-form .btn-light:hover {
  background: hsl(var(--secondary));
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: hsl(var(--white));
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid hsl(var(--border));
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.form-label {
  font-weight: 600;
  color: hsl(var(--text-dark));
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .solution-card.featured {
    transform: none;
  }

  .integration-diagram {
    height: 300px;
  }

  .erp-box {
    padding: 1.5rem;
  }

  .erp-box i {
    font-size: 2rem;
  }

  .solution-node {
    padding: 1rem;
  }

  .node-icon {
    width: 40px;
    height: 40px;
  }

  .node-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .solution-card,
  .contact-form,
  .demo-form {
    padding: 1.5rem;
  }

  .floating-card {
    padding: 1rem 1.5rem;
  }

  .floating-card span {
    font-size: 0.9rem;
  }

  .node-3 {
    transform: translateX(-50%);
  }
}

/* Utility Classes */
.bg-light {
  background-color: hsl(var(--secondary)) !important;
}

.text-primary {
  color: hsl(var(--primary)) !important;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.highlight {
  color: #ffd700;
  /* text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); */
}

.modal-content {
  background: #00b7df;
  color: white;
  padding: 40px 30px;
  border-radius: 30px 0 30px 0;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h5 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: bold;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.4;
}

.modal-content ul li i {
  color: #b5e9f9;
  font-weight: bold;
}