/* ======================================================
   COLORS from LOGO 
====================================================== */

:root {
    --medical-navy: #0F2A44;
    --clinical-blue: #2F5E9B;
    --sterile-sky: #76B3DA;

    --cool-slate: #747A85;
    --charcoal-ink: #1F2933;
    --warm-steel: #8C9098;
    --muted-indigo: #4B5A6E;

    --surgical-green: #3E7C6A;
    --soft-mint: #B9DCC9;

    --clinical-purple: #5A4A8B;
}


/* ======================================================
   FONT VARIABLES (TOP OF FILE)
====================================================== */

:root {
    --font-serif: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    --font-sans: "Roboto", Arial, sans-serif;

    --blue-dark: #061c33;
    --blue-primary: #0b2a4a;
    --white: #ffffff;
    --text-dark: #0f1f33;
}


/* ================= GLOBAL STYLES ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}
/* ======================================================
   TYPOGRAPHY RULES
====================================================== */

/* Headers use Palatino */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Body copy stays sans-serif */
p, li, span {
    font-family: var(--font-sans);
}
/* ================= NAVIGATION (ALL PAGES) ================= */

.navbar {
    background-color: var(--medical-navy); 
    padding: 18px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO = PALATINO */
.logo a {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.03em;
}

/* NAV LINKS = ROBOTO */ 
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links li a {
    font-family: var(--font-sans);
    color:var(--white);
    font-size: 14px;
    font-weight: 500;


}

.nav-links li a:hover {
    opacity: 0.85;
}

/* NAV CTA */ 
.nav-cta {
    font-family: var(--font-sans);
    padding: 8px 16px;
    background-color: var(--muted-indigo);
    border: 1px solid #f3eeee;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}


/* ================= HERO: WHAT WE DO ================= */

.section-hero {
    position: relative;
    background-image: url("/images/r_d.jpg"); 
    background-size: cover;
    background-position: center;
    padding: 110px 0 90px;
    color: #ffffff;
}

.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(11, 42, 74, 0.55);
    z-index: 0;
}

.section-hero .hero-grid {
    position: relative;
    z-index: 1;
}

/* ensure readable text */
.section-hero .hero-title,
.section-hero .hero-lead,
.section-hero .hero-support {
    color: #ffffff;
}

/* keep panel above overlay and readable */
.hero-panel {
    position: relative;
    z-index: 2;
    background-color: rgba(240, 244, 249, 0.98);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* LEFT SIDE */
.hero-title {
    font-family: var(--font-serif);
    font-size: 44px;
    color: var(--blue-primary);
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 18px;
    font-weight: 500;
    max-width: 520px;
    margin-bottom: 18px;
}

.hero-support {
    font-size: 15px;
    max-width: 560px;
    color: #4b5563;
}

/* RIGHT PANEL */
.hero-panel {
    background-color: #f4f6f9;
    padding: 40px;
    border-left: 4px solid var(--clinical-blue);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.hero-panel h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 14px;
    color:var(--blue-primary);
    
}

.hero-panel p {
    font-size: 14px;
    margin-bottom: 14px;
    color: #374151;
    line-height: 1.6;
}




/* How It WOrks Page */

/* ================= SECTION BASE ================= */

.section {
    padding: 80px 0;
}

.section-light {
    
    background-color: #ffffff;
    position: relative;
    
}

.section-gray {
    background-color: #edeef0;
}

.section-dark {
    background-color: #0b2a4a;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0b2a4a;
}

.section-title.light {
    color: #ffffff;
}

.section-text {
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 32px;
}

.section-text strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 6px;
}


/* ================= WHO WE WORK WITH ================= */

.section-who {
    background-color:var(--white);
}

.section-who .section-title {
    margin-bottom: 18px;
}

.section-who .section-text {
    max-width: 720px;
    font-size: 15px;
    margin-bottom: 24px;
}

/* Clean bullet styling */
.who-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.who-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
}

/* bullet */
.who-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--clinical-blue);
    font-size: 18px;
    line-height: 1;
}
/* ================= PROCESS OVERVIEW ================= */

.process-overview {
  background-color: #dde1e6;
  padding: 60px 0 50px;
  position: relative;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--blue-primary);
  margin-bottom: 14px;
}

.process-intro {
  max-width: 640px;
  font-size: 16px;
  margin-bottom: 60px;
  color: #4b5563;
}

/* FLOW LAYOUT */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

/* PROCESS CARD */
.process-card {
  background-color: #f8f9fb;
  padding: 34px 28px;
  border-radius: 10px;
  width: 22%;
  min-width: 220px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* NUMBER CIRCLE */
.process-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 18px;
}

/* CARD TEXT */
.process-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f1f33;
}

.process-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

/* ARROWS */
.process-arrow {
  width: 80px;
  height: 40px;
  stroke: var(--cool-slate);
  fill: none;
  stroke-width: 2;
  opacity: 0.6;
}

.process-arrow polyline {
  fill: none;
  stroke: var(--cool-slate);
  stroke-width: 2;
}

/* CTA */
.process-cta {
  margin-top: 60px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .process-flow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-card {
    width: 100%;
    max-width: 420px;
  }

  .process-arrow {
    display: none;
  }
}

 

/* ================= CARDS ================= */

.card {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #0b2a4a;
    max-width: 800px;
}

.card h3 {
    margin-bottom: 12px;
}

/* ================= PROCESS ================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 6px;
    border-top: 4px solid var(--clinical-blue);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.process-step h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 10px;
}

.step-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--cool-slate);
    margin-bottom: 8px;
}


/* ================= LISTS ================= */

.bullet-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 24px;
}

.bullet-list li {
    margin-bottom: 8px;
}

/* ================= INDUSTRIES ================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 4px;
}

.industry-card h4 {
    margin-bottom: 12px;
}

.industry-card ul {
    list-style: disc;
    margin-left: 18px;
}

/* ================= WHY ACQUIRE ================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.why-item {
    background-color: rgba(255,255,255,0.05);
    padding: 28px;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.why-item h4 {
    font-family: var(--font-serif);
    font-size: 17px;              
    font-weight: 600;
    margin-bottom: 14px;          
    color: #ffffff;
    letter-spacing: 0.02em;
}

.why-item p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74); 
}

.why-cta {
    margin-top: 56px;       
    text-align: center;
}

/* WHY ICON */
.why-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255,255,255,0.85);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}




/* ================= BUTTONS ================= */

.btn-primary {
    background-color: var(--white);
    color: #0b2a4a;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 4px;
    border-color: var(--blue-dark);
    display: inline-block;
    margin-top: 20px;
    border: 1px solid #0b2a4a; 
}

.btn-viewthefullprocess {
    border: 1px solid #0b2a4a;
    color: #0b2a4a;
    padding: 10px 23px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.2 ease-in-out;
    margin-top: 20px;
}

/* Hover State */
.btn.btn-viewthefullprocess:hover {
    background-color: #0b2a4a;
    color: #ffffff;
}

/* Centering */

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ================= LINKS ================= */

.text-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 500;
    color: #0b2a4a;
}




















/* ================= FOOTER ( ALL PAGES)  ================= */

.footer {
    background-color: #061c31;
    color: #ffffff;
    padding: 36px 0 16px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;

}

/* FOOTER HEADINGS */
.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/*FOOTER TEXT */
.footer-column p,
.footer-column ul li{
    font-family: var(--font-sans);
    font-size: 13px;
    max-width: 250px;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.85;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

