/* Base Styles & Typography */
:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --secondary-gradient: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 100%);
  --accent-color: #06b6d4;
  --bg-body: #f8fafc;
  --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --card-shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-color: #e2e8f0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: 'Outfit', sans-serif;
}

/* Custom Text & Colors */
.text-primary-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-xxs {
  font-size: 0.7rem;
}

.tracking-wider {
  letter-spacing: 0.075em;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Soft Color Badges/Alerts */
.bg-primary-soft {
  background-color: rgba(79, 70, 229, 0.08);
}
.bg-success-soft {
  background-color: rgba(25, 135, 84, 0.08);
}
.bg-warning-soft {
  background-color: rgba(255, 193, 7, 0.1);
}
.bg-danger-soft {
  background-color: rgba(220, 53, 69, 0.08);
}
.bg-white-soft {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Sticky Glassmorphism Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.brand-text {
  font-weight: 800;
  font-size: 1.4rem;
  color: #0f172a;
}

.nav-link {
  color: #475569;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

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

/* Buttons */
.btn-primary-custom {
  background: var(--primary-gradient);
  border: none;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--border-color);
  color: #475569;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Cards & Layout Panels */
.card {
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-header-gradient {
  background: var(--secondary-gradient);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

/* Hero Section */
.hero-section {
  background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-img-wrapper {
  z-index: 1;
}

.hero-shape-bg {
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, rgba(6,182,212,0.06) 50%, rgba(255,255,255,0) 70%);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}

.hero-img {
  border: 8px solid rgba(255, 255, 255, 0.8);
}

/* Partners Logo */
.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
}

/* Statistics */
.count-text {
  font-size: 2.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Benefits & Testimonials */
.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
  background: var(--secondary-gradient);
}

.cta-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}

.btn-cta {
  border: none;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Accordion Custom */
.accordion-custom {
  border: 1px solid var(--border-color);
}

.accordion-custom .accordion-item {
  background: #fff;
}

.accordion-custom .accordion-button {
  background: #fff;
  color: #1e293b;
  font-size: 1rem;
  padding: 1.25rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(79, 70, 229, 0.02);
}

/* Welcome Banner Dashboard */
.welcome-banner {
  background: var(--primary-gradient);
  border-radius: 4px;
}

.welcome-banner-bg {
  width: 50%;
  height: 200%;
  top: -50%;
  right: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: rotate(-15deg);
  border-radius: 4px;
}

/* Dashboard Navigation Pills */
.nav-pills .nav-link {
  color: #64748b;
  background: #fff;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background: #f8fafc;
  color: #1e293b;
}

.nav-pills .nav-link.active {
  background: var(--primary-soft);
  color: var(--primary-color);
  background-color: rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.15);
}

/* Job & Verification Views */
.job-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bg-dark-glass {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.inset-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Global Sharp Corners Overrides */
.card,
.btn,
.nav-link,
.dropdown-menu,
.form-control,
.input-group-text,
.alert,
.badge,
.accordion-item,
.accordion-button,
.welcome-banner,
.testimonial-card,
.avatar-placeholder,
.accordion,
.nav-pills .nav-link,
.modal-content {
  border-radius: 4px !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px !important;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive and enlarged logos */
.logo-desktop {
  height: 38px;
  width: auto;
  display: block;
}

.logo-mobile {
  height: 28px;
  width: auto;
  display: block;
}

