.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(12, 9, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo {
  height: 55px;
  transition: transform 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.06);
}
.nav-links-container {
  display: flex;
  gap: 40px;
}
.nav-links-container a {
  position: relative;
  text-decoration: none;
  color: #f9fafb;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 6px;
  margin-right: 25px;
  transition: transform 0.2s ease;
  overflow: hidden;
}
.nav-links-container a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #45B6F0;
  transition: width 0.3s ease-in-out;
}
.nav-links-container a:hover {
  transform: scale(1.05);
}
.nav-links-container a:hover::after {
  width: 100%;
}
/*HERO SECTION*/
.home-hero {
  position: relative; /* 👈 Replace 'fixed' with 'relative' */
  height: 100vh;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  font-family: 'Segoe UI', sans-serif;
  background-color: #45B6F0;
}
/* Left column */
.home-hero-div1 {
  flex: 1;
  background-color: #45B6F0; /* Light blue like PDF */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
}
.flagship-product-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: center;
  height: 100%;
  width: 31%;            /* ✅ stretch across container */
  max-width: none;        /* ✅ remove limit */
  padding-right: 40px;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}
.flagship-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  padding-bottom: 6px;
  display: inline-block;            /* ✅ Restrict line to text width */
  border-bottom: 2px solid #fff;   /* ✅ Will now match the heading width */
}
.flagship-description {
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #f3f3f3;
  line-height: 1.6;
  max-width: 420px;       /* ✅ allows description to flow more naturally */
  margin-bottom: 20px;
}
.flagship-button {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.flagship-button:hover {
  background: #fff;
  color: #0C0908;
  border-color: #45B6F0;
}
/* Animation keyframe */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Middle column */
.home-hero-div2 {
  flex: 1;
  background-color: #0C0908;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;       /* Ensure positioning context */
  overflow: visible;        /* Allow accents to bleed out */
}
.home-border-accent {
  width: 3px;
  height: 60%;
  background-color: #45B6F0;
  position: absolute;
  top: 20%;
  right: 0; /* Sticks exactly at the edge of hero-div2 */
  border-radius: 1px;
}
.home-hero-company-name-logo {
  background-color: #0C0908;
  padding: 20px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-hero-company-logo img {
  height: 80px;
  width: auto;
}
.home-hero-company-name-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: #fff;
}
/* Company Name (on top) */
.home-hero-company-name h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}
/* Slogan (below) */
.home-hero-company-slogan h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Right column */
.home-hero-div3 {
  flex: 1;
  background-color: #0C0908;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.home-hero-microsoft-name-logo {
  background-color: #0C0908;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 0px;
}
.home-hero-microsoft-logo img {
  height: 80px;
  width: auto;
}
.home-hero-microsoft-name-text {
  color: #ffffff; /* Tailwind-ish grey tone */
  display: flex;
  flex-direction: column;
  text-align: left;
}
.home-hero-microsoft-name-text h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: normal;
  color: #ffffff
}
.home-hero-microsoft-name-text h2 {
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}
.get-it-from-appsource {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.get-it-from-appsource:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.home-hero-des h2 {
  font-size: 1.1rem;
}
.home-hero-company-name h1,
.home-hero-microsoft-name h1 {
  font-size: 1.25rem;
}
.home-hero-company-logo img,
.home-hero-microsoft-logo img {
  height: 60px;
}
/*hero animation*/
/* Base states for animation */
.home-slide-up,
.home-slide-down,
.home-grow-line {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}
.home-slide-down {
  transform: translateY(-40px);
}
html {
  scroll-behavior: smooth;
}
/* Animation keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes growBorder {
  from {
    height: 0px;
    width: 3px;
    opacity: 0;
  }
  to {
    height: 60%;
    opacity: 1;
  }
}
/* Apply animations with delays */
.home-slide-up {
  animation: slideUp 0.8s ease-out 0.3s forwards;
}
.home-slide-down {
  animation: slideDown 0.8s ease-out 0.6s forwards;
}
.home-grow-line {
  animation: growBorder 1s ease-in-out 1.1s forwards;
  background-color: #45B6F0;
  position: absolute;
  width: 3px;
  right: 0;
  top: 20%;
  border-radius: 1px;
}
/*-----------------------------------------------------------------------*/
 /*WHAT WE DO SECTION*/
.what-we-do {
  background-color: #0C0908;
  padding: 60px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* Add a textured overlay using a subtle pattern and the company logo */
.what-we-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    url('images/company-logo.png') center/400px no-repeat, /* Adjust path and size as needed */
    repeating-linear-gradient(135deg, rgba(255,255,255,0.01) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(45deg, rgba(166,182,255,0.03) 0 4px, transparent 4px 40px);
  opacity: 0.18; /* Controls logo/pattern visibility */
  mix-blend-mode: lighten;
  z-index: 0;
  pointer-events: none;
}
.what-we-do-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.what-we-do h2 {
  font-size: 2.5rem;
  color: whitesmoke;
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  animation: FadeIn 2s;
  text-shadow: 0 2px 12px #1520A655, 0 1px 0 #1A1412;
  letter-spacing: 1px;
}
.what-we-do .intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-shadow: 0 1px 0 #1A1412;
  opacity: 0.92;
}
.problem-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.problem-group {
  position: relative;
  flex: 1 1 300px;
  height: 100%;
  background: linear-gradient(135deg, #1520A6 80%, #1A1412 100%);
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.5s ease, transform 0.5s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(21,32,166,0.13), 0 1.5px 0 rgba(255,255,255,0.03) inset;
  z-index: 1;
}
.problem-icon {
  height: 30px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}
/* Add a subtle animated overlay for "alive" effect */
.problem-group::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(166,182,255,0.08) 0 40%, transparent 70%),
              radial-gradient(circle at 20% 80%, rgba(21,32,166,0.10) 0 30%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 6s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  0% {
    background-position: 70% 30%, 20% 80%;
  }
  100% {
    background-position: 60% 40%, 30% 70%;
  }
}
/* Hide content initially */
.problem-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  position: relative;
}
/* Problem-group doesn't increase when hovered over. FIX THIS */
.problem-group:hover {
  transform: scale(1.10); /* subtle increase */
  box-shadow: 0 8px 32px rgba(166,182,255,0.18), 0 1.5px 0 rgba(255,255,255,0.04) inset;
  background: linear-gradient(135deg, #1a1412 60%, #1520A6 100%);
}
.problem-group h3 {
  color: #A6B6FF;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-shadow: 0 1px 4px #1520A6;
}
.problem-group ul {
  list-style: disc inside;
  padding-left: 0;
}
.problem-group li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-shadow: 0 1px 0 #1A1412;
}
/*Why Choose Us*/
.why-choose-us-map {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 60px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
  background-color: #0C0908;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; /* ✅ Anchor ::before overlay */
  overflow: hidden;   /* ✅ Prevent background bleeding */
  z-index: 0;
}
.why-choose-us-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    url('images/diagram-texture.svg'), /* ✅ ensure valid path */
    repeating-linear-gradient(135deg, rgba(255,255,255,0.01) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(45deg, rgba(166,182,255,0.03) 0 4px, transparent 4px 40px);
  background-size: 400px, auto, auto;
  background-repeat: no-repeat, repeat, repeat;
  background-position: center, center, center;
  mix-blend-mode: lighten;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}
.why-choose-us-map h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: whitesmoke;
  font-family: inherit;
}
.journey-map {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.map-stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #1520A6, #1A1412);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
}
.stage-icon {
  font-size: 2rem;
  color: #FFD700;
  flex-shrink: 0;
}
.stage-line {
  width: 4px;
  height: 100%;
  background: #1A1412;
  position: relative;
}
.stage-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px #FFD70055;
}
.stage-line.end {
  background: transparent;
}
.stage-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: whitesmoke;
  font-family: inherit;
}
.stage-content p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  font-family: inherit;
}
/* Responsive */
@media (max-width: 768px) {
  .why-choose-us-map {
    padding: 40px 0;
  }
  .map-stage {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 95vw;
    width: 100%;
  }
  .stage-line {
    display: none;
  }
}
/*ABOUT US*/
/* HERO Section */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #18151a 60%, #0C0908 100%);
  padding: 80px 40px;
  gap: 40px;
  color: whitesmoke;
  box-shadow: 0 8px 32px rgba(21,32,166,0.10), 0 1.5px 0 rgba(255,255,255,0.02) inset;
}
.about-text {
  flex: 1 1 500px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.about-text h2 {
  font-size: 2.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #A6B6FF;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #1520A655, 0 1px 0 #1A1412;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  text-shadow: 0 1px 0 #1A1412;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 
    'Helvetica Neue', sans-serif;
  text-align: justify; /* Aligns both left and right edges */
  margin: 0 auto;
  max-width: 800px;
  padding: 0 20px;
  padding-left: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-text p {
    font-size: 1rem;
    padding: 0 15px;
    text-align: justify;
  }
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}
.about-image img {
  max-width: 50%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(18, 34, 209, 0.13), 0 1.5px 0 rgba(255,255,255,0.03) inset;
  padding-left: 20px;
  padding-right: 20px;
}
/* VALUES GRID */
.about-values {
  background: linear-gradient(135deg, #1A1412 70%, #1520A6 100%);
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 -4px 24px rgba(21,32,166,0.10) inset;
}
.about-values h3 {
  font-size: 2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #A6B6FF;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #1520A655, 0 1px 0 #1A1412;
}
.value-icon {
  height: 30px;
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: linear-gradient(135deg, #0C0908 70%, #18151a 100%);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(21,32,166,0.13), 0 1.5px 0 rgba(255,255,255,0.03) inset;
  color: #fff;
  text-align: center;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
  border: 1px solid rgba(166,182,255,0.08);
}
.value-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px rgba(166,182,255,0.18), 0 1.5px 0 rgba(255,255,255,0.04) inset;
  background: linear-gradient(135deg, #1520A6 60%, #1A1412 100%);
}
.value-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #A6B6FF;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px #1520A655;
}
.value-card p {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #bfc8e6;
  text-shadow: 0 1px 0 #1A1412;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-values h3 {
    font-size: 1.6rem;
  }
}
/*----------------------------------------------------------------------------------------------------------*/
/*I-CONTRACKS Page*/
.hero {
  position: relative; /* 👈 Replace 'fixed' with 'relative' */
  height: 100vh;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111827;
}
/* Left column */
.hero-div1 {
  flex: 1;
  background-color: #45B6F0; /* Light blue like PDF */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
}
.hero-name-des {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.hero-name h1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 4px;
  border-bottom: 2px solid #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-des h2 {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  margin: 0;
}
/* Middle column */
.hero-div2 {
  flex: 1;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;       /* Ensure positioning context */
  overflow: visible;        /* Allow accents to bleed out */
}
.border-accent {
  width: 3px;
  height: 60%;
  background-color: #45B6F0;
  position: absolute;
  top: 20%;
  right: 0; /* Sticks exactly at the edge of hero-div2 */
  border-radius: 1px;
}
.hero-company-name-logo {
  background-color: #45B6F0;
  padding: 20px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-company-logo img {
  height: 80px;
  width: auto;
}
.hero-company-name-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: #fff;
}
/* Company Name (on top) */
.hero-company-name h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}
/* Slogan (below) */
.hero-company-slogan h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Right column */
.hero-div3 {
  flex: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hero-microsoft-name-logo {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 0px;
}
.hero-microsoft-logo img {
  height: 80px;
  width: auto;
}
.hero-microsoft-name-text {
  color: #4B5563; /* Tailwind-ish grey tone */
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-microsoft-name-text h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: normal;
  color: grey;
}
.hero-microsoft-name-text h2 {
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  margin: 0;
  color: gray;
}
  .hero-des h2 {
    font-size: 1.1rem;
  }
  .hero-company-name h1,
  .hero-microsoft-name h1 {
    font-size: 1.25rem;
  }
  .hero-company-logo img,
  .hero-microsoft-logo img {
    height: 80px;
  }


/*hero animation*/
/* Base states for animation */
.slide-up,
.slide-down,
.grow-line {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}
html {
  scroll-behavior: smooth;
}
/* Animation keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes growBorder {
  from {
    height: 0px;
    width: 3px;
    opacity: 0;
  }
  to {
    height: 60%;
    opacity: 1;
  }
}
/* Apply animations with delays */
.slide-up {
  animation: slideUp 0.8s ease-out 0.3s forwards;
}
.slide-down {
  animation: slideDown 0.8s ease-out 0.6s forwards;
}
.grow-line {
  animation: growBorder 1s ease-in-out 1.1s forwards;
  background-color: #45B6F0;
  position: absolute;
  width: 3px;
  right: 0;
  top: 20%;
  border-radius: 1px;
}
/*What it does*/
.what-it-does {
  background-color: #f9fafb;
  padding: 100px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2345B6F0' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
}
.features-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.features-heading {
  font-size: 2.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1f2937;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.feature-item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.feature-title {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}
.feature-desc {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #4b5563;
  line-height: 1.6;
}
/*Panel*/
.panel-image {
  position: relative;
  background-image: url('images/Flow-diagram.png');
  height: 500px;
  background-size: cover;
  background-position: center top;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
 .main-panel-image {
  position: relative;
  background-image: url('images/I-Contracks Page/Main1280[1].png');
  height: 500px;
  background-size: cover;
  background-position: center top;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
/* Icon styling */
.panel-image {
  background-image: url('images/Flow-diagram.png');
  background-size: cover;
  background-position: center top;
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* PowerApps floating icon */
.panel-icon {
  position: absolute;
  top: 50%;
  left: 32px; /* Use right: 32px if you want it on the right side */
  transform: translateY(-50%);
  z-index: 2;
}
.panel-icon img {
  height: 120px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(69,182,240,0.3));
}
.panel-icon img:hover {
  transform: scale(1.05);
}
/*WHO USES I-CONTRACKS*/
.who-uses-section {
 background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
 padding: 100px 20px;
}
.who-uses-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.who-uses-heading {
  font-size: 2.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1f2937;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 3px solid #45B6F0;
  padding-bottom: 8px;
}
.who-uses-carousel {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
}
.user-card {
  flex: 0 0 auto;
  min-width: 280px;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
  text-align: center;
}
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #4b5563;
  line-height: 1.6;
}
/* PAIN POINTS SECTION */
.pain-points-section {
  background-color: #eef2f7; /* Matches Who Uses section */
  padding: 120px 20px;
}
.pain-points-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
/* Heading with bottom border */
.pain-title h2 {
  font-size: 3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937; /* Black */
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 60px;
  border-bottom: 4px solid #45B6F0; /* Light blue line */
  display: inline-block;
  padding-bottom: 12px;
}
/* Zigzag flow stack */
.pain-flow-zigzag {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px; /* Previously 60px */
  padding-left: 40px
}
/* Center vertical line */
.pain-flow-zigzag::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #cbd5e1; /* Soft gray */
  transform: translateX(-50%);
}
/* Node styling */
.pain-node {
  position: relative;
  background-color: #f9fafb;
  color: #1f2937;
  padding: 30px;
  border-radius: 12px;
  box-shadow:
    0 12px 24px rgba(69, 182, 240, 0.15),
    0 6px 12px rgba(69, 182, 240, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  width: 52%; /* Previously 45% */
}

/* Hover effect for pain block */
.pain-node:hover {
  transform: scale(1.03);
  z-index: 10; /*previously 2*/
}
.solution-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(238, 242, 247, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow:
    0 12px 24px rgba(69, 182, 240, 0.15),
    0 6px 12px rgba(69, 182, 240, 0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
/* Active on hover */
.pain-node:hover .solution-box {
 opacity: 0.95; /* Soft presence */
  transform: translateY(0);
  pointer-events: auto;
}
/* Solution content styling */
.solution-box h4 {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.with-icontracks {
  color: #45B6F0;
  font-weight: 600;
}
.solution-box p {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #374151;
  line-height: 1.6;
}
.solution-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solution-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #374151;
  line-height: 1.6;
}
/* Light blue tick icon */
.solution-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #45B6F0;
  font-weight: 700;
  font-size: 1.1rem;
}
/* Animate on scroll */
.pain-node.visible {
  opacity: 1;
  transform: translateY(0);
}
.pain-node.left {
  align-self: flex-start;
}
.pain-node.right {
  align-self: flex-end;
}
.pain-node h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1f2937;
}
.pain-node p {
  margin: 0;
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #4b5563;
}
/*--------------------------------------------*/
.icontracks-activation-hub {
  background-color: #0f172a;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='1.5' fill='%2345B6F0' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 30px 30px;
  padding: 140px 20px;
  color: #ffffff;
}
.activation-heading {
  text-align: center;
  margin-bottom: 60px;
}
.activation-heading h2 {
  font-size: 2.6rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
  color: #ffffff;
}
.activation-heading p {
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
}
.preview-trio {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.preview-block {
  flex: 1;
  background-color: #1e293b;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(69,182,240,0.2);
}
.preview-label {
  background-color: #45B6F0;
  color: white;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}
.preview-block video {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.preview-block h4 {
  font-size: 1.2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #45B6F0;
}
.preview-block p {
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #e2e8f0;
}
.activation-deck {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.install-module,
.role-module {
  flex: 1;
  background-color: #1e293b;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(69,182,240,0.15);
}
.install-module h3
.role-module h4 {
  font-size: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #ffffff;
  margin-bottom: 1rem;
}
.install-module p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #cbd5e1;
  margin-bottom: 20px;
}
.install-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #349ed4, #45B6F0);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(69,182,240,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.install-cta-button:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(69,182,240,0.35);
}
.cta-icon {
  font-size: 1.4rem;
  margin-right: 12px;
}
.cta-text {
  letter-spacing: 0.5px;
}
.badge-set {
  margin-top: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: #94a3b8;
}
.role-module ul {
  list-style: none;
  padding-left: 0;
  color: #cbd5e1;
}
.role-module li {
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.partner-logo-area {
  text-align: center;
  margin-top: 60px;
}
.partner-note {
  font-size: 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #cbd5e1;
  margin-bottom: 10px;
}
.ms-logo {
  max-height: 40px;
  opacity: 0.8;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*DOCDATA TRACKER PAGE*/
.docdata-summary {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%2345B6F0' cx='1' cy='1' r='1'/%3E%3C/svg%3E");
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2937;
}
.docdata-summary-grid {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.docdata-summary-grid h2 {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1f2937;
  border-bottom: 2px solid #45B6F0; /* Light blue accent */
  display: inline-block;
  padding-bottom: 6px;
}
.docdata-summary-grid p {
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.docdata-benefit-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* More depth for floating effect */
  margin: 15px auto;
  padding: 20px;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.docdata-benefit-card:hover {
  transform: translateY(-4px); /* Slight lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12); /* Enhanced shadow on hover */
}
.docdata-benefit-card h3 {
  font-size: 1.25rem;
  color: #0C0908;
  margin-bottom: 10px;
}
.docdata-benefit-card p {
  font-size: 1rem;
  color: #1f2937;
}
.docdata-unique-section {
  background-color: #f4f9fd;
  border-radius: 12px;
  padding: 40px 30px;
  margin: 50px auto;
  max-width: 1000px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.docdata-unique-section h2 {
  font-size: 2rem;
  font-family: 'Times New Roman', Times, serif;
  color: #1f2937;
  margin-bottom: 30px;
  border-bottom: 2px solid #45B6F0;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.unique-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.feature-card h3 {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.4;
}
/* Footer */
.footer-section {
  background-color: #0C0908;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #aaa;
}
.footer-section a {
  color: #45B6F0;
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    gap: 20px;
  }

  .home-hero-div1,
  .home-hero-div2,
  .home-hero-div3 {
    flex: none;
    width: 100%;
    padding: 20px 16px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
  }

  .home-hero-div2,
  .home-hero-div3 {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .home-hero-company-name-logo,
  .home-hero-microsoft-name-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin: 0 auto;
    max-width: 360px;
  }

  .home-hero-company-name-text,
  .home-hero-microsoft-name-text {
    align-items: center;
    text-align: center;
  }


  .home-hero-company-name h1,
  .home-hero-company-slogan h2,
  .home-hero-microsoft-name h1,
  .home-hero-microsoft-name-text h2 {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    font-size: 1.25rem;
  }

  .home-border-accent {
    display: none;
  }

  .home-slide-down {
    transform: translateY(0);
    opacity: 1;
  }

  .home-hero-microsoft-name-logo {
    margin-top: 20px;
  }
}
