* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-dark: #0A1F44;
  --primary-blue: #1F6AFF;
  --accent-blue: #5BB8FF;
  --soft-bg: #f4f7fc;
  --card-bg: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--soft-bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* ================= NAV ================= */
.navbar {
  background: #020617;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-toggle {
  display: none;
}

.navbar a {
  color: #e5e7eb;
  margin: 0 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */
.hero {
  background: radial-gradient(circle at top right, #1F6AFF, #0A1F44 70%);
  color: white;
  padding: 100px 20px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================= BUTTONS ================= */
.btn-primary {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: white;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(31,106,255,0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(31,106,255,0.6);
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 20px;
  animation: fadeUp 0.8s ease both;
}

section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: inline-block;
}

section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #1F6AFF, #5BB8FF);
  margin-top: 8px;
  border-radius: 10px;
}

/* ================= SERVICES ================= */
.services-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fc 100%
  );
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(31,106,255,0.15),
    transparent 70%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 32px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Accent bar */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--accent-blue)
  );
}

.service-icon {
  margin-bottom: 18px;
  color: var(--primary-blue);
  font-size: 24px;
  line-height: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(31,106,255,0.25);
}

.service-card {
  animation: floatIn 0.8s ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= WHY CHOOSE US ================= */

.why-us {
  background: linear-gradient(
    180deg,
    rgba(31,106,255,0.03),
    rgba(10,31,68,0.02)
  );
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

.why-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-blue);
}

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

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= HOW WE WORK ================= */

.process {
  background: #ffffff;
  text-align: center;
}

.process-intro {
  max-width: 700px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.process-step {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f8fafc
  );
  border-radius: 18px;
  padding: 42px 32px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(31,106,255,0.15);
  display: block;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= HOW WE WORK – SLIDING CARDS ================= */

.process {
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.process-intro {
  max-width: 700px;
  margin: 15px auto 50px;
}

/* Track */
.process-track {
  position: relative;
  overflow: hidden;
}

/* Moving container */
.process-cards {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideLeft 22s linear infinite;
}

/* Pause on hover */
.process-track:hover .process-cards {
  animation-play-state: paused;
}

/* Individual card */
.process-card {
  width: 300px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(31,106,255,0.22);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(31,106,255,0.18);
  display: block;
  margin-bottom: 8px;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Animation */
@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= INDUSTRIES – IMAGE TILES ================= */

.industries-visual {
  background: #ffffff;
  text-align: center;
}

.industries-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.industry-tile {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-tile:hover img {
  transform: scale(1.08);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,31,68,0.85),
    rgba(10,31,68,0.2)
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.industry-overlay h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.industry-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ================= TRUST & TECH STACK ================= */

.trust {
  background: linear-gradient(
    180deg,
    rgba(31,106,255,0.03),
    rgba(10,31,68,0.02)
  );
  text-align: center;
}

.trust-intro {
  max-width: 720px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.trust-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

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

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tech stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tech-stack span {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.tech-stack span:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(31,106,255,0.25);
}

/* ================= CASE STUDY ================= */

.case-study {
  background: #ffffff;
  text-align: center;
}

.case-intro {
  max-width: 720px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.case-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f8fafc
  );
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  text-align: left;
}

.case-content h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--primary-dark);
}

.case-block {
  margin-bottom: 22px;
}

.case-block h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.case-block p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.case-tags span {
  background: rgba(31,106,255,0.08);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* ================= RECOMMENDATIONS ================= */

.recommendations {
  background: linear-gradient(
    180deg,
    rgba(10,31,68,0.02),
    rgba(31,106,255,0.04)
  );
  text-align: center;
}

.recommendations-intro {
  max-width: 720px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.recommendation-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.recommendation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

.recommendation-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.recommendation-card h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.recommendation-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ================= RETAINER TABLE ================= */

.retainer-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.retainer-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.retainer-table th,
.retainer-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.retainer-table th {
  background: var(--primary-dark);
  color: white;
  font-weight: 600;
}

.retainer-table tr:last-child td {
  border-bottom: none;
}

/* ================= PRICING FAQ ================= */

.pricing-faq {
  background: linear-gradient(
    180deg,
    rgba(31,106,255,0.03),
    rgba(10,31,68,0.02)
  );
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  text-align: left;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= TEAM ================= */

.team {
  background: #ffffff;
  text-align: center;
}

.team-intro {
  max-width: 720px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: left;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

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

.team-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= TOOLS ================= */

.tools {
  background: linear-gradient(
    180deg,
    rgba(31,106,255,0.03),
    rgba(10,31,68,0.02)
  );
  text-align: center;
}

.tools-intro {
  max-width: 720px;
  margin: 15px auto 50px;
  font-size: 1.05rem;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tool-card {
  background: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(31,106,255,0.25);
}

.team-card,
.tool-card {
  position: relative;
  overflow: hidden;
}

.team-card::before,
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31,106,255,0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover::before,
.tool-card:hover::before {
  opacity: 1;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #020617, #0A1F44);
  color: white;
  text-align: center;
}

/* ================= FOOTER ================= */
footer {
  background: #020617;
  color: #cbd5f5;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul {
  max-width: 800px;
  margin: 20px auto 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.about-section {
  background: #ffffff;
  border-radius: 22px;
  margin: 60px auto;
  padding: 60px 0;
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
}

.about-section:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    rgba(31,106,255,0.03),
    rgba(10,31,68,0.02)
  );
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(31,106,255,0.22);
}

.value-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.about-section p {
  max-width: 820px;
  font-size: 1.02rem;
}

/* ================= SERVICE ICONS ================= */

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(31,106,255,0.12),
    rgba(31,106,255,0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}


.service-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary-blue);
  transition: fill 0.3s ease;
  opacity: 0.9;
}

/* Hover effect */
.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-blue)
  );
}

.service-card:hover .service-icon svg {
  fill: #ffffff;
}

/* ================= CONTACT MODAL ================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #ffffff;
  border-radius: 22px;
  max-width: 520px;
  width: 90%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.modal h2 {
  margin-bottom: 10px;
}

.modal p {
  margin-bottom: 24px;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
  font-family: inherit;
}

.modal textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Honeypot field - hidden from humans */
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

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

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links a {
  margin-left: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* NAV */
  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 10px 0 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 1rem;
  }

  /* ================= ACTIVE NAV LINK ================= */
.nav-links a.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

  /* HERO */
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  /* SECTIONS */
  section {
    padding: 60px 16px;
  }

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

  /* PROCESS CARDS */
  .process-card {
    width: 260px;
  }

  /* MODAL */
  .modal {
    padding: 30px 24px;
  }
}

.modal select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
  font-family: inherit;
  background: #ffffff;
}

.contact-form.hidden {
  display: none;
}

/* ================= CEO SECTION ================= */

.ceo-section {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f4f7fc
  );
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.ceo-image {
  position: relative;
}

.ceo-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Content */
.ceo-content h2 {
  margin-bottom: 16px;
}

.ceo-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.ceo-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
}

.ceo-meta {
  margin-top: 24px;
  font-size: 0.95rem;
}

.ceo-meta span {
  color: var(--text-muted);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ceo-image img {
    margin: 0 auto;
  }

  .ceo-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================= CEO SOCIAL ICONS ================= */

.ceo-socials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.ceo-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(31,106,255,0.12),
    rgba(31,106,255,0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ceo-socials a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--accent-blue)
  );
  transform: translateY(-2px);
}

/* SVG icon sizing — THIS is the key */
.ceo-socials svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
  display: block;
  transform: scale(1.05);
}

/* Hover contrast */
.ceo-socials a:hover svg {
  fill: #ffffff;
}

/* Centered under image */
.ceo-socials.centered {
  justify-content: center;
}


/* ================= CEO VIDEO ================= */

.ceo-video {
  margin-top: 30px;
}

.ceo-video video {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ================= CEO SOCIALS CENTERED ================= */

.ceo-socials.centered {
  justify-content: center;
}

.ceo-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ceo-image img {
  margin-bottom: 14px;
}
