/* elp-new.css – navigation + all section styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: #5bc1ac;
    color: #1e293b;
    line-height: 1.5;
}

/* --- navigation header --- */
/* Center the navigation icons */
.header-container {
  justify-content: center !important;
}

/* Optional: Add a little breathing room */
.social-nav {
  margin: 0;
  padding: 0;
}
.elp-header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.8rem 2rem;
    border-bottom: 1px solid #eef2f6;
    
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-link {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    background: #f1f5f9;
    transition: background 0.2s;
}

.home-link:hover {
    background: #e2e8f0;
}

.social-nav {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.social-nav a {
    color: #475569;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #000000;
    background-color: #ffffff;
    padding: 5px;
}

.social-nav a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}
/* ---------- PAGE MASTHEAD ---------- */
.elp-masthead {
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 1rem 1rem 0;
}

.masthead-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.masthead-subtitle {
  font-size: 1.3rem;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Adjust for smaller screens */
@media (max-width: 600px) {
  .masthead-title {
    font-size: 2rem;
  }
  .masthead-subtitle {
    font-size: 1.1rem;
  }
}
/* main container */
.elp-container {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* sections */
.section {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #5bc1ac;
    border-left: 6px solid #2563eb;
    padding-left: 1.2rem;
}

.section-subtitle {
    text-align: center;
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ---------- EXECUTIVE PROFILE ---------- */
.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.profile-left {
    text-align: center;
}

.photo-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    border: 8px solid #5bc1ac;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.2);
}

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

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.profile-title {
    font-size: 1rem;
    font-weight: 500;
    color: #2563eb;
    background: #eef2ff;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.profile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #475569;
}

.profile-contact i {
    width: 1.4rem;
    color: #2563eb;
}

.profile-summary {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-top: 1.8rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.8rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #64748b;
}

/* ---------- STRATEGIC PILLARS ---------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.2s;
    border: 1px solid #e9eef3;
}

.pillar-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 15px 25px -10px rgba(0,0,0,0.1);
}

.pillar-icon {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 1.2rem;
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.pillar-card p {
    color: #475569;
}

/* ---------- LOGO TICKER (auto‑scroll) ---------- */
.logo-ticker {
  width: 100%;
  overflow: hidden;
  background: #f8fafc;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-radius: 3rem;
  border: 1px solid #e2e8f0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-item img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.2s;
}

.ticker-item img:hover {
  filter: grayscale(0);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

/* Responsive adjustments */
@media (max-width: 600px) {
  .ticker-track {
    gap: 1.5rem;
    animation-duration: 20s;
  }
  .ticker-item img {
    height: 40px;
  }
}

/* ---------- TIMELINE 3‑COLUMN CARDS ---------- */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid #e9eef3;
  border-radius: 1.5rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -8px rgba(37,99,235,0.15);
  border-color: #2563eb;
}

.card-year {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  margin-bottom: 1rem;
  align-self: flex-start;  /* keeps it left-aligned */
}

.timeline-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.card-company {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2563eb;
  background: #eef2ff;
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.timeline-card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 900px) {
  .timeline-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .timeline-cards {
    grid-template-columns: 1fr;
  }
}
/* ---------- IMPACT HIGHLIGHTS ---------- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.impact-card {
    background: linear-gradient(145deg, #f1f5f9, #ffffff);
    border-radius: 1.5rem;
    padding: 1.8rem 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.impact-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.8rem;
}

.impact-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.impact-card p {
    color: #475569;
    font-size: 0.9rem;
    max-width: 140px;
    margin: 0 auto;
}

/* ---------- CASE STUDIES ---------- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e9eef3;
    transition: transform 0.2s;
}

.case-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -10px rgba(0,0,0,0.1);
}

.case-img {
    width: 90%;
    padding: 15px;

}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-content p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.case-bullets {
    list-style: none;
    font-size: 0.9rem;
}

.case-bullets li {
    padding: 0.3rem 0;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.case-bullets li::before {
    content: "🚀";
    font-size: 0.9rem;
}

/* ---------- THOUGHT LEADERSHIP ---------- */
.thought-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.thought-item {
    text-decoration: none;
    color: inherit;
    background: #f8fafc;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.thought-item:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -8px #2563eb30;
}

.thought-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.article-title {
    display: block;
    padding: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #0f172a;
    background: #ffffff;
}

.thought-cta, .cases-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e293b;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.btn:hover {
    background: #2563eb;
}
/* ---------- TESTIMONIALS SECTION (prominent cards, 2 cols desktop) ---------- */
section.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* two equal columns on desktop */
  gap: 2rem;
}

section.testimonials .testimonial-card {
  background: #ffffff;              /* clean white background */
  border: 2px solid #e2e8f0;        /* subtle border */
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;              /* center image and text */
}

section.testimonials .testimonial-card:hover {
  border-color: #2563eb;            /* blue border on hover for emphasis */
  box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

section.testimonials .testimonial-img {
  width: 80%;

  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 1px solid #5bc1ac;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.15);
  background: #f1f5f9;              /* fallback if image missing */
}

section.testimonials .testimonial-text {
  text-align: left;                 /* keep paragraphs left-aligned */
  width: 100%;
}

section.testimonials .testimonial-text p {
  color: #1e293b;                   /* dark gray for high contrast */
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

section.testimonials .testimonial-text p:last-child {
  margin-bottom: 0;
}

/* ---------- MOBILE STACK (≤800px) ---------- */
@media (max-width: 800px) {
  section.testimonials .testimonials-grid {
    grid-template-columns: 1fr;      /* single column */
    gap: 1.5rem;
  }

  section.testimonials .testimonial-card {
    padding: 1.8rem 1.2rem;
  }

  section.testimonials .testimonial-img {
    width: 80%;
  }
}
/* ---------- PERSONAL PHILOSOPHY ---------- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.philosophy-grid blockquote {
    background: #f1f5f9;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    position: relative;
    color: #1e293b;
    font-size: 1rem;
    font-style: italic;
    border: 1px solid #e2e8f0;
    margin: 0;
}

.philosophy-grid blockquote i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

/* ---------- FOOTER ---------- */
.elp-footer {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    padding: 2rem 0 1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
    .elp-header {
        padding: 0.8rem 1rem;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .profile-left {
        max-width: 350px;
        margin: 0 auto;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .timeline-marker {
        text-align: left;
    }
    .section-title {
        font-size: 1.8rem;
        text-transform: uppercase;
        font-weight: bold;
    }
    .social-nav {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .elp-container {
        padding: 0 1rem;
    }
    .section {
        padding: 1.5rem 1rem;
    }
    .metric-row {
        gap: 1rem;
    }
    .metric-number {
        font-size: 1.5rem;
    }
    .header-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
