/* Veltech Bootstrap Theme - Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Veltech Brand Colors */
  --veltech-blue: #004EA3;
  --veltech-blue-dark: #003a7a;
  --veltech-gold: #C79A2B;
  --veltech-gold-light: #d4ad4a;
  --veltech-navy: #0B2135;
  
  /* Core Design Tokens */
  --background: #f8f9fb;
  --foreground: #0B2135;
  --card: #ffffff;
  --card-foreground: #0B2135;
  --primary: #004EA3;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #0B2135;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #C79A2B;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  
  /* Shadows */
  --shadow-card: 0 4px 20px -2px rgba(11, 33, 53, 0.08);
  --shadow-float: 0 25px 50px -12px rgba(11, 33, 53, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(11, 33, 53, 0.08), 0 4px 6px -4px rgba(11, 33, 53, 0.05);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(0, 78, 163, 0.9) 0%, rgba(11, 33, 53, 0.85) 100%);
  --gradient-gold: linear-gradient(135deg, #C79A2B 0%, #d4ad4a 100%);
  --gradient-blue: linear-gradient(135deg, #004EA3 0%, #003a7a 100%);
  --gradient-subtle: linear-gradient(180deg, #f8f9fb 0%, #f1f5f9 100%);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.iti {
    width: 100%;
}
 
.iti__search-input {
    height: 3rem;
    padding: 8px;
}
.iti__country {
    color: #000;
    font-size: 10px;
  }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.bg-veltech-navy {
  background-color: var(--veltech-navy);
}

.bg-gradient-gold {
  background: var(--gradient-gold);
}

.bg-gradient-blue {
  background: var(--gradient-blue);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

.bg-gradient-subtle {
  background: var(--gradient-subtle);
}

.bg-card {
  background-color: var(--card);
}

.bg-muted {
  background-color: var(--muted);
}

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

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

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

/* Section Padding */
.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

/* Card Styles */
.card-elevated {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.card-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Badge Styles */
.badge-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--veltech-navy);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Button Styles */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--veltech-navy);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
  color: var(--veltech-navy);
}

.btn-outline-white {
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Form Styles */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  transition: all 0.2s ease;
  font-family: inherit;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: none;
}

.input-field::placeholder {
  color: var(--muted-foreground);
}

.select-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.select-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: none;
}

/* Underline Accent */
.underline-accent {
  position: relative;
  display: inline-block;
}

.underline-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.25rem;
  background: var(--gradient-gold);
  border-radius: 9999px;
}

.divider-gold {
  width: 5rem;
  height: 0.25rem;
  background: var(--gradient-gold);
  border-radius: 9999px;
  margin: 0 auto;
}

/* Timeline Styles */
.timeline-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 78, 163, 0.3);
  flex-shrink: 0;
}

.timeline-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  border-radius: 9999px;
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

/* Feature Card Highlight */
.feature-card-highlight {
  background: var(--gradient-blue);
  color: white;
}

.feature-card-highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card-highlight .feature-icon svg {
  color: var(--accent);
}

.feature-card-highlight h5 {
  color: white;
}

.feature-card-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* Icon Container */
.icon-container {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon-container-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

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

.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

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

.animate-scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }
.animation-delay-5 { animation-delay: 0.5s; }

/* Header Styles */
.top-bar {
  background-color: var(--veltech-navy);
  color: white;
  padding: 0.5rem 0;
}

.top-bar a {
  color: white;
  font-size: 0.875rem;
}

.top-bar a:hover {
  color: var(--accent);
}

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-link-custom {
  color: rgba(11, 33, 53, 0.8);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-link-custom:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

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

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(199, 154, 43, 0.2);
  border: 1px solid rgba(199, 154, 43, 0.4);
  border-radius: 9999px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 3rem;
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 1.875rem;
  }
}

/* Inquiry Form */
.inquiry-form {
  position: sticky;
  top: 8rem;
}

/* Rankings Section */
.ranking-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ranking-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ranking-card:hover .ranking-border {
  opacity: 1;
}

.ranking-border {
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  border-color: rgba(199, 154, 43, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ranking-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ranking-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.ranking-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.ranking-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Accordion Styles */
.accordion-custom .accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.accordion-custom .accordion-button {
  font-weight: 600;
  color: var(--foreground);
  background: var(--card);
  padding: 1rem 1.5rem;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--foreground);
  background: var(--card);
  box-shadow: none;
}
.logo-head{
  height: 4rem;
  width: auto;
}
.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2135'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
  color: var(--muted-foreground);
  padding: 0 1.5rem 1rem;
  line-height: 1.7;
}

/* Tabs Styles */
.nav-tabs-custom {
  background: var(--muted);
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: none;
}

.nav-tabs-custom .nav-link {
  border: none;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

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

.nav-tabs-custom .nav-link.active {
  background: var(--card);
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Recruiter Logo */
.recruiter-logo {
  background: var(--muted);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.recruiter-logo:hover {
  background: var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.recruiter-logo span {
  color: var(--muted-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.recruiter-logo:hover span {
  color: var(--foreground);
}

/* Stats Card */
.stats-card {
  background: var(--gradient-blue);
  color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stats-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stats-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .stats-value {
    font-size: 2.5rem;
  }
}

/* Footer */
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-icon:hover {
  background: var(--accent);
  color: white;
}

/* Counter Animation */
.counter-number {
  font-variant-numeric: tabular-nums;
}

/* Decorative Elements */
.decorative-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.mobile-menu .nav-link:hover {
  background: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 2rem;
  }
  
  .inquiry-form {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }
  
  .section-padding {
    padding: 3rem 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  .logo-head{
  height: 3rem;
}
  .top-btn{
    display: none !important;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--veltech-blue-dark);
}

/* Print Styles */
@media print {
  .top-bar,
  .main-nav,
  .inquiry-form,
  .btn-gold,
  .btn-outline-white {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}
