/* 
   IND Tech Mark - Corporate Maintenance CSS
   Aligned with the official company website brand identity & About Page UI
*/

:root {
  --bg-main: #F7F9FC;
  --bg-card: #ffffff;
  
  --primary-blue: #1476F2;
  --secondary-blue: #0D5BD7;
  --accent-red: #E51635; /* From official branding checkmark */
  
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-white-muted: #9b9a9f;
  
  --border-card: rgba(20, 118, 242, 0.08);
  --border-light: #ebeff6;
  --shadow-soft: 0 12px 35px rgba(20, 118, 242, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 45px rgba(20, 118, 242, 0.08), 0 4px 15px rgba(0, 0, 0, 0.03);

  --font-inter: 'Inter', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
  --font-sora: 'Sora', sans-serif;
  
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* ==========================================================================
   Resets and Global Styling
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-inter);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Corporate Mesh Radial Background Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(20, 118, 242, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(13, 91, 215, 0.05) 0%, transparent 45%);
  background-attachment: fixed;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Navbar / Header Style
   ========================================================================== */
.site-navbar {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.nav-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-brand-link:hover {
  opacity: 0.85;
}

.nav-brand-logo {
  height: 32px;
  width: auto;
}

/* Center Navigation Menu Links */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
}

.nav-item-link {
  font-family: var(--font-jakarta);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  text-transform: capitalize;
  transition: var(--transition-fast);
}

.nav-item-link::after {
  content: "";
  border-bottom: 2.5px solid var(--primary-blue);
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  transition: var(--transition-normal);
}

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

.nav-item-link:hover::after {
  width: 100%;
}

/* Right Navigation Button */
.nav-actions {
  display: flex;
  align-items: center;
}

/* Header/Contact Button styling matching site style */
.btn-header-contact {
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--font-jakarta);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
  -webkit-clip-path: inset(0 round 30px);
  clip-path: inset(0 round 30px);
}

.btn-header-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  z-index: -1;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-contact:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.btn-header-contact:hover {
  color: #ffffff;
}

/* ==========================================================================
   Hero Section Split Layout
   ========================================================================== */
.hero-container {
  flex-grow: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}

/* Pill badge style */
.badge-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 118, 242, 0.05);
  border: 1px solid rgba(20, 118, 242, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  align-self: flex-start;
}

.badge-pill-text {
  font-family: var(--font-jakarta);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.25px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  position: relative;
}

.badge-dot::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-blue);
  animation: badge-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes badge-pulse {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Bold Corporate Headline */
.hero-heading-main {
  font-family: var(--font-sora);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.75px;
}

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

/* Subheadline Description */
.hero-paragraph-sub {
  font-family: var(--font-inter);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Sliding Hover Button System */
.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Website Match sliding primary button */
.btn-sliding-primary {
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--font-jakarta);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

.btn-sliding-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sliding-primary:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.btn-sliding-primary:hover {
  color: var(--primary-blue);
  box-shadow: 0 10px 20px rgba(20, 118, 242, 0.15);
}

.btn-sliding-primary svg {
  transition: transform 0.3s ease;
}

.btn-sliding-primary:hover svg {
  transform: rotate(45deg);
  stroke: var(--primary-blue);
}

/* Website Match sliding secondary outline button */
.btn-sliding-secondary {
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--font-jakarta);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

.btn-sliding-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  z-index: -1;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sliding-secondary:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.btn-sliding-secondary:hover {
  color: #ffffff;
}

/* Trust Line Text */
.trust-line-text {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   Right Side Business Dashboard Graphics
   ========================================================================== */
.hero-right-col-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 480px;
  justify-content: center;
  padding-left: 20px;
}

/* Balanced Enterprise UI Cards */
.enterprise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: absolute;
  width: 370px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.enterprise-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02) !important;
  z-index: 10 !important;
}

/* Card 1: Revenue Metrics (Top Left position) */
.card-revenue {
  top: 20px;
  left: 10px;
  z-index: 3;
  animation: card-float-1 8s ease-in-out infinite alternate;
}

/* Card 2: CRM Metrics (Center Right position) */
.card-crm {
  top: 140px;
  right: 0px;
  z-index: 2;
  animation: card-float-2 9s ease-in-out infinite alternate;
  width: 340px;
}

/* Card 3: Systems log status (Bottom Left position) */
.card-systems {
  bottom: 20px;
  left: 30px;
  z-index: 4;
  animation: card-float-3 10s ease-in-out infinite alternate;
  width: 360px;
}

/* Floats animations */
@keyframes card-float-1 {
  0% { transform: translateY(0px) rotate(0.5deg); }
  100% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes card-float-2 {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(12px) rotate(0.5deg); }
}

@keyframes card-float-3 {
  0% { transform: translateY(0px) rotate(0.5deg); }
  100% { transform: translateY(-12px) rotate(-0.5deg); }
}

/* Inside Card Components */
.card-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.card-title-text {
  font-family: var(--font-jakarta);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-subtitle-text {
  font-size: 11px;
  color: var(--text-muted);
}

.card-main-val {
  font-family: var(--font-sora);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.card-trend-badge {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: 100px;
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
}

/* SVG graph inside card */
.card-svg-line {
  width: 100%;
  height: 80px;
  display: block;
}

/* CRM elements list */
.crm-items-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.crm-item-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.crm-item-status {
  font-weight: 700;
  color: var(--primary-blue);
}

.crm-item-status.active {
  color: #10b981;
}

/* System Logs Console styling */
.logs-console-window {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px;
  height: 90px;
  overflow: hidden;
  color: #334155;
  line-height: 1.5;
}

.console-row-log {
  margin-bottom: 4px;
}

.console-symbol {
  color: var(--primary-blue);
  font-weight: bold;
  margin-right: 4px;
}

/* ==========================================================================
   Mid-Section Horizontal Strip
   ========================================================================== */
.middle-solutions-strip {
  width: 100%;
  max-width: 1300px;
  margin: 20px auto 40px;
  padding: 0 24px;
}

.middle-solutions-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.solution-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-strip-icon-box {
  width: 32px;
  height: 32px;
  background: rgba(20, 118, 242, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.solution-strip-text {
  font-family: var(--font-jakarta);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   Contact / Notification Capture Area
   ========================================================================== */
.contact-section-strip {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 0 24px;
}

.contact-section-wrapper {
  background: linear-gradient(135deg, #ffffff 40%, rgba(20, 118, 242, 0.02) 100%);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-soft);
}

.contact-left-info h3 {
  font-family: var(--font-sora);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-left-info p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-links-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

.contact-link-card svg {
  color: var(--primary-blue);
}

/* Email Signup Form */
.signup-email-form {
  display: flex;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 6px;
  border-radius: 12px;
  transition: var(--transition-normal);
}

.signup-email-form:focus-within {
  border-color: rgba(20, 118, 242, 0.3);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(20, 118, 242, 0.08);
}

.signup-email-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 10px 16px;
  font-size: 15px;
  font-family: var(--font-inter);
  width: 100%;
}

.signup-email-btn {
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-jakarta);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.signup-email-btn:hover {
  background: var(--secondary-blue);
}

.signup-feedback-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 10px;
}

.signup-feedback-success-icon {
  color: #10b981;
  font-weight: bold;
}

.signup-feedback-success-text {
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Footer Section (Matching website design footer)
   ========================================================================== */
.footer-wrap-main {
  background: var(--text-primary); /* #111111 dark background */
  color: #ffffff;
  width: 100%;
  padding: 70px 24px 30px;
  margin-top: 50px;
}

.footer-content-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  align-self: flex-start;
}

.footer-desc-text {
  font-size: 14px;
  color: var(--text-white-muted);
  line-height: 1.7;
}

.footer-headings {
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 14px;
  color: var(--text-white-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-nav-link:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-white-muted);
}

.footer-contact-item a {
  color: var(--text-white-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #ffffff;
}

/* Footer social links circles */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-circle-link {
  background: #27292E;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-circle-link:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

.social-circle-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer bottom copyright area */
.footer-copyright-row {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text-lbl {
  font-size: 13px;
  color: var(--text-white-muted);
}

.copyright-links-nav {
  display: flex;
  gap: 24px;
}

.copyright-nav-link {
  font-size: 13px;
  color: var(--text-white-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.copyright-nav-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Viewports (Mobile First)
   ========================================================================== */

/* Tablet viewports (less than 991px) */
@media (max-width: 991px) {
  .nav-menu {
    gap: 24px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
  
  .hero-left-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .badge-pill-outline {
    align-self: center;
  }
  
  .btn-row {
    justify-content: center;
  }
  
  .hero-right-col-graphic {
    height: 400px;
    padding-left: 0;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  
  .enterprise-card {
    position: absolute;
    width: 300px;
  }
  
  .card-revenue {
    top: 10px;
    left: 0px;
  }
  
  .card-crm {
    top: 100px;
    right: 0px;
    width: 290px;
  }
  
  .card-systems {
    bottom: 10px;
    left: 20px;
    width: 290px;
  }
  
  .contact-section-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .footer-content-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile viewports (less than 768px) */
@media (max-width: 768px) {
  .site-navbar {
    padding: 20px 16px;
  }
  
  .nav-menu {
    display: none; /* Hide top links on mobile for navbar simplicity */
  }
  
  .hero-right-col-graphic {
    height: auto;
    display: flex;
    flex-direction: column;
    position: static;
    gap: 16px;
    padding: 0;
  }
  
  .enterprise-card {
    position: static;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
    box-shadow: var(--shadow-soft);
  }
  
  .middle-solutions-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .footer-content-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Small mobile viewports (less than 576px) */
@media (max-width: 576px) {
  .hero-heading-main {
    font-size: 28px;
  }
  
  .hero-paragraph-sub {
    font-size: 15px;
  }
  
  .btn-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .btn-sliding-primary, .btn-sliding-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .signup-email-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }
  
  .signup-email-form:focus-within {
    box-shadow: none;
    background: transparent;
  }
  
  .signup-email-input {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
  }
  
  .signup-email-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }
  
  .contact-links-grid {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-copyright-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .copyright-links-nav {
    justify-content: center;
  }
}
