/* CSS Custom Properties for Brand System */
:root {
  --primary: #0078FF;
  --primary-hover: #0056B3;
  --navy: #031E3F;
  --navy-light: #0B2B5C;
  --bg-tint: rgba(3, 30, 63, 0.45); /* Rich brand tinted overlay */
  --text-main: #2D3748;
  --text-muted: #718096;
  --card-bg: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-color: rgba(3, 30, 63, 0.12);
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  padding: 2rem 1.5rem;
  background-image: url('assets/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Glassmorphic Background Blur Overlay */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-tint);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

/* Main Content Card */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  background: var(--card-bg);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  box-shadow: 
    0 10px 15px -3px rgba(3, 30, 63, 0.05),
    0 25px 50px -12px var(--shadow-color);
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Brand Logo Container */
.logo-container {
  margin-bottom: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
  transform: scale(1.03);
}

/* Section Headings */
.section-title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* Description Text */
.about-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 450;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.about-text strong {
  color: var(--navy);
  font-weight: 700;
}

/* Industry inline bullet list */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-bottom: 2.75rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
}

.industry-item {
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.industry-item:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.bullet {
  color: var(--primary);
  font-weight: 800;
  user-select: none;
}

/* Solutions block */
.solutions-box {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.75rem;
  margin-bottom: 2.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.solutions-box:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px rgba(3, 30, 63, 0.03);
}

.solutions-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.solutions-highlight {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.solutions-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border-color);
  border: none;
  margin: 2.5rem 0;
}

/* Contact Details */
.contact-info {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.contact-link {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item:hover svg {
  transform: scale(1.1);
}

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

.contact-label {
  color: var(--text-muted);
  font-weight: 700;
}

.contact-separator {
  color: var(--border-color);
  user-select: none;
}

/* Footer patience text */
.footer-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 640px) {
  body {
    padding: 1rem;
  }
  
  .container {
    padding: 3rem 1.75rem;
    border-radius: 24px;
  }
  
  .logo-container {
    margin-bottom: 2.25rem;
  }
  
  .logo {
    max-width: 210px;
  }
  
  .about-text {
    font-size: 0.975rem;
    margin-bottom: 2rem;
  }
  
  .industries-list {
    font-size: 0.9rem;
    margin-bottom: 2.25rem;
    gap: 0.4rem 0.75rem;
  }
  
  .solutions-box {
    padding: 1.5rem 1.25rem;
    margin-bottom: 2.25rem;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .contact-separator {
    display: none;
  }
}
