@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-blue: #134FA6;
  --dark-text: #0A0A0A;
  --grey-bg: #F5F6F8;
  --soft-border: #E5E7EB;
  --accent-blue: #2D6CDF;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  font-weight: 600;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }

p {
  font-size: 16px;
  color: #4b5563; /* slightly muted for body text */
}

/* Typography tech focus */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-accent-blue { color: var(--accent-blue) !important; }
.bg-primary-blue { background-color: var(--primary-blue) !important; }
.bg-grey { background-color: var(--grey-bg) !important; }

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid var(--primary-blue);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary-custom:hover {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 108, 223, 0.3);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-outline-custom:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-border);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-blue) !important;
  font-size: 24px;
}

.navbar-brand span {
  color: var(--dark-text);
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue) !important;
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(135deg, #f0f4fd 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(45,108,223,0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--dark-text);
}

.hero-title span {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--accent-blue);
}

.service-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 24px;
}

.service-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.service-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--accent-blue);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Client Logos */
.client-logo-strip {
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
  padding: 40px 0;
  background: var(--white);
}

.client-logo {
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
  max-height: 40px;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Why Choose Us */
.feature-item {
  display: flex;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(19, 79, 166, 0.1);
  color: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 20px;
}

.feature-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Stats */
.stat-box {
  background: var(--primary-blue);
  color: var(--white);
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

/* Industries Grid */
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.industry-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.industry-card:hover .industry-img {
  transform: scale(1.1);
}

.industry-overlay h4 {
  color: var(--white);
  margin-bottom: 0px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.industry-overlay p {
  color: #d1d5db;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  height: 0;
  margin-bottom: 0;
}

.industry-card:hover .industry-overlay h4 {
  transform: translateY(0);
}

.industry-card:hover .industry-overlay p {
  opacity: 1;
  transform: translateY(0);
  height: auto;
}


/* Footer */
footer {
  background-color: var(--dark-text);
  color: #9ca3af;
  padding: 80px 0 20px;
}

footer h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
}

footer .footer-link {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

footer .footer-link:hover {
  color: var(--accent-blue);
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 20px;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 15px;
}

.quote-icon {
  color: rgba(19, 79, 166, 0.1);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
}

.client-info h5 {
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.client-info p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Page Headers */
.page-header {
  padding: 160px 0 100px;
  background-color: var(--dark-text);
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-header p {
  color: #d1d5db;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-blue);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  h1, .hero-title { font-size: 36px; }
  h2 { font-size: 28px; }
  .section-padding { padding: 60px 0; }
  .hero-section { padding: 120px 0 80px; }
}

/* Page specific block custom */
.about-mission-card {
  background: var(--grey-bg);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}
.about-mission-card h3 {
  color: var(--primary-blue);
}

/* Forms */
.form-control {
  padding: 12px 15px;
  border: 1px solid var(--soft-border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}
.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(19, 79, 166, 0.25);
}

/* Careers Page */
.job-card {
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.job-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--primary-blue);
}
