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

:root {
  --primary: #0B84C2;
  --primary-dark: #05679B;
  --primary-light: #E6F3FC;
  --secondary: #132C54;
  --secondary-dark: #0A1931;
  --secondary-light: #1C3B6B;
  --accent: #FF8C42;
  --accent-light: #FFF0E6;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-muted: #9CA3AF;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(19, 44, 84, 0.08), 0 4px 6px -2px rgba(19, 44, 84, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(19, 44, 84, 0.12), 0 10px 10px -5px rgba(19, 44, 84, 0.04);
  --shadow-accent: 0 10px 20px -3px rgba(255, 140, 66, 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--secondary);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Navbar Styling */
.navbar-brand img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

.custom-navbar.scrolled .navbar-brand img {
  height: 48px;
}

.custom-navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.custom-navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--glass-border);
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--secondary);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
  width: calc(100% - 32px);
}

.nav-item.active .nav-link {
  color: var(--primary) !important;
}

.nav-item.active .nav-link::after {
  width: calc(100% - 32px);
}

/* Premium Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(11, 132, 194, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 132, 194, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: white;
}

.btn-secondary-custom {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent) 0%, #E66A23 100%);
  color: white;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 140, 66, 0.4);
  color: white;
}

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

@keyframes float-delayed {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

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

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

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px;
  background: radial-gradient(circle at 85% 15%, rgba(11, 132, 194, 0.1) 0%, rgba(19, 44, 84, 0.05) 50%, rgba(248, 250, 252, 1) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-vector-bg {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 50%;
  height: 80%;
  background-image: radial-gradient(circle, var(--primary-light) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
  opacity: 0.7;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 132, 194, 0.25) 0%, rgba(19, 44, 84, 0.05) 70%, transparent 100%);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  filter: blur(40px);
  z-index: 0;
}

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

.hero-tagline {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-search-box {
  background: var(--bg-white);
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(19, 44, 84, 0.05);
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.search-input-group {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.search-input-group input, 
.search-input-group select {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.search-input-group input:focus, 
.search-input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 132, 194, 0.15);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-img-main {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.hero-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-stat-card-1 {
  bottom: 10%;
  left: -5%;
}

.hero-stat-card-2 {
  top: 15%;
  right: -5%;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-stat-card-2 .hero-stat-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.hero-stat-num {
  font-weight: 800;
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 0;
}

.hero-stat-text {
  font-size: 12px;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Section Header Styles */
.section-title-wrapper {
  margin-bottom: 50px;
}

.section-tag {
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary);
}

.section-title {
  font-size: 38px;
  line-height: 1.25;
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature/Why Choose Us Card */
.feature-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(19, 44, 84, 0.03);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.feature-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-desc {
  color: var(--text-medium);
  font-size: 15px;
  margin-bottom: 0;
}

/* Sectors We Serve Card */
.sector-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.sector-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition-smooth);
}

.sector-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(19, 44, 84, 0.1) 0%, rgba(19, 44, 84, 0.7) 100%);
}

.sector-card:hover .sector-img {
  transform: scale(1.08);
}

.sector-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon {
  background: var(--accent);
  color: white;
  transform: rotate(360deg);
}

.sector-body {
  padding: 25px;
  position: relative;
  background: var(--bg-white);
  z-index: 2;
}

.sector-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.sector-desc {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.sector-link {
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sector-link i {
  transition: var(--transition-smooth);
}

.sector-card:hover .sector-link i {
  transform: translateX(4px);
}

/* Job Cards */
.job-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(19, 44, 84, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 132, 194, 0.15);
}

.job-comp-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--secondary);
  border: 1px solid #E2E8F0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.job-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.job-company {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 15px;
}

.job-meta-item {
  font-size: 13.5px;
  color: var(--text-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.job-meta-item i {
  color: var(--text-muted);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 20px 0;
}

.job-tag {
  font-size: 12px;
  font-weight: 550;
  padding: 4px 12px;
  border-radius: 50px;
}

.tag-blue {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.tag-green {
  background: #E8F5E9;
  color: #2E7D32;
}

.tag-orange {
  background: var(--accent-light);
  color: #D35400;
}

.tag-purple {
  background: #F3E5F5;
  color: #6A1B9A;
}

.job-salary {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
}

/* Stats Counter Section */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(11, 132, 194, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFF 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #A5B4FC;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Testimonial Section */
.testimonial-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(19, 44, 84, 0.02);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 60px;
  color: rgba(11, 132, 194, 0.1);
  position: absolute;
  top: 20px;
  left: 40px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 15px auto;
  border: 3px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.testimonial-name {
  font-size: 18px;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.carousel-indicators-custom {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel-indicators-custom li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom li.active {
  width: 28px;
  border-radius: 5px;
  background-color: var(--primary);
}

/* Call To Action Block */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 24px;
  padding: 60px 50px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-block::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, black, transparent);
  -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.cta-title {
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 0;
}

/* Footer Styles */
.footer-main {
  background-color: #0B1629;
  color: #94A3B8;
  padding: 80px 0 30px;
  font-size: 14.5px;
}

.footer-logo img {
  height: 64px;
  margin-bottom: 20px;
}

.footer-desc {
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 30px;
}

/* Page Header (About, Services, Jobs, Contact) */
.page-header {
  background: linear-gradient(135deg, #0A1931 0%, #132C54 100%);
  color: white;
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(11, 132, 194, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  color: white;
  font-size: 44px;
  margin-bottom: 15px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
  color: white;
}

.breadcrumb-custom span {
  color: var(--primary);
}

/* About Page Styles */
.about-image-wrapper {
  position: relative;
}

.about-img-1 {
  width: 80%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-img-2 {
  position: absolute;
  width: 55%;
  bottom: -40px;
  right: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.value-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.02);
  height: 100%;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(11, 132, 194, 0.15);
  line-height: 1;
  margin-bottom: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.value-title {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Team Card */
.team-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.02);
  transition: var(--transition-smooth);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-avatar-wrapper {
  padding-top: 30px;
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #D4EBF9 100%);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 3px solid var(--bg-light);
  box-shadow: var(--shadow-sm);
}

.team-card:hover .team-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.team-body {
  padding: 25px 20px;
}

.team-name {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-medium);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

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

/* Process Timeline (About page) */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.02);
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 750;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px var(--primary-light);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-badge {
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(19, 44, 84, 0.1);
}

.timeline-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Service Detail Cards */
.service-detail-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 45px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.02);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 132, 194, 0.1);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.service-detail-card:nth-child(even) .service-detail-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.service-bullets li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-medium);
}

.service-bullets li i {
  color: var(--primary);
  margin-top: 4px;
}

/* Jobs Search Filter Page Layout */
.jobs-filter-sidebar {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.03);
  position: sticky;
  top: 100px;
}

.filter-section-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 8px;
}

.filter-checkbox-group {
  margin-bottom: 20px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.filter-checkbox-item label {
  font-size: 14.5px;
  color: var(--text-medium);
  margin-left: 8px;
  cursor: pointer;
}

.filter-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #CBD5E1;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Contact Info Blocks */
.contact-info-block {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 44, 84, 0.03);
  height: 100%;
  transition: var(--transition-smooth);
}

.contact-info-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info-text {
  color: var(--text-medium);
  font-size: 14.5px;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(19, 44, 84, 0.03);
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-group-custom label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 132, 194, 0.15);
}

textarea.form-control-custom {
  resize: none;
}

/* Map Mockup */
.map-mockup {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(19, 44, 84, 0.03);
  height: 450px;
  position: relative;
}

.map-placeholder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(19, 44, 84, 0.05) 0%, rgba(19, 44, 84, 0.2) 100%), #E2E8F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--secondary);
}

.map-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

/* Premium Modals */
.modal-content-custom {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header-custom {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: white;
  padding: 25px 30px;
  border: none;
}

.modal-header-custom .modal-title {
  color: white;
  font-size: 22px;
}

.modal-header-custom .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  outline: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.modal-header-custom .btn-close:hover {
  opacity: 1;
}

.modal-body-custom {
  padding: 35px 30px;
  background: var(--bg-light);
}

/* Notification Popup */
.toast-container-custom {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1060;
}

.toast-custom {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  max-width: 380px;
}

.toast-custom.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-custom.success {
  border-left-color: #2E7D32;
}

.toast-icon-success {
  color: #2E7D32;
  font-size: 20px;
}

.toast-body-custom {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--secondary);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-section {
    padding: 120px 0 60px 0;
    text-align: center;
  }
  .hero-search-box {
    margin-top: 25px;
  }
  .hero-image-wrapper {
    margin-top: 50px;
  }
  .hero-stat-card-1 {
    left: 0;
  }
  .hero-stat-card-2 {
    right: 0;
  }
  .section-title {
    font-size: 32px;
  }
  .about-img-2 {
    bottom: -20px;
  }
  .process-timeline::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: row !important;
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  .timeline-badge {
    left: 20px;
    transform: translateX(-50%);
  }
  .jobs-filter-sidebar {
    position: static;
    margin-bottom: 30px;
  }
  .contact-form-wrapper {
    padding: 30px;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-search-box {
    padding: 10px;
  }
  .search-input-group {
    width: 100%;
  }
  .btn-primary-custom, .btn-accent-custom {
    width: 100%;
    justify-content: center;
  }
  .about-img-1 {
    width: 100%;
  }
  .about-img-2 {
    display: none;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-quote-icon {
    font-size: 40px;
    left: 15px;
    top: 10px;
  }
  .testimonial-text {
    font-size: 15.5px;
  }
  .cta-block {
    padding: 40px 25px;
    text-align: center;
  }
}
