:root {
  --ink: #101828;
  --muted: #5b6472;
  --line: #d8e0ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --primary: #41328f;
  --primary-dark: #115e59;
  --blue: #2563eb;
  --amber: #f59e0b;
  --dark: #111827;
  --shadow: 0 22px 56px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* font-family: "Inter", Arial, sans-serif; */
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

p,
span,
li,
a {
  font-family: "Urbanist", sans-serif;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: 180ms ease;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(240, 253, 250, 0.9);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  padding: 120px 0 48px;
  background:
    linear-gradient(90deg,
      rgba(246, 248, 251, 0.98) 0%,
      rgba(246, 248, 251, 0.88) 48%,
      rgba(246, 248, 251, 0.34) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 140px 0 52px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(15, 118, 110, 0.8)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.page-hero .eyebrow {
  color: #ccfbf1;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.45rem);
  line-height: 0.99;
}

.hero-copy,
.lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #374151;
  font-size: 1.12rem;
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.metric {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}

.hero-panel,
.service-card,
.case-card,
.review-card,
.intern-card,
.value-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.capability-list,
.footer-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-list li div p {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
}

.check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 0.85rem;
  font-weight: 900;
}

section {
  padding: 78px 0;
}

.section-head {
  display: block;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;

  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.section-head p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.value-card,
.review-card,
.intern-card {
  padding: 26px;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: #dff8f4;
  font-size: 1.14rem;
  font-weight: 900;
}

.service-card h3,
.case-card h3,
.review-card h3,
.intern-card h3,
.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.service-card p,
.case-card p,
.review-card p,
.intern-card p,
.value-card p,
.clean-list {
  color: var(--muted);
  margin: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  color: #344054;
  background: #edf2f7;
  font-size: 0.78rem;
  font-weight: 800;
}

.global-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 13, 127, 0.96), rgba(17, 24, 39, 0.91)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.globalband p {
  color: rgba(0, 0, 0, 0.76);
}

.globalbandBg {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(240, 253, 250, 0.9);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.global-grid,
.intern-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: start;
}

.global-band h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.global-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-points li {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.global-points strong {
  display: block;
  margin-bottom: 7px;
}

.global-points span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.case-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

@media(max-width:768px) {
  .case-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.case-card {
  overflow: hidden;
}

.case-cover {
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 
.case-cover::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.case-cover::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 46px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 -58px 0 rgba(255, 255, 255, 0.5);
}

.case-cover.web {
  background: linear-gradient(135deg, #1d4ed8, #0f766e);
} */

.case-cover.marketing {
  background: linear-gradient(135deg, #b45309, #be123c);
}

.case-cover.student {
  background: linear-gradient(135deg, #4338ca, #0f766e);
}

.case-body {
  padding: 24px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.case-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #dff8f4;
  font-size: 0.75rem;
  font-weight: 900;
}

.about-process {
  background: var(--white);
}

.process {
  background: var(--paper);
  /* border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); */
}

.request-proposal {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.step {
  min-height: 145px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.25);
}

.step strong {
  display: block;
  line-height: 1.25;
  text-align: center;
}

.reviews {
  background: var(--white);
}

.stars {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.review-author span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.internship {
  background:
    linear-gradient(90deg, rgba(246, 248, 251, 0.96), rgba(246, 248, 251, 0.8)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.program {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.program strong {
  display: block;
  margin-bottom: 6px;
}

.program span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-strip {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--dark));
}

.cta-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.cta-strip p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  padding: 140px 0 60px;
  color: var(--white);
  background: var(--dark);
}

.contact-card {
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.contact-line {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* services section */
.services-box {
  background: var(--white);
}

/* ===================================
   FOUNDERS SECTION
=================================== */

.founders-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.founders-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Founder Cards */

.founder-card {
  display: flex;
  align-items: center;

  overflow: hidden;

  background: #fff;

  border-radius: 24px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
}

.founder-image {
  flex: 0 0 250px;
  height: 330px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.founder-card:hover img {
  transform: scale(1.05);
}

.founder-content {
  padding: 30px;
}

.founder-content h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.founder-role {
  display: inline-block;

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 16px;
}

.founder-content p {
  color: var(--muted);
  line-height: 1.8;
}

/* ===================================
   STORY CARD
=================================== */

.company-story-card {
  margin-top: 40px;

  display: grid;
  grid-template-columns: 2fr 1fr;

  gap: 30px;

  padding: 45px;

  border-radius: 28px;

  background: linear-gradient(135deg, #0f766e, #111827);

  color: #fff;
}

.story-badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);

  margin-bottom: 20px;

  font-size: 0.9rem;

  font-weight: 600;
}

.company-story-card h3 {
  color: #fff;

  font-size: 2.2rem;

  margin-bottom: 20px;
}

.company-story-card p {
  color: rgba(255, 255, 255, 0.85);

  line-height: 1.9;

  margin-bottom: 15px;
}

/* Stats */

.story-stats {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 18px;
}

.story-stat {
  padding: 25px;

  text-align: center;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(15px);
}

.story-stat strong {
  display: block;

  font-size: 2.2rem;

  font-weight: 800;

  color: #fff;
}

.story-stat span {
  color: rgba(255, 255, 255, 0.75);
}

/* OurProducts */

.our-products {
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(27 85 196), rgb(21, 21, 21)),
    url(https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80) center / cover;
}

.products-head {
  display: block;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.products-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.products-head p {
  max-width: 410px;
  margin-top: 10px;
  color: var(--white);
}

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

.product-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

/* video section */
.company-video-section {
  padding: 100px 0;

  background: linear-gradient(135deg, #0b1120, #111827);

  position: relative;

  overflow: hidden;
}

.video-section-head {
  text-align: center;

  margin-bottom: 50px;
}

.video-section-head h2 {
  color: white;

  font-size: clamp(2.2rem, 5vw, 4rem);

  margin: 15px 0;
}

.video-section-head p {
  max-width: 700px;

  margin: auto;

  color: rgba(255, 255, 255, 0.7);
}

.video-wrapper {
  position: relative;

  border-radius: 30px;

  overflow: hidden;

  max-width: 1200px;

  margin: auto;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
  width: 100%;

  display: block;

  background: #000;
}

.company-video-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(65, 50, 143, 0.2);

  border-radius: 50%;

  top: -100px;
  left: -100px;

  filter: blur(120px);
}

.company-video-section::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(15, 118, 110, 0.2);

  border-radius: 50%;

  right: -100px;
  bottom: -100px;

  filter: blur(120px);
}