@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --primary-color: #048EE7;
  --secondary-color: #71B500;
  --bg-dark: #f4f7f6;
  --bg-darker: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

a {
  text-decoration: none;
}

/* Custom Premium Navbar */
.main-header {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1030;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0a0f1c;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #1f2937, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-nav-link {
  color: rgba(0, 0, 0, 0.6) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
  position: relative;
}

.custom-nav-link:hover, .custom-nav-link.active {
  color: #000 !important;
}

.custom-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.custom-nav-link:hover::after, .custom-nav-link.active::after {
  transform: scaleX(1);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 20px rgba(4, 142, 231, 0.3);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(4, 142, 231, 0.5);
}

/* Hero Section Modern */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(113, 181, 0, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(4, 142, 231, 0.15), transparent 25%);
}

.grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.glow-text {
  background: linear-gradient(to right, #1f2937 20%, var(--primary-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.glass-form-container {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.dark-input {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1f2937 !important;
  border-radius: 10px;
  padding: 12px 20px;
}

.dark-input:focus {
  background: #ffffff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(4, 142, 231, 0.2) !important;
}

/* Features */
.features-section {
  padding: 120px 0;
  background: var(--bg-darker);
  position: relative;
  z-index: 2;
}

.feature-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  background: #ffffff;
  border-color: rgba(4, 142, 231, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(4, 142, 231, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

/* Industry Cards */
.industry-card {
  background: var(--bg-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(4, 142, 231, 0.3);
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card h5 {
  font-weight: 600;
  padding: 20px;
  margin: 0;
}

/* Product Cards */
.product-card {
  background: var(--bg-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(4, 142, 231, 0.3);
}

.product-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Service Cards */
.service-card {
  background: var(--bg-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 30px rgba(4, 142, 231, 0.1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: linear-gradient(135deg, rgba(4, 142, 231, 0.1), rgba(113, 181, 0, 0.1));
  color: var(--secondary-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-main);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(0, 0, 0, 0.1)!important;
  padding: 20px 0;
  color: var(--text-muted);
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--text-muted) !important;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;

}

textarea::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

/* New Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes glow-pulse {
  0% { box-shadow: 0 0 20px rgba(4, 142, 231, 0.2); }
  50% { box-shadow: 0 0 40px rgba(4, 142, 231, 0.6); }
  100% { box-shadow: 0 0 20px rgba(4, 142, 231, 0.2); }
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.floating-fast {
  animation: float 4s ease-in-out infinite;
}

.floating-slow {
  animation: float 8s ease-in-out infinite;
}

.glow-pulse {
  animation: glow-pulse 3s infinite;
}

.animated-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  animation: rotate-slow 20s linear infinite;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(to right, rgba(4, 142, 231, 0.4), rgba(113, 181, 0, 0.1));
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(to right, rgba(113, 181, 0, 0.3), rgba(4, 142, 231, 0.1));
  bottom: -150px;
  right: -100px;
  animation-direction: reverse;
}

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

.transition-all {
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(4, 142, 231, 0.5);
}



/* Smaller hero title on mobile and tweak spacing */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .glass-form-container {
    padding: 20px;
    border-radius: 16px;
  }
  .hero-wrapper {
    padding-top: 60px;
  }
  .hero-content .lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  .btn-gradient {
    width: 100%;
  }
}

/* Slightly stronger button shine for emphasis */
.btn-gradient {
  box-shadow: 0 10px 30px rgba(79,172,254,0.12), 0 2px 8px rgba(4,22,34,0.35);
}

/* Tweak feature titles */
.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* Make fixed alerts shift on small screens */
.alert[role="alert"] {
  right: 20px;
  left: auto;
  top: 90px;
}

.logo img{
  width: 120px;
}

/* New Product Card - Premium Upgrade */
.product-card-new {
    background: var(--bg-darker);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.product-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(4, 142, 231, 0.15);
    border-color: var(--primary-color);
}
.product-card-new img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}
.product-card-new:hover img {
    transform: scale(1.05);
}
.product-card-new h5 {
    color: var(--primary-color) !important;
    font-weight: 800;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 20px;
    font-size: 1.15rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}
.product-card-new:hover h5 {
    color: var(--secondary-color) !important;
}
.product-card-new button {
    width: calc(100% - 50px) !important;
    margin: 0 25px;
    border-radius: 12px;
    border: none !important;
    color: white !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(4, 142, 231, 0.2);
    padding: 10px 0;
}

/* Extracted Inline Styles */
.alert-floating-success {
    position: fixed; 
    z-index: 1020; 
    top: 100px; 
    right: 20px; 
    max-width: 400px; 
    background: rgba(16, 185, 129, 0.9); 
    backdrop-filter: blur(10px); 
    color: white;
}

.alert-floating-danger {
    position: fixed; 
    z-index: 1020; 
    top: 100px; 
    right: 20px; 
    max-width: 400px; 
    background: rgba(239, 68, 68, 0.9); 
    backdrop-filter: blur(10px); 
    color: white;
}

.new-badge-container {
    background: rgba(4, 142, 231, 0.1); 
    border-color: rgba(0,242,254,0.3) !important;
}

.new-badge-gradient {
    background: linear-gradient(135deg, #00f2fe, #4facfe) !important; 
    color:#fff;
}

.lead-text-large {
    font-size: 1rem; 
    line-height: 1.8;
}

.lead {
    font-size: 1rem; 
}

.glass-form-custom h2{
  color:#fff !important;
}

.avatar-stack-1 { margin-right: -10px; z-index: 3; }
.avatar-stack-2 { margin-right: -10px; z-index: 2; }
.avatar-stack-3 { z-index: 1; }

.section-services { background: #fff; padding: 60px 0; }
.section-products { background: var(--bg-dark); padding: 60px 0; }
.section-industries { background: var(--bg-darker); padding: 60px 0; }
.section-demo { background: var(--bg-dark); padding: 60px 0; }

.text-primary-custom { 
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 10px 30px rgba(4, 142, 231, 0.4);
    display: inline-block;
}
.max-w-800 { max-width: 800px; }

.service-card-highlight {
    border-color: rgba(0,242,254,0.3); 
    box-shadow: 0 10px 20px rgba(0,242,254,0.05);
}

.service-icon-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); 
    color: white;
}

.glass-form-custom {
    background: rgba(255,255,255,0.9); 
    border: 1px solid rgba(0,0,0,0.05); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-wrapper-small {
    width: 40px; 
    height: 40px; 
    font-size: 18px; 
    margin-bottom: 0; 
    margin-right: 15px;
}

.modal-content-dark {
    background: var(--bg-darker);
}

/* Contact Pill */
.contact-pill {
    display: flex;
    align-items: center;
    background: rgba(4, 142, 231, 0.05);
    border: 1px solid rgba(4, 142, 231, 0.2);
    padding: 6px 16px 6px 8px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.contact-pill:hover {
    background: rgba(4, 142, 231, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 142, 231, 0.1);
    color: var(--text-main);
}
.contact-pill .icon-pulse-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(4, 142, 231, 0.4);
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(4, 142, 231, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(4, 142, 231, 0); }
    100% { box-shadow: 0 0 0 0 rgba(4, 142, 231, 0); }
}
.contact-pill .contact-text {
    line-height: 1.2;
}

/* Enhanced Demo Section */
.section-demo {
    background: linear-gradient(135deg, #050810, #0a192f) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.demo-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.demo-bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(4, 142, 231, 0.15);
    top: -200px;
    left: -200px;
}

.demo-bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(113, 181, 0, 0.15);
    bottom: -100px;
    right: -100px;
}

.glass-form-custom {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 24px;
}

.glass-form-custom .form-label {
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 1px;
}

.glass-form-custom .dark-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.glass-form-custom .dark-input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.glass-form-custom .dark-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(4, 142, 231, 0.2) !important;
}
.glass-form-custom select option {
    background-color: #0a192f;
    color: white;
}

.demo-feature-list .icon-pulse-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

/* Enhanced Demo Feature Cards */
.demo-feature-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.demo-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(4, 142, 231, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.demo-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(4, 142, 231, 0.2), rgba(113, 181, 0, 0.2));
    border: 1px solid rgba(4, 142, 231, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(4, 142, 231, 0.3);
    animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.demo-feature-text p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Scroll Offset Fix for Fixed Header */
html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}


