/* =====================================================
   ULTRON TECH SOLUTION – Premium Master Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  --ultron-blue: #0B5ED7;
  --deep-navy: #083D77;
  --sky-blue: #1FA2FF;
  --saffron-orange: #F7941D;
  --deep-orange: #E85D04;
  --india-green: #2E8B57;
  --light-green: #6AB547;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --light-grey: #F2F5FA;
  --mid-grey: #E8ECF2;
  --dark-grey: #1E2330;
  --body-text: #3D4563;
  --silver: #8A93A8;

  --tech-gradient: linear-gradient(135deg, #083D77 0%, #0B5ED7 60%, #1FA2FF 100%);
  --orange-gradient: linear-gradient(135deg, #F7941D 0%, #E85D04 100%);
  --card-bg: linear-gradient(145deg, rgba(11, 94, 215, 0.04), rgba(31, 162, 255, 0.07));
  --hero-gradient: linear-gradient(135deg, #06265A 0%, #0B5ED7 55%, #1FA2FF 100%);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);

  --shadow-xs: 0 1px 4px rgba(8, 61, 119, 0.06);
  --shadow-sm: 0 3px 12px rgba(8, 61, 119, 0.09);
  --shadow-md: 0 6px 24px rgba(8, 61, 119, 0.13);
  --shadow-lg: 0 12px 48px rgba(8, 61, 119, 0.18);
  --shadow-xl: 0 20px 70px rgba(8, 61, 119, 0.22);
  --shadow-glow: 0 0 40px rgba(11, 94, 215, 0.28);
  --shadow-orange: 0 8px 32px rgba(247, 148, 29, 0.35);

  --font-primary: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 0.18s var(--ease);
  --t-med: 0.32s var(--ease);
  --t-slow: 0.5s var(--ease-out);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  background: none;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--dark-grey);
}

.text-center {
  text-align: center;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-primary);
  color: var(--deep-navy);
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--body-text);
  line-height: 1.75;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ultron-blue);
  margin-bottom: 14px;
  padding: 7px 22px;
  border-radius: var(--radius-full);
  background: rgba(11, 94, 215, 0.09);
  border: 1px solid rgba(11, 94, 215, 0.15);
}

.section-title {
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--silver);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.97rem;
  font-family: var(--font-primary);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(-100%);
  transition: transform var(--t-med);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: var(--tech-gradient);
  color: #fff;
  box-shadow: 0 4px 22px rgba(11, 94, 215, 0.38);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(11, 94, 215, 0.5);
}

.btn-orange {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(247, 148, 29, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--ultron-blue);
  border: 2px solid var(--ultron-blue);
}

.btn-secondary:hover {
  background: var(--ultron-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass-bg);
  color: #fff;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  /* Reduced padding */
  transition: all var(--t-med);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 38, 90, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  /* Bright background for logo visibility */
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--t-med);
}

.nav-logo:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.nav-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform var(--t-fast);
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  /* Slightly reduced gap */
}

.nav-menu a {
  font-size: 0.93rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron-orange);
  border-radius: 2px;
  transition: width var(--t-med);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 26px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all var(--t-fast);
  display: block;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  /* Increased to avoid navbar overlap */
}

/* Animated background mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 70% 30%, rgba(31, 162, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 70%, rgba(247, 148, 29, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(8, 38, 90, 0.3));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  color: var(--saffron-orange);
  position: relative;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--saffron-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Glassmorphism hero card */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-glass-card img {
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
  transition: transform var(--t-med);
}

.hero-glass-card img:hover {
  transform: scale(1.05);
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--deep-navy);
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 2;
}

.hero-badge-1 {
  top: 8%;
  right: -10%;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 12%;
  left: -8%;
  animation-delay: 1.5s;
}

.hero-badge-3 {
  top: 45%;
  right: -14%;
  animation-delay: 0.8s;
}

.hero-badge .badge-icon {
  font-size: 1.4rem;
}

.hero-badge .badge-val {
  font-size: 1.2rem;
  color: var(--ultron-blue);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.shape-1 {
  width: 90px;
  height: 90px;
  background: var(--saffron-orange);
  top: 12%;
  right: 8%;
  animation: floatUp 7s ease-in-out infinite;
}

.shape-2 {
  width: 55px;
  height: 55px;
  background: #1FA2FF;
  bottom: 20%;
  left: 5%;
  animation: floatUp 9s ease-in-out infinite 1.2s;
}

.shape-3 {
  width: 35px;
  height: 35px;
  background: var(--india-green);
  top: 42%;
  left: 2%;
  animation: floatUp 6s ease-in-out infinite 0.6s;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(15deg);
  }
}

@keyframes heroGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.22;
  }
}

/* ── Counter Section ── */
.counter-section {
  background: linear-gradient(135deg, #06265A 0%, #0B5ED7 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 300px at 50% 50%, rgba(255, 255, 255, 0.04), transparent);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--saffron-orange);
  line-height: 1;
  display: block;
}

.counter-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
  border: 1.5px solid rgba(11, 94, 215, 0.07);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tech-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 94, 215, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 22px;
  transition: all var(--t-med);
  border: 1.5px solid rgba(11, 94, 215, 0.1);
}

.card:hover .card-icon {
  background: var(--tech-gradient);
  border-color: transparent;
  transform: scale(1.08) rotate(-4deg);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.card p {
  font-size: 0.94rem;
  color: var(--silver);
  margin: 0;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* ── Industry Cards ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 22px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-med);
  border: 1.5px solid var(--mid-grey);
  cursor: pointer;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--ultron-blue);
  background: linear-gradient(145deg, #fff 0%, rgba(11, 94, 215, 0.03) 100%);
}

.industry-card .ind-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.industry-card h4 {
  color: var(--deep-navy);
  margin-bottom: 8px;
  font-size: 1rem;
}

.industry-card p {
  font-size: 0.86rem;
  color: var(--silver);
  margin: 0;
}

/* ── Trust / Why Choose Cards ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-med);
  border: 1.5px solid var(--mid-grey);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(11, 94, 215, 0.2);
}

.trust-card .trust-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}

.trust-card h4 {
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--silver);
  margin: 0;
}

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--mid-grey);
  transition: all var(--t-med);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 4rem;
  color: rgba(11, 94, 215, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-text {
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--deep-navy);
  font-family: var(--font-primary);
}

.testimonial-role {
  font-size: 0.83rem;
  color: var(--silver);
  margin-top: 2px;
}

.star-rating {
  color: var(--saffron-orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* ── Product Category Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
  border: 1.5px solid var(--mid-grey);
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-category-header {
  background: var(--tech-gradient);
  padding: 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-category-header .cat-icon {
  font-size: 2.2rem;
}

.product-category-header h3 {
  color: #fff;
  font-size: 1.05rem;
}

.product-list {
  padding: 16px 22px;
}

.product-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--dark-grey);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li .prod-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-list li .prod-name::before {
  content: '▸';
  color: var(--ultron-blue);
  font-size: 0.75rem;
}

.product-list li .checkout-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ultron-blue);
  padding: 4px 14px;
  border: 1.5px solid var(--ultron-blue);
  border-radius: var(--radius-full);
  transition: all var(--t-fast);
  white-space: nowrap;
}

.product-list li .checkout-link:hover {
  background: var(--ultron-blue);
  color: #fff;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--body-text);
  transition: all var(--t-fast);
  cursor: pointer;
  border: 1.5px solid var(--mid-grey);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--tech-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(11, 94, 215, 0.28);
  transform: translateY(-1px);
}

/* ── Page Header ── */
.page-header {
  background: var(--hero-gradient);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.12), transparent 70%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 162, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: var(--saffron-orange);
}

/* ── CTA Section ── */
.cta-section {
  background: var(--hero-gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.15), transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 162, 255, 0.12), transparent 70%);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--deep-navy);
  font-family: var(--font-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: all var(--t-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ultron-blue);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
  background: #FDFEFF;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ── Checkout Modal ── */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 38, 90, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
}

.checkout-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.checkout-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 92%;
  padding: 52px;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.38s var(--ease-out);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(28px) scale(0.97);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.checkout-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--body-text);
  transition: all var(--t-fast);
}

.checkout-modal-close:hover {
  background: var(--ultron-blue);
  color: #fff;
  transform: rotate(90deg);
}

.checkout-modal h2 {
  margin-bottom: 6px;
  font-size: 1.7rem;
}

.checkout-modal .modal-subtitle {
  color: var(--silver);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.checkout-email-box {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin: 18px 0 26px;
  border: 1.5px dashed rgba(11, 94, 215, 0.2);
}

.checkout-email-box .email-label {
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 6px;
}

.checkout-email-box .email-address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ultron-blue);
  font-family: var(--font-primary);
}

.checkout-email-box .email-address a {
  color: var(--ultron-blue);
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
}

/* ── About Page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-logo-wrap {
  background: var(--hero-gradient);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.about-logo-wrap img {
  max-width: 260px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about-stat-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  text-align: center;
  border: 1.5px solid var(--mid-grey);
  flex: 1;
  min-width: 90px;
}

.about-stat-val {
  font-family: var(--font-primary);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--ultron-blue);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--silver);
  margin-top: 4px;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* ── Services ── */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-visual {
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-visual.blue-bg {
  background: var(--hero-gradient);
}

.service-visual.orange-bg {
  background: var(--orange-gradient);
}

.service-visual-icon {
  font-size: 5rem;
  margin-bottom: 16px;
}

.service-visual h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.service-visual p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  margin: 0;
}

.service-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--mid-grey);
  font-size: 0.94rem;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '✓';
  color: var(--india-green);
  font-weight: 800;
  font-size: 0.9rem;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 22px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--mid-grey);
  position: relative;
  transition: all var(--t-med);
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(11, 94, 215, 0.2);
}

.process-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tech-gradient);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-primary);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.35);
}

.process-icon {
  font-size: 2.4rem;
  margin: 16px 0 14px;
}

.process-card h4 {
  font-size: 1rem;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.84rem;
  color: var(--silver);
  margin: 0;
}

/* ── Industry Detail Cards ── */
.industry-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  border: 1.5px solid var(--mid-grey);
  transition: all var(--t-med);
}

.industry-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 94, 215, 0.15);
}

.industry-detail-icon {
  font-size: 3.8rem;
  line-height: 1;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-primary);
}

.tag-blue {
  background: rgba(11, 94, 215, 0.08);
  color: var(--ultron-blue);
}

.tag-orange {
  background: rgba(247, 148, 29, 0.1);
  color: var(--deep-orange);
}

.tag-green {
  background: rgba(46, 139, 87, 0.1);
  color: var(--india-green);
}

/* ── Compliance Badges ── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.compliance-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--mid-grey);
  transition: all var(--t-med);
}

.compliance-badge:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: rgba(11, 94, 215, 0.2);
}

.compliance-badge .compliance-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.compliance-badge .compliance-title {
  font-weight: 700;
  color: var(--deep-navy);
  font-family: var(--font-primary);
  font-size: 0.95rem;
}

.compliance-badge .compliance-sub {
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 4px;
}

/* ── Footer ── */
.footer {
  background: var(--dark-grey);
  color: rgba(255, 255, 255, 0.75);
  padding: 90px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-wrap {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform var(--t-fast);
}

.footer-brand img:hover {
  transform: scale(1.05);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 22px;
  line-height: 1.75;
}

.footer h4 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 1rem;
  font-family: var(--font-primary);
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--saffron-orange);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--t-fast);
}

.footer-links a:hover {
  color: var(--saffron-orange);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t-fast);
}

.footer-contact a:hover {
  color: var(--saffron-orange);
}

.footer-contact .icon {
  color: var(--saffron-orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--t-fast);
}

.social-links a:hover {
  background: var(--ultron-blue);
  color: #fff;
  border-color: var(--ultron-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tech-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 24px rgba(11, 94, 215, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-med);
  z-index: 998;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(11, 94, 215, 0.55);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 997;
  transition: all var(--t-fast);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

/* ── FAQ Section ── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 34px;
  margin-bottom: 14px;
  border: 1.5px solid var(--mid-grey);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-med);
}

.faq-item:hover {
  border-color: rgba(11, 94, 215, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  color: var(--deep-navy);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.faq-item p {
  color: var(--body-text);
  font-size: 0.93rem;
  margin: 12px 0 0;
  line-height: 1.7;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Checkout Page ── */
.checkout-page-wrap {
  min-height: 80vh;
  background: var(--off-white);
  padding: 90px 0;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--mid-grey);
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-header h1 {
  font-size: 2rem;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.checkout-header p {
  color: var(--silver);
  font-size: 0.96rem;
}

.checkout-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 94, 215, 0.08);
  color: var(--ultron-blue);
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(11, 94, 215, 0.15);
}

/* ── Counter/Stats Strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 28px auto 0;
}

.stats-strip-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--mid-grey);
}

.stats-strip-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stats-strip-text {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--deep-navy);
  font-family: var(--font-primary);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content p {
    margin: 0 auto 38px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .service-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 285px;
    height: 100vh;
    background: linear-gradient(180deg, #06265A, #0B5ED7);
    flex-direction: column;
    padding: 90px 36px 40px;
    gap: 22px;
    transition: right var(--t-med);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
  }

  .nav-cta {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 150px;
    /* Increased to avoid navbar overlap on mobile */
  }

  .nav-logo {
    padding: 4px 10px;
  }

  .nav-logo img {
    height: 48px;
    /* Smaller logo for mobile */
  }

  .navbar {
    padding: 8px 0;
    /* Tighter navbar for mobile */
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 22px;
  }

  .hero-badge {
    display: none;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .counter-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .industry-detail-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .industry-detail-icon {
    font-size: 3rem;
  }

  .industry-tags {
    justify-content: center;
  }

  .checkout-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .container {
    padding: 0 18px;
  }

  .btn {
    padding: 12px 26px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .counter-number {
    font-size: 2.4rem;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Marquee (client logos) ── */
.clients-section {
  padding: 52px 0;
  background: var(--off-white);
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--silver);
  white-space: nowrap;
  transition: color var(--t-fast);
  padding: 10px 0;
}

.client-logo:hover {
  color: var(--ultron-blue);
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: 44px 36px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--t-med);
  border: 2px solid var(--mid-grey);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--ultron-blue);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-gradient);
  color: #fff;
  padding: 4px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-primary);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card .price {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ultron-blue);
  margin: 18px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--silver);
}

.pricing-features {
  text-align: left;
  margin: 26px 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.91rem;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--mid-grey);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--india-green);
  font-weight: 800;
  flex-shrink: 0;
}