
  /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
:root{
    --overlay: rgba(41,15,202,0.58); /* #290FCA94 */
    --white: #fff;
    --right-width: 520px; /* width of the right service column area */
  }
  *{box-sizing:border-box;margin:0;padding:0}
  body{font-family:Inter, "Segoe UI", Roboto, Arial, sans-serif;background:#fff;color:#111}

  /* ---------- Header + nav ---------- */
  .topbar{display:flex;align-items:center;padding:14px 28px;background:#fff;gap:16px}
.logo{
    width:72px;height:72px;border-radius:50%;overflow:hidden;flex:0 0 72px;
    display:grid;place-items:center;background:#fff;
  }
  .brand{
    line-height:1;
  }
  .brand h1{margin:0;font-size:26px;letter-spacing:1px}
  .brand p{margin:0;font-size:12px;color:#333}
  .search-wrap{margin-left:auto;max-width:520px;width:50%}
  .search{
    width:100%;height:44px;border-radius:24px;border:2px solid #222;padding:6px 14px;display:flex;align-items:center;
    background:#fff;
  }
  .search input{flex:1;border:0;outline:none;font-size:14px}
  .search button{background:transparent;border:0;font-size:18px;cursor:pointer}


  .divider{height:6px;background:#290FCA} /* long blue line */
  nav {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  padding: 4px 0;
  transition: color 0.3s ease;
}

/* text color change on hover */
nav a:hover {
  color: #0056d2; /* nice blue shade */
}

/* underline effect */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #0056d2; /* same blue as text hover */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

/* animate underline on hover */
nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

    /* Heading */
    .heading {
      text-align: center;
      margin: 30px 0;
    }

    .heading h1 {
      color: #1d0ab1;
      font-size: 2rem;
      margin: 10px 0;
    }

    .heading hr {
      width: 400px;
      margin: 8px auto;
      border: 2px solid #1d0ab1;
    }
/* Banner Image */
.banner {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.banner img {
  width: 80%;        /* reduced width */
  height: 450px;     /* increased height */
  object-fit: cover;
  border-radius: 15px;
}


    /* Logistics Info */
    .info {
      max-width: 900px;
      margin: 30px auto;
      padding: 0 20px;
    }

    .info h2 {
      font-size: 1.6rem;
    }

    .info h2 span {
      color: #00a6e3;
      font-weight: bold;
    }
/* Base Info Section - keep your existing styles */
.info {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;

  /* animation prep */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.info.show {
  opacity: 1;
  transform: translateY(0);
}

   .performance {
  background: linear-gradient(135deg, #00bcd4, #005f99);
  color: white;
  text-align: left;   /* align text left */
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

    .performance::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .performance::after {
      content: "";
      position: absolute;
      bottom: -70px;
      left: -70px;
      width: 250px;
      height: 250px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

.performance h3,
.performance h2,
.performance p {
  max-width: 700px;
  margin: 0 auto 20px auto;  /* keep everything aligned together */
}

    .stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .stat-box {
      text-align: center;
      position: relative;
    }

    /* White line above each number */
    .stat-box::before {
      content: "";
      display: block;
      width: 70px;
      height: 3px;
      background: white;
      margin: 0 auto 10px;
      border-radius: 2px;
    }

    .stat {
      font-size: 2rem;
      font-weight: bold;
    }

    .stat small {
      display: block;
      font-size: 0.9rem;
      margin-top: 5px;
    }
    /* Start hidden */
.performance h3,
.performance h2,
.performance p,
.performance .stat-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.performance.show h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.performance.show h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.performance.show p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.performance.show .stat-box {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.17, 0.55, 0.55, 1.0),
              transform 0.8s cubic-bezier(0.17, 0.55, 0.55, 1.0);
}

.performance .stat-box {
  transform: translateY(30px) scale(0.9);
}

.performance.show .stat-box:nth-child(1) { transition-delay: 0.6s; }
.performance.show .stat-box:nth-child(2) { transition-delay: 0.8s; }
.performance.show .stat-box:nth-child(3) { transition-delay: 1s; }

    /* ===== OUR VISION ===== */
.vision{
  max-width:1100px;
  margin:60px auto 30px;
  padding:0 20px;
}
.vision-title{
  font-size:1.9rem;
  font-weight:800;
  color:#111;
  margin-bottom:10px;
  text-align:left;
}

.vision-title::after {
  content: "";
  display: block;
  width: 50px;        /* length of the line */
  height: 2px;        /* thickness of the line */
  background-color: #000; /* black line */
  margin-top: 6px;    /* space between text and line */
}
.vision-lead{
  font-size:1.6rem;
  line-height:1.25;
  font-weight:700;
  color:#111;
  margin:6px 0 14px;
  text-align:left;
}
.vision-lead span{
  color:#00a6e3; /* bright blue like screenshot */
}
.vision-intro{
  max-width:780px;
  color:#333;
  text-align:left;
  margin-bottom:26px;
}

/* ===== SCROLLER (6 cards, infinite) ===== */
.slider{
  overflow:hidden;
  width:100%;
  position:relative;
  padding:6px 0 18px;
}
.slider{ --card-w:320px; --gap:24px; }
.slide-track{
  display:flex;
  gap:var(--gap);
  width:calc((var(--card-w) + var(--gap)) * 12); /* 6 cards duplicated */
  animation:vision-marquee 28s linear infinite;
}
@keyframes vision-marquee{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); } /* exits left, re-enters from right */
}
.card{
  width:var(--card-w);
  min-height:220px;
  background:#fff;
  border:2px solid #00a6e3;
  border-radius:16px;
  padding:22px;
  flex-shrink:0;
  text-align:left;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f7fb;
  font-size: 1.4rem;
  margin: 0 auto 10px; /* centers the icon horizontally */
}

.card h4{
  font-size:1.15rem;
  margin-bottom:8px;
  font-weight:800;
  color:#111;
  text-align: center;
}
.card p{
    text-align: center;
  font-size:.95rem;
  color:#444;
  line-height:1.45;
}
/* Vision title underline glow */
.vision-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00a6e3, #1654d2);
  margin-top: 6px;
  border-radius: 2px;
  animation: glowline 3s ease-in-out infinite alternate;
}

@keyframes glowline {
  from { filter: drop-shadow(0 0 3px #00a6e3); }
  to { filter: drop-shadow(0 0 10px #1654d2); }
}

/* Pause marquee on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Floating card icons */
.card-icon {
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 3D tilt on hover */
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}
.card:hover {
  transform: rotateY(8deg) rotateX(4deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Fade-in stagger effect when section appears */
.card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.vision.show .card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.vision.show .card:nth-child(1) { transition-delay: 0.1s; }
.vision.show .card:nth-child(2) { transition-delay: 0.2s; }
.vision.show .card:nth-child(3) { transition-delay: 0.3s; }
.vision.show .card:nth-child(4) { transition-delay: 0.4s; }
.vision.show .card:nth-child(5) { transition-delay: 0.5s; }
.vision.show .card:nth-child(6) { transition-delay: 0.6s; }

/* Mobile tweaks */
@media (max-width: 700px){
  .slider{ --card-w:260px; --gap:16px; }
  .vision-lead{ font-size:1.3rem; }
}

/* ===== GOALS STRIP (same gradient as Performance) ===== */
.goals{
  background: linear-gradient(135deg,#00bcd4,#005f99);
  color:#fff;
  position:relative;
  overflow:hidden;
  padding:60px 20px;
  margin:28px 0 0;
}
.goals::before, .goals::after{
  content:"";
  position:absolute;border-radius:50%;
  background:rgba(255,255,255,0.12);
  filter: blur(.2px);
}
.goals::before{ width:320px;height:320px; top:-80px; right:-80px; }
.goals::after{ width:260px;height:260px; bottom:-70px; left:-70px; }

/* subtle corner “dots” like screenshot */
.goals-bubbles::before,
.goals-bubbles::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 40px 40px, rgba(255,255,255,.15) 0 18px, transparent 19px),
    radial-gradient(circle at 90px 40px, rgba(255,255,255,.12) 0 18px, transparent 19px),
    radial-gradient(circle at 140px 40px, rgba(255,255,255,.10) 0 18px, transparent 19px),
    radial-gradient(circle at calc(100% - 40px) calc(100% - 40px), rgba(255,255,255,.15) 0 18px, transparent 19px),
    radial-gradient(circle at calc(100% - 90px) calc(100% - 40px), rgba(255,255,255,.12) 0 18px, transparent 19px),
    radial-gradient(circle at calc(100% - 140px) calc(100% - 40px), rgba(255,255,255,.10) 0 18px, transparent 19px);
  pointer-events:none;
}
.goals-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.goals h3{
  font-size:1.6rem;
  font-weight:800;
  margin-bottom:14px;
}
.goals p{
  font-size:1rem;
  line-height:1.55;
  max-width:900px;
  margin:0 auto;
}/* History Section */
/* History Section */
.history {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f9fbfc, #eef6fa);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.history-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.history.show .history-container {
  opacity: 1;
  transform: translateY(0);
}

.history-text {
  flex: 1;
  position: relative;
  padding-left: 20px;
}

.history-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #009fe3, #005b8e);
  border-radius: 4px;
}

.history-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #005b8e;
}

.history-text h2 {
  font-size: 2.3rem;
  color: #008cce;
  margin: 10px 0;
  font-weight: 800;
}

.history-text p {
  font-size: 1.05rem;
  margin: 15px 0 25px;
  line-height: 1.7;
  color: #333;
}

/* Team Button */
.btn-team {
  display: inline-block;
  background: linear-gradient(135deg, #009fe3, #005b8e);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-team:hover {
  background: linear-gradient(135deg, #008cce, #004b75);
  transform: translateY(-2px);
}

/* History Image */
.history-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.history.show .history-image {
  transform: translateX(0);
  opacity: 1;
}

.history-image img {
  max-width: 480px;
  border-radius: 25px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.history-image img:hover {
  transform: scale(1.05) rotateZ(1.5deg);
}

/* =========================
   MEDIA QUERIES FOR BUTTON
   ========================= */

/* Small devices: 321px - 540px */
@media (min-width: 321px) and (max-width: 540px) {
  .btn-team {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 14px 0;
  }
}

/* iPad: 550px - 1025px */
@media (min-width: 550px) and (max-width: 1025px) {
  .btn-team {
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 40px;
  }
}

/* 📱 Responsive styling for phone screens */
@media (min-width: 321px) and (max-width: 540px) {

  /* Goals section */
  .goals {
    padding: 40px 15px;
  }

  .goals h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .goals p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 5px;
  }

  /* History section */
  .history {
    padding: 60px 6%;
  }

  .history-container {
    flex-direction: column;       /* Stack text & image vertically */
    gap: 30px;
    text-align: center;
  }

  .history-text {
    padding-left: 0;
  }

  .history-text::before {
    display: none; /* Remove vertical bar on small screens */
  }

  .history-text h3 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .history-text h2 {
    font-size: 1.7rem;
    margin: 8px 0;
  }

  .history-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .history-image {
    transform: none;
    opacity: 1;
  }

  .history-image img {
    max-width: 90%;
    border-radius: 18px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(to right, #009fe3, #003b6f);
  color: white;
  padding: 50px 10% 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 70px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links p, .footer-company ul li, .footer-help p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-company ul {
  list-style: none;
  padding: 0;
}

.footer-company ul li a {
  color: white;
  text-decoration: none;
}

.newsletter {
  display: flex;
  margin: 15px 0;
}

.newsletter input {
  padding: 10px;
  border-radius: 20px 0 0 20px;
  border: none;
  outline: none;
  flex: 1;
}

.newsletter button {
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  border: none;
  background: #5e2ff5;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.faq-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
}


    :root{
      --accent:#00A8DC;
      --heading:#0b5260;
      --max-width:760px;
    }

    html,body{
      height:100%;
      margin:0;
      background: transparent;
      font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }

    /* Section wrapper */
   /* allow the lines to be visible outside the section */
.agro-section{
  max-width: var(--max-width);
  margin:36px auto;
  background: transparent;
  padding:26px 30px 30px;
  text-align:center;
  position:relative;
  overflow: visible; /* <-- important: allow spill */
}

/* very long, centered accent lines */
.accent-line-top,
.accent-line-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 97vw;     /* extremely long; change to 300vw / 5000px etc. as needed */
  max-width: none;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  pointer-events: none;
}

/* place them visually above / below the content */
.accent-line-top  { top: -18px; }
.accent-line-bottom { bottom: -18px; }

    /* header + lead */
    h2{
      margin:0 auto 8px;
      font-size:28px;
      line-height:1.05;
      color:var(--heading);
      letter-spacing:1px;
      text-transform:uppercase;
      font-weight:800;
    }

    .lead{
      margin:0 auto 26px;
      max-width:640px;
      font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
      font-style:italic;
      color:#111219;
      font-size:15px;
      line-height:1.45;
      padding:0 10px;
    }

    /* image area */
    .image-wrap{
      display:flex;
      justify-content:center;
      margin: 8px auto 24px;
      width:100%;
    }

    .image-wrap .frame{
      width:100%;
      max-width:660px;
      border-radius:40px;
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(6,25,38,0.35);
      transform:translateY(0);
      transition: transform .25s ease;
    }

    .image-wrap img{
      display:block;
      width:100%;
      height:auto;
      object-fit:cover;
      vertical-align:middle;
    }

    .image-wrap .frame:hover{ transform:translateY(-6px); }

    /* CTA */
    .cta-wrap{ margin-top:10px; }

    .cta{
      display:inline-block;
      padding:14px 36px;
      border-radius:40px;
      background: linear-gradient(180deg,#18b2cf 0%, #006a86 100%);
      color:#ffffff;
      text-decoration:none;
      font-weight:700;
      box-shadow: 0 14px 30px rgba(0,0,0,0.38);
      transform:translateY(0);
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .cta:active{ transform:translateY(1px); }
    .cta:hover{ transform:translateY(-4px); box-shadow: 0 22px 36px rgba(0,0,0,0.45); }

    /* subtle responsive tweaks */
    @media (max-width:720px){
      .agro-section{ margin:18px; padding:20px; }
      h2{ font-size:22px; }
      .lead{ font-size:14px; }
      .image-wrap .frame{ border-radius:28px; }
      .cta{ padding:12px 28px; }
    }


    :root{
      --accent: #00A8DC;
      --card-bg: #ffffff;
      --max-width: 820px;
      --text-dark: #111217;
    }

    

    .page-wrap{
      max-width:var(--max-width);
      margin:0 auto;
      text-align:center;
      margin-bottom: 100px;
  padding-bottom: 0;
    }

    /* Section header */
    .page-title{
      font-size:28px;
      letter-spacing:1px;
      font-weight:800;
      margin:6px 0 18px;
    }

   
    /* Card */
    .ceo-card{
      background:var(--card-bg);
      border-radius:28px;
      padding:30px;
      box-shadow: 0 22px 40px rgba(9,34,48,0.12);
      border: 3px solid rgba(0,168,220,0.14);
      position:relative;
      overflow:visible;
    }

    /* Decorative rounded stroke (bright accent) that sits outside the card */
    .ceo-card::before{
      content:"";
      position:absolute;
      inset: -12px -12px auto auto;
      right:12px;
      top:12px;
      width:calc(100% - 24px);
      height:calc(100% - 24px);
      border-radius:28px;
      pointer-events:none;
      box-shadow: 0 0 0 4px rgba(0,168,220,0.06);
      filter: blur(0.1px);
    }

    /* inner layout */
    .content-inner{
      max-width:680px;
      margin:0 auto;
    }

    /* image frame */
    .photo-wrap{
      display:flex;
      justify-content:center;
      margin:6px 0 18px;
    }

    .photo-frame{
      width:400px;
      max-width:88%;
      border-radius:26px;
      overflow:hidden;
      padding:12px;
      background: linear-gradient(180deg, rgba(0,168,220,0.10), rgba(0,168,220,0.02));
      border: 2px solid var(--accent);
      box-shadow: 0 18px 28px rgba(0,0,0,0.12);
      transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s;
    }

    .photo-frame:hover{ transform: translateY(-6px) scale(1.01); box-shadow: 0 28px 48px rgba(6,25,38,0.18); }

    .photo-frame img{ width:100%; height:auto; display:block; border-radius:14px; object-fit:cover; }

    /* name / title */
    .name{
      font-size:20px;
      margin:10px 0 6px;
      font-weight:800;
      color:#0c2730;
    }
    .subtitle{
      margin:0 0 18px;
      font-size:14px;
      font-weight:700;
      color:#222;
      opacity:0.9;
    }

    /* biography text */
    .bio{
      text-align:left;
      font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
      font-style:normal;
      font-size:14px;
      line-height:1.5;
      color:#111216;
      padding:0 8px 8px;
    }

    .bio p{ margin:0 0 12px; }

    .quote{
      margin-top:12px;
      border-left:4px solid var(--accent);
      padding:12px 14px;
      background: linear-gradient(90deg, rgba(0,168,220,0.03), rgba(0,168,220,0.015));
      font-style:italic;
      font-size:13px;
      color:#0d2b33;
      border-radius:8px;
    }
/* ========== AGRO SECTION ANIMATIONS ========== */
.agro-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.agro-section.show {
  opacity: 1;
  transform: translateY(0);
}


.image-wrap .frame {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.agro-section.show .image-wrap .frame {
  opacity: 1;
  transform: scale(1);
}

.cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.agro-section.show .cta {
  opacity: 1;
  transform: translateY(0);
  animation: glow-pulse 1.5s ease-in-out 0.6s forwards;
}

@keyframes glow-pulse {
  0% { box-shadow: 0 14px 30px rgba(0,0,0,0.38); }
  50% { box-shadow: 0 18px 36px rgba(0,168,220,0.65); }
  100% { box-shadow: 0 14px 30px rgba(0,0,0,0.38); }
}

/* ========== CEO CARD ANIMATIONS ========== */
.ceo-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.ceo-card.show {
  opacity: 1;
  transform: translateY(0);
}

.photo-frame {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 1s ease 0.2s, opacity 1s ease 0.2s;
}

.ceo-card.show .photo-frame {
  opacity: 1;
  transform: scale(1);
}

.quote {
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.ceo-card.show .quote {
  opacity: 1;
  transform: translateX(0);
}

.ceo-card.show .quote::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  animation: grow-border 0.6s ease forwards;
}

@keyframes grow-border {
  from { height: 0; top: 50%; bottom: 50%; }
  to { height: 100%; top: 0; bottom: 0; }
}

    /* responsive tweaks */
    @media (max-width:640px){
      .page-title{ font-size:20px; }
      .photo-frame{ width:92%; padding:10px; border-radius:18px; }
      .photo-frame img{ border-radius:12px; }
      .ceo-card{ padding:20px; border-radius:20px; }
    }
  