/* ================================================
   eCentrix Verse - Custom Styles
   ================================================ */

:root {
  --primary-blue: #1e3a8a;
  --dark-navy: #1e293b;
  --text-muted: #64748b;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8fafc;
}

/* ================================================
   Hero Banner Section
   ================================================ */
.hero-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -ms-interpolation-mode: bicubic;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: none;
  box-shadow: none;
  outline: none;
}

.hero-banner:hover {
  opacity: 0.95;
}

/* ================================================
   Icon Box Styling
   ================================================ */
.icon-box {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.icon-box:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.icon-container {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-container img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.icon-box-text {
  font-size: 20px;
  font-weight: 700;
}

/* ================================================
   Product Card Styling
   ================================================ */
.product-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59,130,246,0.2);
  transform: translateY(-4px);
}

.product-logo {
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.product-card .text-muted {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #474747 !important;
  text-align: left !important;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-visit {
  background-image: url('../img/button.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  font-size: 14px;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.btn-visit span {
  order: -1;
}

.btn-visit:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* ================================================
   Footer Section
   ================================================ */
.footer-section {
  background: radial-gradient(50% 50% at 50% 23.92%, #1977BC 0%, #181934 100%);
  color: white;
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 0.95rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 0.5rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  opacity: 1;
}

.btn-learn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-learn:hover {
  background-color: white;
  color: #1e2b4d;
  transform: scale(1.05);
}

/* ================================================
   Service Header
   ================================================ */
.service-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, #1977BC 0%, #181934 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.service-title-highlight {
  font-weight: 700;
}

/* ================================================
   Responsive Media Queries
   ================================================ */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 1rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .icon-box-text {
    font-size: 14px;
  }
}
