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

:root {
  --primary-dark: #000615;
  --secondary-dark: #050d24;
  --brand-blue: #0046d2;
  --brand-blue-hover: #0037a3;
  --accent-gold: #f6be39;
  --bg-light: #f7f9fb;
  --text-dark: #0f172a;
  --text-muted: #64748b;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

h1, h2, h3, h4, .font-headline {
  font-family: 'Montserrat', sans-serif;
}

/* Custom text utility colors */
.color-brand-blue {
  color: var(--brand-blue) !important;
}
.color-accent-gold {
  color: var(--accent-gold) !important;
}

/* Custom bg colors */
.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}
.bg-secondary-dark {
  background-color: var(--secondary-dark) !important;
}
.bg-brand-blue {
  background-color: var(--brand-blue) !important;
}
.bg-accent-gold {
  background-color: var(--accent-gold) !important;
}
.bg-light-color {
  background-color: var(--bg-light) !important;
}

/* Navbar Scrolled state style */
.navbar-custom {
  transition: all 0.3s ease-in-out;
  border-top: 3px solid var(--accent-gold) !important;
}

.navbar-custom.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  height: 64px !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled .nav-link {
  color: var(--text-dark) !important;
  opacity: 0.8;
}
.navbar-custom.scrolled .nav-link:hover {
  color: var(--brand-blue) !important;
  opacity: 1;
}
.navbar-custom.scrolled .navbar-brand {
  color: var(--text-dark) !important;
}

/* Buttons and interactions */
.btn-brand-blue {
  background-color: var(--brand-blue);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 70, 210, 0.25);
}

.btn-brand-blue:hover {
  background-color: var(--brand-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 70, 210, 0.35);
}

.btn-brand-blue:active {
  transform: translateY(0);
}

.btn-accent-gold {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(246, 190, 57, 0.25);
}

.btn-accent-gold:hover {
  background-color: #e5af2c;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 190, 57, 0.35);
}

.btn-accent-gold:active {
  transform: translateY(0);
}

.btn-outline-custom-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-custom-light:hover {
  background-color: rgba(255, 255, 255, 0.17);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline-custom-dark {
  border: 1px solid rgba(0, 70, 210, 0.35);
  background-color: rgba(0, 70, 210, 0.03);
  color: var(--brand-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-custom-dark:hover {
  background-color: rgba(0, 70, 210, 0.07);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

/* Service item card custom design */
.service-card {
  border: 1.5px solid rgba(226, 232, 240, 0.8) !important;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  height: 100%;
}

.service-card:hover {
  border-color: rgba(0, 70, 210, 0.35) !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.service-card .icon-container {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(0, 70, 210, 0.06);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .icon-container {
  background-color: rgba(0, 70, 210, 0.12);
  transform: scale(1.05);
}

/* Industry served section cards */
.industry-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--primary-dark);
  cursor: pointer;
  border: none !important;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  opacity: 0.6;
  transition: all 0.7s ease;
}

.industry-card:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 6, 21, 0.3);
  transition: background-color 0.5s ease;
}

.industry-card:hover .industry-card-overlay {
  background-color: rgba(0, 6, 21, 0.5);
}

.industry-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-card-badge {
  color: #ffffff;
  transform: scale(1.1);
}

.industry-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.industry-card-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.industry-card-action {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover .industry-card-action {
  opacity: 1;
}

/* Timeline specific layouts */
.timeline-track-line {
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 4px;
  background-color: #e2e8f0;
  z-index: 1;
}

.timeline-progress-line {
  height: 100%;
  background-color: var(--brand-blue);
  width: 0%;
  transition: width 0.4s ease-in-out;
}

.timeline-step-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 4px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-step-btn:hover {
  transform: scale(1.10);
}

.timeline-step-btn.accent-step-color {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.timeline-step-btn.inactive {
  background-color: #cbd5e1;
  color: #64748b;
  opacity: 0.8;
}

.timeline-step-node {
  cursor: pointer;
  z-index: 2;
}

.timeline-step-node.active .timeline-step-btn {
  box-shadow: 0 0 0 4px rgba(0, 70, 210, 0.25);
  transform: scale(1.1);
}

/* Case study cards list */
.case-card {
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.case-card-img-wrapper {
  height: 220px;
  overflow: hidden;
  background-color: var(--primary-dark);
  position: relative;
}

.case-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.case-card:hover .case-card-img-wrapper img {
  transform: scale(1.05);
}

/* Common Modal styling fixes */
.modal-content {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.modal-header-custom {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.modal-header-custom h3 {
  font-weight: 900;
  margin-bottom: 0;
}

/* Wizard progress dots */
.wizard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e8f0;
  transition: all 0.3s ease;
}

.wizard-dot.active {
  background-color: var(--brand-blue);
  transform: scale(1.15);
}

.wizard-dot.completed {
  background-color: rgba(0, 70, 210, 0.45);
}

/* Range input style */
input[type="range"] {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 5px;
  outline: none;
}

/* Offcanvas custom drawer style */
.offcanvas-custom-right {
  width: 440px !important;
  max-width: 100% !important;
  border-left: none !important;
}

/* Custom indicator animation */
@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.pulse-badge {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  animation: pulseGlow 2s infinite;
}

/* Custom scrolling bar values */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ==========================================
   CUSTOM UTILITY CLASSES & LOGO STYLING
   ========================================== */

/* Text sizing utilities */
.text-xs {
  font-size: 0.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
}
.text-2xl {
  font-size: 1.5rem !important;
}

/* Font weight utilities */
.fw-black {
  font-weight: 900 !important;
}

/* User interaction and cursors */
.select-none {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.resize-none {
  resize: none !important;
}
.pointer-events-none {
  pointer-events: none !important;
}

/* Letter spacing utilities */
.tracking-wide {
  letter-spacing: 0.04em !important;
}
.tracking-wider {
  letter-spacing: 0.08em !important;
}
.tracking-widest {
  letter-spacing: 0.15em !important;
}
.tracking-tight {
  letter-spacing: -0.04em !important;
}

/* Custom interactive state hovers */
.hover-gold {
  transition: color 0.3s ease !important;
}
.hover-gold:hover {
  color: var(--accent-gold) !important;
}

/* Custom dimensions */
.h-20 {
  height: 80px !important;
}

/* Logo styling elements */
.navbar-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease-in-out;
}


.footer-logo {
  height: 45px;
  width: auto;
  transition: all 0.3s ease-in-out;
}
