:root {
  --primary-dark: #0f172a;
  /* Slate 900 */
  --secondary-dark: #1e293b;
  /* Slate 800 */
  --accent-orange: #2196f3;
  /* Orange 500 */
  --accent-orange-hover: #2196f3;
  /* Orange 600 */
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-light);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.text-orange {
  color: var(--accent-orange) !important;
}

.bg-orange {
  background-color: var(--accent-orange) !important;
}

.bg-dark-primary {
  background-color: var(--primary-dark) !important;
}

.bg-dark-secondary {
  background-color: var(--secondary-dark) !important;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--accent-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary-custom:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
  color: #fff;
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--glass-border);
  color: #fff;
}

/* Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
  transition: background-color 0.3s ease, padding 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff !important;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px 0;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-dashboard-mockup {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.stat-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  height: 100%;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trusted Industries */
.trusted-industries {
  padding: 40px 0;
  background-color: var(--secondary-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s ease;
  margin: 0 15px;
}

.industry-item i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.industry-item:hover {
  color: var(--accent-orange);
}

/* Features / Why Choose Us */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(33, 150, 243, 0.1);
  color: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.glass-card:hover .feature-icon {
  background: var(--accent-orange);
  color: #fff;
}

.promise-card {
  background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
  border: 1px solid var(--accent-orange);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(30, 143, 250, 0.15);
  height: 100%;
}

/* Process Flow */
.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '\f105';
  /* FontAwesome Angle Right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -15px;
  top: 30px;
  font-size: 1.5rem;
  color: var(--glass-border);
}

@media (max-width: 991px) {
  .process-step::after {
    display: none;
  }

  .process-step {
    margin-bottom: 30px;
  }
}

.process-step:last-child::after {
  display: none;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-dark);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-orange);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
}

/* Core Services */
.service-card {
  padding: 30px;
  height: 100%;
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--secondary-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.service-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.service-card ul li::before {
  content: '\f00c';
  /* FontAwesome check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-orange);
}

/* Compliance Coverage */
.country-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  height: 100%;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.flag-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
}

.country-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.country-card ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #050b14;
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-heading {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-link {
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-dark);
  color: var(--text-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* custom style start */
.hero-section form .form-control{background:#17202e;border-color:#17202e;color:#fff;}
/* custom style end */