

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

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

ul { list-style: none; }

/* ---- CSS Variables ---- */
:root {
  --red:        #e1251b;
  --red-dark:   #a0311f;
  --navy:       #1A2A4A;
  --navy-light: #0b3e91;
  --off-white:  #F5F5F3;
  --light-gray: #EBEBEB;
  --mid-gray:   #a7a9ac;
  --dark:       #111;
  --container:  1200px;
  --radius:     2px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section Label ---- */
.section-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #0B3E91;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #0b3e91;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #0b3e91;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.3rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 2rem;
}

/* Logo */
.logo-image {
  height: 50px;
  width: auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links > li > a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  color: var(--red);
}

.nav-cta {
  margin-left: 0.5rem;
  flex-shrink: 0;
}

/* Arrow */
.arrow {
  font-size: 0.55rem;
  transition: transform 0.2s ease;
}

/* ---- Dropdown ---- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--light-gray);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  min-width: 240px;
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-item:last-child { border-bottom: none; }

.dropdown-item:hover {
  background: var(--off-white);
  color: var(--red);
}

/* ---- Hamburger ---- */
.hamburger {
  display:none;
  color: #a7a9ac;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 5px;
  gap: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #A7A9AC;
  padding: 1rem 2rem 1.5rem;
  gap: 0.75rem;
}

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu a.mobile-sub {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--mid-gray);
  padding-left: 1rem;
}

.mobile-menu .btn {
  margin-top: 0.5rem;
  text-align: center;
}

.mobile-menu.open { display: flex; }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('WhatsApp\ Image\ 2026-03-11\ at\ 9.48.11\ AM.jpeg') center/cover no-repeat;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.hero-tags span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #444;
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.btn-hero {
  font-size: 0.9rem;
  padding: 1rem 2.2rem;
}

/* ===================================================
   LOGOS / CAROUSEL
=================================================== */
.logos-section {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.logos-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3.5rem;
  gap: 0;
}

.logos-viewport {
  overflow: hidden;
  flex: 1;
}

.logos-track {
  display: flex;
  gap: 0;
  cursor: default;
  user-select: none;
  will-change: transform;
}

.logos-track.dragging { cursor: grabbing; transition: none; }

.logo-card--label {
  background: #0B3E91;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  flex: 0 0 auto;
  min-width: 140px;
}

.logo-card--label-blue {
  background: #0B3E91;
}

.logo-card--label span {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-card {
  flex: 0 0 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--light-gray);
  padding: 0 1.5rem;
  transition: background 0.2s ease;
}

.logo-card:hover { background: var(--off-white); }

.logo-brand {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
}

.logo-brand small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.oracle-logo {
  max-height: 70px; 
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Scroll arrows */
.scroll-arrow {
  background: none;
  border: 1px solid var(--light-gray);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.scroll-arrow:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: scale(1.08);
}

.logos-track {
  display: flex;
  will-change: transform;
  transition: transform 0.4s ease;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials-section {
  background: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.testimonial-card {
  border-top: 2px solid var(--light-gray);
  padding-top: 1.5rem;
}

.testimonial-card p {
font-family: 'Playfair Display', serif;
  font-size: 0.90rem;
  color:black;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* ===================================================
   STATS BAR
=================================================== */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 3rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-right: 1px solid var(--light-gray);
  padding: 0 1rem;
}

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

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mid-gray);
  text-transform: uppercase;
  max-width: 130px;
  text-align: center;
}

/* ===================================================
   TRANSFORMATION 
=================================================== */
.transformation-section {
  background: var(--off-white);
  padding: 6rem 2rem;
}

.transformation-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.transformation-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color:  #A7A9AC;
}

.transformation-header h2 em {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  color: #0B3E91;
}

.transformation-intro {
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1.4;
}


.service-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: -2rem -2rem 0 -2rem;
  width: calc(100% + 4rem);
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card p {
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  font-size: 0.85rem;
}

/* ===================================================
   WHY TEKAFRIQ
=================================================== */
.why-section {
  padding: 6rem 2rem;
  background: #fff;
}

.why-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #A7A9AC;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-body {
  margin-bottom: 0;
}

.why-body p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  text-align: justify;
}

.why-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit:contain;
  object-position: left;
  display: block;
}

/* ===================================================
   DELIVERY MODEL
=================================================== */
.delivery-section {
  padding: 6rem 2rem;
  background: #fff;
}

.delivery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #A7A9AC;
  margin-bottom: 3rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  border: 1px solid var(--light-gray);
}

.delivery-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--light-gray);
}

.delivery-step:last-child { border-right: none; }

.step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #A7A9AC;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.delivery-step h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.delivery-step p {
  font-family: Arial, Helvetica, sans-serif;
  text-align: justify;
  font-size: 0.72rem;
  color: #555;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-transform: none;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 2rem 0.5rem;
  color: #0B3E91;
  font-size: 0.9rem;
  align-self: center;
}
/* ===================================================
   SOCIAL PROOF
=================================================== */
.social-proof-section {
  padding: 6rem 2rem;
  background: var(--off-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--light-gray);
  background: #fff;
}

.proof-card {
  padding: 2.5rem;
  border-right: 1px solid var(--light-gray);
}

.proof-card:last-child { border-right: none; }

.proof-card p {
  font-family:'Playfair Display', serif ;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.proof-author {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.proof-author strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* ===================================================
   INDUSTRIES
=================================================== */
.industries-section {
  padding: 6rem 2rem;
  background: #fff;
}

.industries-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #A7A9AC;
  margin-bottom: 2.5rem;
  line-height: 1.25;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.industry-tag {
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid var(--dark);
  padding: 0.65rem 1.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
}

.industry-tag:hover {
  background: var(--dark);
  color: #fff;
}

.industries-note {
  font-family: 'Playfair Display', serif;
  font-size: 0.90rem;
  color:#0B3E91;
}

/* ===================================================
   ETHICS & GOVERNANCE
=================================================== */
.ethics-section {
  padding: 6rem 2rem;
  background: var(--off-white);
}

.ethics-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.ethics-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #A7A9AC;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.ethics-left h2 em {
  font-family: 'Times New Roman', Times, serif;
  color: #0B3E91;
  font-style: italic;
}

.ethics-divider {
  width: 1px;
  align-self: stretch;
  background: var(--light-gray);
}

.ethics-right p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.90rem;
  color: #444;
  letter-spacing: 0.03em;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
  text-transform: none;
}

/* ===================================================
   CONTACT
=================================================== */
.contact-section {
  padding: 6rem 2rem;
  background: #fff;
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 0;
}

.contact-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: black;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.contact-warning-text {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: black;
  line-height: 1.85;
}

.contact-divider {
  width: 1px;
  align-self: stretch;
  background: var(--light-gray);
}

.contact-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #A7A9AC;
  margin-bottom: 2.5rem;
  line-height: 1.25;
}


.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #A7A9AC;
  margin-bottom: 2.5rem;
  line-height: 1.25;
}


.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.contact-card {
  border: 1px solid var(--light-gray);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: var(--radius);
}

.contact-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

.contact-card a {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card a:hover { color: var(--red); }

.contact-card span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.90rem;
  color: #333;
  font-weight: 400;
}


/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .delivery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .step-arrow { display: none; }
  .delivery-step { border-right: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .advisory-grid,
  .testimonials-grid,
  .transformation-header,
  .case-study-grid,
  .proof-grid,
  .ethics-grid,
  .contact-cards { grid-template-columns: 1fr; }

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

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--light-gray); padding-bottom: 1.5rem; }

  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-step { border-right: none; }

  .ethics-divider { display: none; }

  .proof-card { border-right: none; border-bottom: 1px solid var(--light-gray); }

  .logos-track-wrapper { padding: 0 2.5rem; }
  .logo-card { flex: 0 0 160px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
