/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg, #ffffff);
  color: var(--text, #1e293b);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   COLOURS  (exact Cognivion palette)
========================================================= */
:root {
  --primary: #142444;
  /* Cognivion Deep Blue */
  --orange: #f4701e;
  /* Cognivion Orange */
  --orange2: #e8560a;
  --orange3: #ff8e42;
  --aws: #f4701e;
  --bg: #ffffff;
  /* Pure White Background */
  --bg2: #f8fafc;
  /* Soft Gray-Blue Background */
  --bg3: #f1f5f9;
  /* Alternative light section */
  --card: #ffffff;
  /* Card Background */
  --text: #1e293b;
  /* Primary Text Color (Slate) */
  --text-light: #64748b;
  /* Secondary Text Color */
  --border: #e2e8f0;
  /* Soft Border */
  --border-o: rgba(244, 112, 30, 0.2);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --r: 12px;
  --r2: 24px;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

p {
  color: var(--text-light);
  font-size: .96rem;
  line-height: 1.8;
}

.accent {
  color: var(--orange2);
}

.accent-aws {
  color: var(--aws);
}

/* =========================================================
   LAYOUT HELPERS
========================================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec {
  padding: 90px 0;
}

.sec-alt {
  background: var(--bg2);
}

.sec-dark {
  background: var(--bg3);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tc {
  text-align: center;
}

.mt8 {
  margin-top: 8px;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt40 {
  margin-top: 40px;
}

.mt56 {
  margin-top: 56px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .22s;
  letter-spacing: .02em;
}

.btn-org {
  background: var(--orange);
  color: #fff;
}

.btn-org:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 86, 10, .4);
}

.btn-line {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.btn-line:hover {
  border-color: var(--primary);
  background: rgba(20, 36, 68, 0.03);
  transform: translateY(-2px);
}

.btn-aws {
  background: var(--aws);
  color: #111;
}

.btn-aws:hover {
  background: #ffb234;
  transform: translateY(-2px);
}

/* TAGS / PILLS */
.tag {
  display: inline-block;
  background: rgba(232, 86, 10, .15);
  border: 1px solid var(--border-o);
  color: var(--orange3);
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* =========================================================
   NAVBAR
========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: .02em;
}

.logo-name span {
  color: var(--orange2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .2s;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(20, 36, 68, 0.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-aws {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(244, 112, 30, 0.05);
  border: 1px solid rgba(244, 112, 30, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.nav-aws i {
  font-size: 0.8rem;
}

.nav-aws-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
}

.nav-aws-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse-dot 2s infinite ease-out;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mob-menu.show {
  display: block;
}

.mob-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
  transition: .2s;
}

.mob-menu a:hover {
  color: var(--primary);
  background: rgba(20, 36, 68, 0.05);
}

.mob-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* dotted grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(20, 36, 68, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* gradient blobs */
.hero-blob1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 112, 30, 0.08) 0%, transparent 65%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hero-blob2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 36, 68, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  background: rgba(244, 112, 30, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(244, 112, 30, 0.2);
}

.hero-label i,
.nav-aws i {
  color: var(--orange);
  font-size: 0.9rem;
}

.nav-aws i {
  font-size: 0.8rem;
}

.hero-label-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--orange2);
  font-style: normal;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 500px;
  color: var(--text-light);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kpi-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 14px;
  transition: border-color .3s, background .3s;
}

.kpi-box:hover {
  border-color: var(--border-o);
  background: rgba(232, 86, 10, .08);
}

.kpi-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange2);
  line-height: 1;
}

.kpi-lbl {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Hero right panel */
.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.hero-panel-top {
  background: linear-gradient(135deg, var(--primary), #1e293b);
  padding: 28px 28px 0;
  border-bottom: 1px solid var(--border);
}

.aws-partner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 0, .15);
  border: 1.5px solid rgba(255, 153, 0, .4);
  padding: 7px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--aws);
}

.aws-cloud-icon {
  font-size: 1.5rem;
}

.panel-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.panel-sub {
  font-size: .84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.panel-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: -1px;
}

.panel-tab {
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: relative;
  transition: .2s;
}

.panel-tab.active {
  background: var(--card);
  border-color: var(--border);
  color: var(--orange3);
  border-bottom-color: var(--card);
}

.hero-panel-body {
  padding: 28px;
  background: var(--bg);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: .25s;
}

.svc-row:hover {
  border-color: var(--border-o);
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.svc-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232, 86, 10, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange2);
  font-size: .9rem;
}

.svc-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
}

.svc-badge {
  margin-left: auto;
  background: rgba(244, 112, 30, 0.1);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: .66rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* =========================================================
   STRATEGIC PARTNER BAND (ENHANCED)
========================================================= */
.band {
  background: linear-gradient(135deg, #f4701e 0%, #d45500 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.band-text {
  flex: 1;
  max-width: 600px;
}

.band-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.band h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.badge-card {
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 390px;
}
.badge-card-t {
  background: #ffffff00;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
}

.badge-card:hover {
  transform: scale(1.05) rotate(1deg);
}

.badge-card img {
  max-height: 135px;
  width: auto;
  display: block;
}

.btn-white {
  background: #fff;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media(max-width: 991px) {
  .band-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .band-text {
    max-width: 100%;
  }

  .badge-card {
    margin: 0 auto;
  }

  .band h3 {
    font-size: 1.8rem;
  }
}

/* =========================================================
   SERVICES
========================================================= */
.sec-head {
  max-width: 640px;
  margin: 0 auto 56px;
}

.sec-head .tag {
  margin-bottom: 14px;
}

.sec-head h2 {
  margin-bottom: 14px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 30px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange3));
  opacity: 0;
  transition: opacity .3s;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-o);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232, 86, 10, .14);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: .3s;
}

.svc-card:hover .svc-card-ico {
  background: var(--orange);
}

.svc-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.svc-card p {
  font-size: .85rem;
  line-height: 1.75;
}

/* =========================================================
   OFFERINGS & PROPOSITION
========================================================= */
.offers-sec {
  background: var(--bg2);
  padding: 100px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.offer-col h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--primary);
  position: relative;
}

.offer-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Vertical line */
.offer-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(20, 36, 68, 0.1);
  z-index: 1;
}

.offer-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.offer-item:last-child {
  margin-bottom: 0;
}

.offer-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 10px 20px rgba(20, 36, 68, 0.15);
  transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-item:nth-child(even) .offer-icon-box {
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(244, 112, 30, 0.2);
}

.offer-item:hover .offer-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.offer-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.offer-text p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 991px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .offer-col h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}

/* =========================================================
   ROADMAP SECTION
========================================================= */
.roadmap-sec {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.roadmap-sec .tag {
  background: #fff0e6;
  color: #f4701e;
  border: none;
}

.roadmap-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
  gap: 20px;
}

/* Connecting line */
.roadmap-container::before {
  content: '';
  position: absolute;
  top: 40px; /* Center of the icon */
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.roadmap-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.roadmap-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.roadmap-step:hover .roadmap-icon-box {
  transform: translateY(-5px);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 10px 20px rgba(244, 112, 30, 0.15);
}

.roadmap-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.roadmap-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 200px;
}

/* Responsive Roadmap */
@media (max-width: 991px) {
  .roadmap-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  
  .roadmap-container::before {
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }
  
  .roadmap-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    gap: 24px;
    align-items: center;
  }
  
  .roadmap-icon-box {
    margin-bottom: 0;
    min-width: 80px;
  }
  
  .roadmap-step p {
    max-width: 100%;
  }
}

/* =========================================================
   AWS PARTNER
========================================================= */

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.partner-info .tag {
  margin-bottom: 16px;
}

.partner-info h2 {
  margin-bottom: 16px;
}

.partner-info p {
  margin-bottom: 32px;
}

.partner-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(232, 86, 10, .18);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: var(--orange2);
  margin-top: 2px;
}

.step h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.step p {
  font-size: .84rem;
}

.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}

.partner-card-head {
  background: linear-gradient(135deg, #1a3260, #0f2040);
  padding: 28px;
  border-bottom: 1px solid var(--border);
}

.aws-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.aws-tier-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.aws-tier-label {
  font-size: .68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.aws-tier-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--aws);
  margin-top: 3px;
}

.aws-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 153, 0, .12);
  border: 1.5px solid rgba(255, 153, 0, .3);
  color: var(--aws);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}

.partner-card-body {
  padding: 24px 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  color: var(--text-light);
  transition: .25s;
}

.check-item:hover {
  border-color: var(--border-o);
  color: var(--primary);
}

.chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(232, 86, 10, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--orange2);
}

/* =========================================================
   STATS BAND
========================================================= */
.stats-band {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat {
  padding: 48px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange2);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: .8rem;
  color: var(--text-light);
}

/* =========================================================
   INDUSTRIES
========================================================= */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ind-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
  transition: all .28s;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.ind-card:hover {
  border-color: var(--border-o);
  background: rgba(232, 86, 10, .08);
  transform: translateX(4px);
}

.ind-ico {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ind-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--primary);
}

.ind-sub {
  font-size: .76rem;
  color: var(--grey);
  margin-top: 2px;
}

/* =========================================================
   WHY COGNIVION
========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.why-card:hover {
  border-color: var(--border-o);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(232, 86, 10, .14);
  border: 2px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: .3s;
}

.why-card:hover .why-ico {
  background: var(--orange);
}

.why-card h3 {
  font-size: .98rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.why-card p {
  font-size: .83rem;
  color: var(--text-light);
}

/* =========================================================
   PARTNERS SLIDER
========================================================= */
.logos-sec {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}

.logo-slider {
  display: flex;
  gap: 30px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  padding: 30px 0;
}

.logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 35px;
  height: 130px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.logo-item img {
  max-height: 90px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: .4s ease;
}

.logo-item:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.logo-item:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */
.contact-info-sec {
  background: var(--bg2);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: #ffffff;
  /* White background as per image */
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--orange2);
}

.contact-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* Card Variations based on image */
.icon-blue-circle {
  background: #eef5ff;
  color: var(--orange2);
}

.icon-orange-circle {
  background: var(--orange2);
  color: #ffffff;
}

.contact-card h3 {
  color: #142444;
  /* Dark blue from theme */
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  color: #5e6d85;
  /* Soft grey */
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.contact-card .loc-text {
  max-width: 250px;
}

@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--primary);
  padding: 80px 0 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.f-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.f-brand p {
  font-size: .83rem;
  line-height: 1.75;
  max-width: 270px;
  color: rgba(255, 255, 255, 0.7);
}

.f-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.f-soc {
  width: 35px;
  height: 35px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--grey);
  transition: .2s;
}

.f-soc:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.f-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.f-col ul li {
  margin-bottom: 10px;
}

.f-col ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.7);
  transition: .2s;
}

.f-col ul li a:hover {
  color: var(--orange);
}

.footer-btm {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-btm p {
  font-size: .78rem;
  color: var(--grey);
}

.footer-btm-links {
  display: flex;
  gap: 18px;
}

.footer-btm-links a {
  font-size: .78rem;
  color: var(--grey);
}

.footer-btm-links a:hover {
  color: var(--orange3);
}

/* =========================================================
   CASE STUDY (CodeSense AI)
========================================================= */
.sec-alt-dark {
  background: #09111e;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-card {
  background: linear-gradient(135deg, #0e1726 0%, #152033 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 112, 30, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35), 0 0 20px rgba(244, 112, 30, 0.05);
}

.cs-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.cs-card:hover .cs-icon-wrapper {
  transform: scale(1.08) rotate(5deg);
}

.cs-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cs-subtitle {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.cs-side-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cs-tech-section {
  width: 100%;
}

.cs-tech-header {
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 14px;
}

.cs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.76rem;
  padding: 5px 12px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.25s ease;
}

.cs-badge:hover {
  background: rgba(244, 112, 30, 0.12);
  border-color: rgba(244, 112, 30, 0.4);
  color: var(--orange3);
  transform: translateY(-1px);
}

.cs-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-section {
  display: flex;
  flex-direction: column;
}

.cs-sec-title {
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.cs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cs-item strong {
  color: #f1f5f9;
}

.cs-bullet {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.cs-checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cs-item-result {
  color: #f1f5f9;
}

.cs-item-result strong {
  color: #34d399; /* Emerald text for result highlight */
}

/* Media Query overrides inside the block for clean organization */
@media (max-width: 900px) {
  .cs-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }
  
  .cs-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 32px;
  }
  
  .cs-main {
    gap: 28px;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(3) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:900px) {

  .hero-content,
  .partner-grid,
  .enq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-panel {
    display: none;
  }

  .grid-3,
  .why-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media(max-width:640px) {
  .sec {
    padding: 64px 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .grid-2,
  .grid-3,
  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .ind-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpi {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .row2 {
    grid-template-columns: 1fr;
  }

  .band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-btm {
    flex-direction: column;
    text-align: center;
  }
}