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

:root {
  --primary: #4f46e5;
  /* Indigo */
  --primary-hover: #4338ca;
  --secondary: #0ea5e9;
  /* Cyan-Blue */
  --accent: #f43f5e;
  /* Rose */
  --bg-body: #f8fafc;
  /* Sleek light slate gray */
  --bg-card: #ffffff;
  /* Pure white */
  --border-color: #e2e8f0;
  /* Light gray border */
  --text-primary: #0f172a;
  /* Deep slate */
  --text-secondary: #334155;
  /* Mid slate */
  --text-muted: #64748b;
  /* Muted gray */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  overflow-x: hidden;
  font-size: 0.92rem;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-size: 48px;
}

p {
  color: var(--text-secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.2);
  }

  50% {
    box-shadow: 0 0 15px 3px rgba(79, 70, 229, 0.4);
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

/* Section Padding Adjustment */
.section-py {
  padding: 60px 0;
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-rose {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Navbar (Simplified: Logo + Numbers only) */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 6px 12px rgba(79, 70, 229, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
}

.logo-slogan {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 2px 0 0 0;
  letter-spacing: 0.2px;
}

.nav-numbers-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-number-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--text-primary) !important;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.nav-number-item:hover {
  background: rgba(79, 70, 229, 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.08);
}

.nav-number-item iconify-icon {
  font-size: 18px;
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 60px 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.06) 0%, rgba(248, 250, 252, 1) 70%);
}

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

.hero-mockup-main {
  width: 95%;
}

.badge-custom {
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(79, 70, 229, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Technology Badges */
.tech-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tech-badge:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.08);
}

.tech-badge iconify-icon {
  font-size: 16px;
}

/* Redesigned Product Showcase (Double Impact Recruitment Packages) */
.product-card-redesigned {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.product-card-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card-redesigned:hover::before {
  opacity: 1;
}

.product-card-redesigned:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
}

.package-tech-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.package-tech-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.icon-box-primary {
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
}

.icon-box-secondary {
  background: rgba(14, 165, 233, 0.08);
  color: var(--secondary);
}

/* Benefits Section */
.benefits-section-light {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefit-card {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.06);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.25);
}

/* Mobile App Section */
.mobile-section-light {
  background: radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.04) 0%, rgba(255, 255, 255, 1) 70%);
}

.mobile-mockup {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}

.mobile-mockup img {
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.08));
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}


.app-store-btn iconify-icon {
  color: inherit;
}

/* Why Invest Cards */
.invest-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.invest-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.06);
}

.invest-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 14px;
}

/* Industries Slider Carousel */
.industry-card-inner {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  margin: 0px 12px;
}

.industry-card-inner:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.06);
}

.industry-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Choose Us Cards */
.choose-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.choose-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.06);
}

.choose-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

/* Footer (Simplified) */
.footer-section {
  background-color: #f1f5f9;
  color: var(--text-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
  text-decoration: none !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.footer-social-icon:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.2);
}

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 0;
  }

  .nav-numbers-box {
    margin-top: 10px;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-direction: column;
    text-align: center;
    margin-top: 14px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    text-align: center !important;
  }

  .nav-number-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-section {
    padding: 40px 0;
    text-align: center;
  }

  .hero-mockup-wrapper {
    margin-top: 30px;
  }

  .tech-container {
    justify-content: center;
  }

  h1 {
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-size: 30px;
  }
}

/* Slick Dots Overrides */
.slick-dots li button:before {
  color: var(--primary) !important;
  opacity: 0.3;
}

.slick-dots li.slick-active button:before {
  opacity: 0.85;
}

.slick-prev:before,
.slick-next:before {
  color: var(--primary) !important;
  display: none !important;
}

/* Premium Custom Button UI */
.btn-custom {
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  padding: 12px !important;
  font-size: 15px !important;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
}

.btn-outline-custom {
  background: #ffffff;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-outline-custom:hover {
  background: rgba(79, 70, 229, 0.05);
  border-color: var(--primary-hover);
  color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.08);
}