/*
 * A Design by GraphBerry
 * Author: GraphBerry
 * Author URL: http://graphberry.com
 * License: http://graphberry.com/pages/license
 */

/* Table of content
1.General - This is created general styles and overide some bootstrap classes.
2.Layout
 2.1 Animations
 2.2 Buttons
 2.3 Thumbnail - overide bootstrap thumbnail and add mased efect
 2.4 Socail icons -style for social icons list
3 Sections - definition for section and subsection
 3.1 Services
 3.2 Portfolio
 3.3 About
 3.4 Clients
 3.5 Price table
 3.6 Newsletter
 3.7 Contact
 3.8 Footer
4 Responsive 
**********************************************************************/

/*
1. General
**********************************************************************/
/* =========================
   TOPIC PAGE (SCOPED)
   ========================= */

/* Highest priority card: image left, stacked panels right */

a { color:#181A1C; }
.button { color:#181A1C; border:1px solid #181A1C; }

.topic-page .priority-split{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: stretch;
}

.topic-page .priority-visual{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.topic-page .priority-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* Force the right column to stack the three mini-cards vertically */
.topic-page .priority-panels .mini-card-grid{
  grid-template-columns: 1fr;
}

/* Mobile: stack image above panels */
@media (max-width: 900px){
  .topic-page .priority-split{
    grid-template-columns: 1fr;
  }
  .topic-page .priority-visual{
    max-height: 260px;
  }
}


/* Root: gives you a specificity advantage over global element rules */
.topic-page{
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 1rem 3rem;
}

/* Header */
.topic-page .page-header{
  margin: 0 0 1.25rem;
}

.topic-page .page-kicker{
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

.topic-page .page-title{
  margin: 0 0 0.65rem;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
}

.topic-page .page-lede{
  margin: 0;
  max-width: 70ch;
  line-height: 1.55;
  opacity: 0.88;
}

/* Stack rhythm */
.topic-page .stack{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


/* Card base */
.topic-page article.card{
  border-radius: 18px;
  padding: 1.25rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

/* Card headings (element-level) */
.topic-page article.card > h2{
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* Card paragraphs (element-level; beats many globals like .primary-section p) */
.topic-page article.card > p{
  margin: 0.75rem 0;
  line-height: 1.55;
  opacity: 0.92;
}

/* Muted paragraph */
.topic-page article.card > p.muted{
  opacity: 0.78;
}

/* Lists (element-level; beats global ul/li rules) */
.topic-page article.card > ul,
.topic-page article.card > ol{
  margin: 0.65rem 0 0.85rem;
  padding-left: 1.2rem;
  line-height: 1.55;
}

/* List items */
.topic-page article.card > ul > li,
.topic-page article.card > ol > li{
  margin: 0.4rem 0;
}

/* Ensure list markers are consistent */
.topic-page article.card > ul{
  list-style: disc;
}
.topic-page article.card > ul > li::marker{
  opacity: 0.85;
}

/* Links inside topic page (avoid global underline styles) */
.topic-page a{
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
}
.topic-page a:hover{
  border-bottom-color: rgba(255,255,255,0.45);
}

/* Variants */
.topic-page article.card.card-accent{
  background: rgba(80, 30, 40, 0.35);
  border-color: rgba(255,255,255,0.12);
}

.topic-page article.card.card-cta{
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.10);
}

/* CTA row + buttons (element-level + scoped) */
.topic-page .cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
  row-gap: 0.75rem;
}

.topic-page .cta-row > a.btn{
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
  flex: 1 1 220px;
}

.topic-page .card-cta .cta-row{
  max-width: 760px;
}


.topic-page .cta-row > a.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.26);
}

.topic-page .cta-row > a.btn.btn-primary{
  background: rgba(255,255,255,0.10);
}

.topic-page .cta-row > a.btn.btn-primary:hover{
  background: rgba(255,255,255,0.14);
}

.topic-page .cta-row > a.btn.btn-ghost{
  background: rgba(255,255,255,0.04);
  opacity: 0.95;
}

.topic-page .cta-row > a.btn.btn-ghost:hover{
  background: rgba(255,255,255,0.07);
}

/* Center the CTA row block within the card */
.topic-page .card-cta .cta-row{
  margin-left: auto;
  margin-right: auto;
  justify-content: center; /* centers buttons when row is not full width */
}

/* Make the two buttons feel balanced even on wide screens */
.topic-page .cta-row > a.btn{
  text-align: center;
  min-width: 240px; /* helps avoid cramped buttons */
}

/* Ensure CTA buttons never inherit theme yellow/accent link colors */
.topic-page .cta-row > a.btn,
.topic-page .cta-row > a.btn:visited{
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none;
}

.topic-page .cta-row > a.btn:hover,
.topic-page .cta-row > a.btn:focus{
  color: #ffffff !important;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 600px){
  .topic-page .page-title{ font-size: 1.8rem; }
  .topic-page article.card{ padding: 1.05rem; border-radius: 16px; }
}

/* Topic-specific lists (symptoms, patterns, examples) */
.topic-page ul.topic-list{
  margin: 0.75rem 0 0.9rem;
  padding-left: 1.2rem;

  list-style: disc;
  line-height: 1.55;
}

/* List items */
.topic-page ul.topic-list > li{
  margin: 0.45rem 0;
  padding-left: 0.15rem;

  font-size: 1rem;
  opacity: 0.92;
}


/* Nested lists (if you ever need them) */
.topic-page ul.topic-list ul{
  margin: 0.4rem 0 0.6rem;
  padding-left: 1.1rem;
  list-style: circle;
}

.topic-page ul.topic-list ul > li{
  opacity: 0.85;
}

/* Tighten list when followed by muted paragraph */
.topic-page ul.topic-list + p.muted{
  margin-top: 0.5rem;
}

/* Force list item text color back to normal */
.topic-page ul.topic-list > li{
  color: rgba(255,255,255,0.92);  /* <- this fixes the yellow text */
  margin: 0.45rem 0;
  padding-left: 0.15rem;
  font-size: 1rem;
  opacity: 1;                     /* optional: don’t double-dim */
}

/* Keep bullets accented (optional) */
.topic-page ul.topic-list > li::marker{
  color: rgba(255,255,255,0.55);
}

.topic-page .card-title{
  color: rgba(255,255,255,0.90);
}

.experience-panel{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;

  margin: 3rem 0;
  padding: 2rem;

  border-radius: 22px;

  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.015));

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

/* Image side */
.experience-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.9;
}

/* Text side */
.experience-content h2{
  margin-top: 0;
}
.experience-panel h2{
  color: rgba(255,255,255,0.88);
}

.context-strip{
  height: 120px;
  margin: 0 0 1.5rem;

  border-bottom: 1px solid rgba(255,255,255,0.06);

  /* subtle “presence”, not an image banner */
  background:
    radial-gradient(120% 90% at 30% 20%,
      rgba(120, 200, 255, 0.10),
      rgba(0,0,0,0) 60%),
    radial-gradient(120% 90% at 70% 60%,
      rgba(255, 180, 80, 0.06),
      rgba(0,0,0,0) 55%),
    linear-gradient(180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.00));
}


.experience-lede{
  max-width: 55ch;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 900px){
  .experience-panel{
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* ===== HERO POLISH (scoped) ===== */
.hero-wrap{
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.hero-card{
  border-radius: 18px;
  overflow: hidden;
  position: relative;

  /* lighter, more “glass” than “box” */
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* gentle cinematic falloff + text safety at bottom */
  background:
    radial-gradient(120% 90% at 50% 0%,
      rgba(80,200,255,0.10),
      rgba(0,0,0,0) 55%),
    linear-gradient(180deg,
      rgba(0,0,0,0.10),
      rgba(0,0,0,0.35) 70%,
      rgba(0,0,0,0.55));
}

.hero-img{
  width:100%;
  height:auto;
  display:block;
}

.hero-copy{
  text-align:center;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.hero-copy h2{
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero-copy p{
  margin: 0 auto;
  max-width: 78ch;
  line-height: 1.45;
  opacity: 0.90;
  padding: 0;              /* override your global p padding */
}

.hero-actions{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 18px auto 0;
}

.hero-actions .button{
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-transform:none;          /* less shouty */
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.hero-actions .button:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.24);
}

/* Primary */
.hero-actions .button.is-primary{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

/* Ghost */
.hero-actions .button.is-ghost{
  background: rgba(255,255,255,0.02);
  opacity: 0.92;
}

/* ===== HERO OVERLAY SYSTEM ===== */

.hero-card{
  position: relative;
}

/* Darkening layer for readability */
.hero-overlay{
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-start;   /* was flex-end */
  justify-content: center;

  padding: 48px 30px 0;      /* top padding controls vertical position */

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.22) 40%,
      rgba(0,0,0,0.00) 70%
    );
}

/* Text container */
.hero-text{
  max-width: 920px;
  text-align: center;
  color: #fff;
}

.hero-kicker{
  display: inline-block;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}

.hero-text h1{
  margin: 0 0 14px;
  font-size: 2.45rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.hero-text h1 span{
  display: block;
  font-weight: 300;            /* contrast */
  opacity: 0.95;
  margin-top: 15px;
  font-size: 0.68em;
}

.hero-rule{
  width: 120px;
  height: 2px;
  margin: 0 auto 14px;
  background: rgba(254,206,26,0.65); /* your gold */
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.hero-text p{
  margin: 0 auto;
  max-width: 78ch;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.7;
  padding: 0; /* override global p padding */
  text-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

@media (max-width: 768px){
  .hero-overlay{ padding: 30px 18px 0; }

  .hero-text h1{ font-size: 1.75rem; }
  .hero-text p{ font-size: 0.98rem; }
  .hero-rule{ width: 90px; }
}


/* Textbook-style caption under an image */
.caption-text {
  /* Layout */
  display: block;
  max-width: 800px;   /* slightly inset from 960 for visual margin */
  width: 92%;

  margin: 0.75rem auto 0;      /* centered under media */
  padding: 0px;

  /* Typography (high legibility) */

  font-family: "Sofia Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;

  /* Color + “raised” caption panel */
  color: #989898 !important;
  background: rgba(255, 255, 255, 0.10); /* subtle lift */
  border: 2px solid #2A2A2A;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  overflow-x: hidden;

  /* Optional polish */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: #1F1F1F !important;
 /* border: 1px solid #999 !important;*/
  padding-bottom:30px;
  box-sizing: border-box;   /* critical */
  padding: 1.25rem 1.5rem;  /* left/right breathing room */
	margin-bottom:70px;
	text-align: center;
}

/* Optional: slightly smaller on narrow screens */
@media (max-width: 480px) {
  .caption-text {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
  }
}

.caption-text ul,
.caption-text ol {
  display: table;              /* shrink to content width */
  margin: 0.75rem auto;        /* center the whole list block */
  padding-left: 1.25rem;       /* proper bullet indentation */
  text-align: left;            /* keep text left-aligned */
  list-style-position: outside;
}


.caption-lede{
  display:block;
  width:auto;                 /* don't force 100% */
  margin: -1.25rem -1.5rem 1.1rem;  /* pull into the card padding */
  padding: 14px 0 10px;

  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  background:#2C4B53;
  border-bottom: 2px solid #2A2A2A;
  color:#E9F9EE;
  font-size:1.7em;
  border-top-left-radius: 10px;   /* match card rounding */
  border-top-right-radius: 10px;
  font-style:oblique;
	text-shadow: 3px 3px 4px #111; 
}

/* List items */
.caption-text li {
  margin-bottom: 0.45rem;
  line-height: 1.5;
}


.slides{
  display: flex;
  flex-direction: column;
  gap: 2.25rem;            /* vertical rhythm between days */
  margin: 2rem auto;
  max-width: 960px;        /* controls the whole series width */
  padding: 0 1rem;         /* mobile breathing room */
}

.slide{
  border-radius: 18px;
  overflow: hidden;                 /* critical */
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.slide img{
  display: block;       /* removes baseline gap */
  width: 100%;
  height: auto;         /* preserves aspect ratio */
}

@media (max-width: 640px){
  .slides{
    gap: 1.5rem;
  }

  .slide{
    border-radius: 14px;
  }
}

@media (min-width: 1400px){
  .slides{
    max-width: 880px;
  }
}

/* Bottom-of-page day navigator */
.day-nav{
  max-width: 960px;
  margin: 2.25rem auto 3rem;
  padding: 0 1rem;

  display: grid;
  gap: 0.9rem;
}

/* If both prev + next exist, show them side-by-side on desktop */
.day-nav:has(.prev):has(.next){
  grid-template-columns: 1fr 1fr;
}

/* If only one exists, it stays nicely sized and aligned */
.day-nav:not(:has(.prev)) .next{
  justify-self: end;
  max-width: 520px;
}
.day-nav:not(:has(.next)) .prev{
  justify-self: start;
  max-width: 520px;
}

/* Buttons */
.nav-btn{
  display: block;
  text-decoration: none;
	


  padding: 1rem 1.1rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);

  color: rgba(255,255,255,0.92);
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
	min-width: 40%;
}

.nav-btn:hover{
  transform: translateY(-2px);
  background: #21343A;
  border-color: rgba(255,255,255,0.14);
}

.nav-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
}

/* Typography */
.nav-btn .kicker{
  display:block;
  font-size: 1rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
	color:#89918C;
	text-transform: uppercase;
}
.nav-btn .title{
  display:block;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color:#E9F9EE;
  text-transform: uppercase;
  padding-bottom:32px;
  font-family: "Bebas Neue", sans-serif;
  border-bottom: 2px solid #89918C;
}

.nav-btn .desc{
  display:block;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.85;
  color:aliceblue;
  font-style: oblique;
  padding-top: 15px;
}

/* Symmetry */
.nav-btn.next{ text-align: right; }
.nav-btn.prev{ text-align: left; }

/* Mobile: always stack */
@media (max-width: 700px){
  .day-nav{
    grid-template-columns: 1fr !important;
  }
  .nav-btn.next{
    text-align: left;
  }
  .day-nav:not(:has(.prev)) .next,
  .day-nav:not(:has(.next)) .prev{
    justify-self: stretch;
    max-width: none;
  }
}

.site-footer{
  margin: 2rem auto 0;
  padding: 2.25rem 0 1.25rem;

  /* matches your dark UI */
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;

  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.4fr;
  gap: 1.25rem;
}

.footer-col{
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.30);
}

.footer-logo{
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.footer-tagline{
  margin: 0;
  line-height: 1.45;
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-title{
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li{
  margin: 0.4rem 0;
}

.footer-links a,
.footer-bottom a{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
}

.footer-links a:hover,
.footer-bottom a:hover{
  border-bottom-color: rgba(255,255,255,0.45);
}

.footer-disclaimer{
  margin: 0;
  line-height: 1.45;
  font-size: 0.92rem;
  opacity: 0.85;
}

.footer-bottom{
  max-width: 960px;
  margin: 1rem auto 0;
  padding: 0 1rem;

  display: flex;
  justify-content: space-between;
  gap: 1rem;

  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom p{
  margin: 0.75rem 0 0;
}

.footer-bottom-links{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Responsive */
@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 0.75rem;
}

.mini-card{
  border-radius: 16px;
  padding: 1rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.mini-card h3{
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
}

@media (max-width: 800px){
  .grid-2{
    grid-template-columns: 1fr;
  }
}

.social-context-image{
  height: 340px;        /* choose a frame height */
  overflow: hidden;
  border-radius: 18px;
}

.social-context-image img{
  width: 100%;
  height: 100%;         /* critical: creates the cropping box */
  object-fit: cover;
  object-position: left 35%;
  display: block;
}

/*
TESTIMONY BLOCK
*/
/* ========== COMPONENT: TESTIMONY ========== */
/* ========== COMPONENT: TESTIMONY ========== */
.cmp-testimony{
/*	  max-width: 900px;   /* match .topic-page 
/*  width: 100%;*/
  margin-left: auto;
  margin-right: auto;
	
  /*margin: 3rem auto;*/
  padding: 2.2rem 1.8rem;

  border-radius: 20px;

  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015));

  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38);

  color: rgba(255,255,255,0.92);
}


/* Neutralise accent headings inside content pages */
.topic-page h1,
.topic-page h2,
.topic-page h3,
.topic-page h4{
  color: rgba(255,255,255,0.95);
}

.topic-page .mini-card h3{
  color: rgba(255,255,255,0.92);
}


/* Neutralise heading accents inside this component */
.cmp-testimony h2,
.cmp-testimony h3{
  color: rgba(255,255,255,0.95);
  margin: 0;
}

.cmp-testimony__kicker{
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.cmp-testimony__title{
  margin: 0 0 0.85rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.cmp-testimony__intro{
  margin: 0;
  max-width: 78ch;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

.cmp-testimony__list{
  margin: 1.25rem 0 0;
  display: grid;
  gap: 1rem;
}

/* Quotes: explicit colors so global blockquote rules can't wreck them */
.cmp-testimony__quote{
  margin: 0;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;

  background-color: rgba(0,0,0,0.35);
  border-left: 4px solid rgba(255,255,255,0.30);

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.55;
}

.cmp-testimony__quote p{
  margin: 0 0 0.6rem;
  color: rgba(255,255,255,0.92);
}

.cmp-testimony__quote footer{
  margin: 0;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.cmp-testimony__note{
  margin: 1.25rem 0 0;
  max-width: 78ch;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* Mobile */
@media (max-width: 700px){
  .cmp-testimony{
    padding: 1.5rem 1rem;
  }
}



/* end testimony block */

/* Two-column text layout used on The Problem page */

/* Mini card grid */
.mini-card-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 900px){
  .mini-card-grid{ grid-template-columns: 1fr; }
}

/* Lists in content cards */
ul.topic-list{
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

ul.topic-list li{
  margin: 0.35rem 0;
}


.topic-page article.card h3{
  color: rgba(255,255,255,0.92);
}


/* HERO WRAPPER */
.centerbanner.hero{
  position: relative;              /* <-- makes overlay anchor here */
  width: min(1100px, 92vw);
  margin: 28px auto 0;
  border-radius: 14px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.45), 0 18px 50px rgba(0,0,0,0.55);
}

/* IMAGE */
.centerbanner.hero img{
  display:block;
  width:100%;
  height:auto;
}

/* OVERLAY LAYER */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;

  /* lets you place text near the top */
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 46px 24px 24px;

  /* helps readability without killing the image */
  background: radial-gradient(70% 60% at 50% 20%,
              rgba(0,0,0,0.45), rgba(0,0,0,0.10) 55%, rgba(0,0,0,0.0) 75%);
}

.hero-overlay-inner{
  max-width: 860px;
  text-align: center;
}

/* OPTIONAL: keep overlay clickable or not */
.hero-overlay{ pointer-events: none; } /* if overlay blocks clicks */
.hero-overlay-inner a{ pointer-events: auto; } /* re-enable on buttons if needed */
/* HERO WRAPPER */
.centerbanner.hero{
  position: relative;              /* <-- makes overlay anchor here */
  width: min(1100px, 92vw);
  margin: 28px auto 0;
  border-radius: 14px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.45), 0 18px 50px rgba(0,0,0,0.55);
}

/* IMAGE */
.centerbanner.hero img{
  display:block;
  width:100%;
  height:auto;
}

/* OVERLAY LAYER */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;

  /* lets you place text near the top */
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding: 46px 24px 24px;

  /* helps readability without killing the image */
  background: radial-gradient(70% 60% at 50% 20%,
              rgba(0,0,0,0.45), rgba(0,0,0,0.10) 55%, rgba(0,0,0,0.0) 75%);
}

.hero-overlay-inner{
  max-width: 860px;
  text-align: center;
}

/* OPTIONAL: keep overlay clickable or not */
.hero-overlay{ pointer-events: none; } /* if overlay blocks clicks */
.hero-overlay-inner a{ pointer-events: auto; } /* re-enable on buttons if needed */




.insight-panel{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;

  margin: 3rem 0;
  padding: 2rem;

  border-radius: 22px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.035),
      rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.38);
}

/* rhythm label */
.panel-kicker{
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* keep this panel’s heading calm (not yellow) */
.insight-panel h2{
  margin-top: 0;
  color: rgba(255,255,255,0.92);
}

/* image */
.insight-media{
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.insight-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

/* the “don’t overclaim” sentence */
.micro-callout{
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;

  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 900px){
  .insight-panel{
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.friction-panel{
  margin: 3.5rem 0;
  padding: 2.5rem 1.5rem;

  background:
    linear-gradient(180deg,
      rgba(90,30,40,0.45),
      rgba(20,10,15,0.55));

  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

/* Constrain width to create pressure */
.friction-inner{
  max-width: 680px;
  margin: 0 auto;
}

/* Keep kicker understated */
.friction-panel .panel-kicker{
  margin-bottom: 0.6rem;
  opacity: 0.6;
}

/* Heading: calm but firm */
.friction-panel h2{
  margin-top: 0;
  color: rgba(255,255,255,0.95);
}

/* Body text slightly tighter */
.friction-panel p{
  line-height: 1.5;
}

/* Quote treatment */
.friction-quote{
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;

  border-left: 3px solid rgba(255,255,255,0.35);

  font-style: italic;
  opacity: 0.9;
}

/* Muted close */
.friction-panel p.muted{
  opacity: 0.75;
}

.meta-panel{
  margin: 4rem 0 3.5rem;
  padding: 2.5rem 1.5rem;

  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.meta-inner{
  max-width: 960px;
  margin: 0 auto;
}

.meta-panel h2{
  margin-top: 0;
  color: rgba(255,255,255,0.95);
}

/* Two-column calm reasoning */
.meta-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;

  margin: 1.2rem 0 1.5rem;
}

.meta-columns p{
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Closing synthesis */
.meta-conclusion{
  max-width: 70ch;
  margin: 0;

  font-style: italic;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 800px){
  .meta-columns{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


body {
    font-family:'Roboto', sans-serif;
    color: #FFF;
	background-color: #181A1C;	
    line-height:1.2em;
    font-size:17px;
    line-height:20px;
}
a {
    color:#181A1C;
    text-decoration: none;
}
a:hover {
    color: #FECE1A;
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #fff;
}
/* ============================
   NAVBAR (Bootstrap 2) — single consolidated block
   ============================ */

/* Bar + container */
.navbar{
  background:#181A1C;
  margin-bottom:0;
  min-height:60px;
}

.navbar-fixed-top{
  height:60px;
  min-height:60px;
  padding-top:0;
}

.navbar-inner{
  background:#181A1C;
  border:none;
  border-radius:0;
  box-shadow:none;
  filter:none;
  min-height:60px;
}

/* Brand */
.navbar .brand{
  padding: 5px 0;
  margin: 0;
}

.navbar .brand img{
  width: 132px;     /* adjust if needed */
  height: auto;
  max-height: 50px;
  display:block;
}

/* Top-level nav links as pills */
.navbar .nav > li > a{
  text-transform: uppercase;
  font-size: 15px;                  /* was 18px */
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  text-shadow: none;

  margin: 10px 4px;
  padding: 8px 12px;

  border: 2px solid rgba(255,255,255,0.18); /* constant thickness */
  border-radius: 999px;
  background: rgba(255,255,255,0.02);

  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

/* Hover/focus: color change only (no thickness jump) */
.navbar .nav > li:hover > a,
.navbar .nav > li > a:focus{
  border-color: rgba(92,196,210,0.70);
  background-color: rgba(14,43,51,0.35);
  color:#fff;
}

/* Active state */
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus{
  border-color: rgba(92,196,210,0.90);
  background-color: rgba(14,43,51,0.75);
  color:#fff;
}

/* Caret alignment + visibility */
.navbar .nav > li > a .caret{
  margin-left: 6px;
  border-top-color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.65);
}

/* Dropdown menu */
.navbar .dropdown-menu{
  margin-top: 8px;
  padding: 10px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(16,18,20,0.98);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.navbar .dropdown-menu > li > a{
  padding: 10px 12px;
  border-radius: 10px;

  color: rgba(255,255,255,0.88);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.navbar .dropdown-menu > li > a:hover,
.navbar .dropdown-menu > li > a:focus{
  background: rgba(14,43,51,0.85);
  color:#fff;
}

.navbar .dropdown-menu .divider{
  background-color: rgba(255,255,255,0.08);
  border-bottom: none;
  margin: 8px 0;
}

/* Mobile toggle */
.navbar .btn-navbar{
  border-radius: 10px;
  background: #FECE1A;
  color:#000;
  box-shadow:none;
}

.navbar .btn-navbar:hover{
  background:#ffd84a;
  color:#000;
}



.depth-panel{
  margin: 4rem 0 2.5rem;
  padding: 2.5rem 1.5rem;

  background:
    radial-gradient(120% 90% at 30% 10%,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0) 60%),
    rgba(255,255,255,0.02);

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.depth-inner{
  max-width: 960px;
  margin: 0 auto;
}

.depth-head h2{
  margin: 0.2rem 0 0.6rem;
  color: rgba(255,255,255,0.95);
}

.depth-lede{
  margin: 0;
  max-width: 80ch;
  line-height: 1.6;
  opacity: 0.88;
}

.depth-links{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.depth-card{
  display: block;
  text-decoration: none;
  padding: 1rem 1.1rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 26px rgba(0,0,0,0.32);

  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.depth-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
}

.depth-title{
  display: block;
  font-weight: 700;
  color: rgba(255,255,255,0.94);
  margin-bottom: 0.35rem;
}

.depth-desc{
  display: block;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.depth-note{
  margin: 1.25rem 0 0;
}

@media (max-width: 800px){
  .depth-links{
    grid-template-columns: 1fr;
  }
}
.pattern-divider{
  margin: 2.5rem 0 3rem;

  border-radius: 18px;
  overflow: hidden;

  max-height: 220px;
}

.pattern-divider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  opacity: 0.75;
}


.context-image{
  position: relative;
  margin: 2rem 0 2.5rem;

  border-radius: 20px;
  overflow: hidden;

  max-height: 420px;
}

.context-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; /* keeps the subject */
}

/* Dark blend to integrate with page */
.context-image::after{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.55)
    );
}

/******
2. Layout
**********************************************************************/
.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}
/* Use this class if you want ceter element with span* class */
 .center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}
.highlighted-box {
    background:#F4F8F9;
    padding:20px 30px;
}
.highlighted-box h1 {
    margin:0px;
}
.large-text {
    line-height:1.2em;
    font-size: 30px;
    color: #181A1C;
    padding:20px;
    margin-bottom:20px;
}
.highlighted-box h1, .highlighted-box p {
    color: #181A1C !important;
}
.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    -khtml-border-radius: 500px;
    border: 3px solid #fff;
}
.left-align {
    text-align:left;
}
.right-align {
    text-align:left;
}
.error {
    color: #CF0000;
    display: none;
}
.invisible {
    display:none;
    visibility:visible;
}
.triangle {
    margin: 0 auto;
    text-align:center;
    width: 0;
    height: 0;
    border-top: 30px solid #181A1C;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}
/*
2.1 Animations
**********/
 .zoom-in {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    transition: all 250ms ease;
}
.zoom-in:hover {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
}
/*
2.2 Buttons - There are buttons on a transparent background, primary and secondary color background.
**********/
 .button,  .button:visited, .button:focus {
    display:inline-block;
    border:1px solid #181A1C;
    color:#181A1C;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
}
.button:hover, .button:active{
    background-color:#181A1C;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
    background-color:#FECE1A;
    color:#181A1C;
}
.button-sp:hover, .button-sp:active {
    background-color:#181A1C;
    color:#FECE1A;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#181A1C;
    color:#FECE1A;
}
.button-ps:hover, .button-ps:active {
    background-color:#FECE1A;
    color:#181A1C;
}
/*
2.3 Thumbnails - Predefined bootstrap's thumbnail class.
**********/
 .thumbnail {
    width:100%;
    height:100%;
    padding:0;
    overflow: hidden;
    position: relative;
    border:0;
    border-radius:0;
    box-shadow:none;
    text-align:center;
    background: #191a1c;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100px;
    left:50%;
    margin:0 auto;
    margin-left:-41px;
    width:80px;
    height:80px;
    font-size:40px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:40%;
    margin-top:-40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3 s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.thumbnail h3, 
.thumbnail p {
    margin:0;
    padding:0;
    position:relative;
    z-index:4;
}
.thumbnail h3 {
    color: #FECE1A;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.85;
    filter: alpha(opacity=85);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#181A1C;
    position:absolute;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2 s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
    top:0;
}
/*
2.4 Socail icons
************/
 .social {
    list-style: none;
    float: none;
    position:relative;
    margin:5px; auto;
}
.social li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 32px;
    padding:0 5px;
}
.social li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #FECE1A;
}
.social li a:hover {
    color:#181A1C;
}
/*
3. Sections 
***************************************************************************/
 .section {
    padding-bottom: 50px;
}
.section .container {
    padding-top:50px;
}
.section .title {
    text-align: center;
    padding:10px;
    margin-bottom: 30px;
}
.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}
.section .title > p {
    font-size: 20px;
    color: #FFF;
    font-weight: lighter;
}
.primary-section {
    background:#181A1C;
}
.primary-section .triangle {
    border-top: 40px solid #FECE1A;
}
.primary-section .title {
    border-bottom: 1px solid #FFF;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #FECE1A;
}
.primary-section h1 {
    color:#FFF;
}
.secondary-section {
    background:#f5e6c8;
}
.secondary-section .title {
    border-bottom: 1px solid #181A1C;
}
.secondary-section h1, .secondary-section .title p {
    color: #181A1C;
}
.secondary-section p{ color:#181A1C; }
.secondary-section .thumbnail p{ color:#fff; } /* thumbnails are dark backgrounds */


/* Third section use bacground image */
.third-section {
    padding-bottom: 70px;
    background: #181A1C url(../images/brand-bg.png) no-repeat center;
    border-top:6px solid #FECE1A;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title {
    border-bottom: 1px solid #A1AAB7;
    color: #FECE1A;
}
.sub-section {
    margin-top:30px;
}
.sub-section .title {
    padding:0;
}
/*******
3.1 Services  
***************************************/
.service{
    margin-top:20px;
}
 .service, .service h2 {
    padding-top:15px;
}
.service p {
    padding:0px 50px;
    height:auto;
}
.service img {
    width:150px;
    height:150px;
}
/*
3.2 Portfolio
***************************************/
 .single-project {
    margin-bottom:30px;
    background:#181A1C;
}
.single-project img {
    width:100%;
}
.project-description {
    padding-right:20px;
}
.project-description p {
    padding-left:0;
}
.project-title {
    margin-top:15px;
    margin-bottom:15px;
    border-bottom:1px solid #FECE1A;
}
.project-title h3 {
    float:left;
    margin-top:0;
    padding:0;
    width:80%;
}
.project-title .close {
    color: #FECE1A;
    margin-top:10px;
}
.project-info span, .project-title h3 {
    color:#FECE1A;
}
.project-info {
    font-weight:100;
    padding:10px 0;
}
.project-info span {
    width: 80px;
    display: inline-block;
}
.project-info div {
    margin-bottom:5px;
}
.close {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
}
#portfolio-grid .mix {
    opacity: 0;
    display: none;
}
/*
3.3 About
******************************************************************/
 .team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}
.team .thumbnail:hover .social {
    z-index: 5;
}
.team .thumbnail:hover .social a {
    color:#fff;
}
.team .thumbnail .mask {
    background: #FECE1A;
}
.team .thumbnail .mask h2 {
    margin-top:20%;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color:#181A17;
}
.about-text {
    margin-top:30px;
}
.about-text p {
    padding:0;
    font-size:16px;
}
/*********************************************************************
                        SKILLS BAR
*********************************************************************/
 .skills {
    list-style-type: none;
    position: relative;
    margin:0px;
}
.skills li {
    margin-bottom:30px;
    background:#FFF;
    height:40px;
    padding:1px;
}
.skills li h3 {
    position: relative;
    font-size: 15px;
    padding:0;
    margin:0;
    left: 10px;
    z-index: 1;
    color: #181A1C;
}
.skills li .bar {
    height:40px;
    position:absolute;
    background-color: #FECE1A;
}
/*
3.4 Clients
**********************************************************************/
 .client-slider img {
    border:1px solid white;
}
.client-slider img:hover {
    background-color:#FECE1A;
}
.client-nav {
    list-style:none;
    margin-top:10px;
}
.client-nav li {
    float:left;
    display:block;
    margin-left:10px;
}
.client-nav li a {
    display:inherit;
    padding:5px;
    background:#FECE1A;
    border-radius:3px;
    width:20px;
    height:20px;
}
.client-nav li a:hover {
    background:#181A1C;
}
.testimonial p {
    color:#181A1C;
    background:#FECE1A;
    padding:15px;
    margin:0;
}
.testimonial .arrow {
    margin-left:10px;
    width:0;
    border-top:10px solid #FECE1A;
    border-left: 20px outset transparent;
    border-right: 20px outset transparent;
}
.testimonial .whopic {
    display:inline-block;
}
.testimonial .whopic img {
    margin-top:10px;
    width:50px;
    height:50px;
    float:left;
}
.testimonial .whopic strong {
    float:left;
    margin-top:10px;
    padding-left:10px;
}
.testimonial .whopic small {
    display:block;
    font-size:12px;
    
}
.testimonial-text{
    display:block;
    font-size:22px;
    text-align:center;
    margin:0 auto;
    margin-top:30px;
    width:70%;
    line-height:1.3em;
}
/*
3.5 Price table
******************************************************************/
 .price-table {
    margin-top: 70px;
    margin-bottom: 20px;
}
.price-column {
    background-color:white;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-bottom:20px;
    margin:0 auto;
    text-align:center;
}
.price-column h3 {
    background-color:#181A1C;
    text-transform:uppercase;
    text-align: center;
    color:#FECE1A;
    padding:40px 0px;
    font-size: 36px;
    margin-top:0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}
.price-column .list{
    list-style:none;
    margin:20px 50px;
}
.price-column .list li{
    font-weight:lighter;
    color:#747C89;
    font-size:20px;
    border-bottom:1px solid #747C89;
    padding:25px 0px;
}
.price-column .list li.price {
    text-align: center;
    font-size:31px;
    background-color:white;
    color:#747C89;
    margin-top:25px;
}
.price-text{
    margin:30px 0 20px;
    font-size:20px;
    color: #181A1C;
    font-weight:normal;
}
/*
3.6 Newsletter
********************************************************************/
 .newsletter, .newsletter h2 {
    color: #D7DDDE;
}
.newsletter .title h2 {
    text-align:left;
    padding:0;
    margin:0;
}
.newsletter form {
    text-align:right;
}
.newsletter input {
    margin-top:10px;
    padding:15px;
    height: auto;
}
.newsletter button {
    margin: 0 0 0 20px;
}
.newsletter .button-sp:hover, .newsletter .button-sp:active {
    background-color:#FFF;
    color:#181A1C;
}

/*
3.7 Contact
********************************************************************/
 .contact {
    background: #FECE1A;
}
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #181A1C;
}
.contact textarea, .contact input[type="text"], .contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
}
.contact textarea {
    height: 120px;
}
.contacts, .contact .social {
    color: #fff;
    list-style: none;
    margin-left: 10px;
}
.contacts > li {
    margin-top: 15px;
}
.contacts > li > a {
    color: #fff;
}
.contact-info {
    margin-top:10px;
    margin-bottom:10px;
}
.contact-info p{
     font-weight:normal;
}
.contact-info .icon {
    margin:10px auto;
    font-size:30px;
}
.map-wrapper {
    position:relative;
    height:500px;
}
.map-canvas {
    position:absolute;
    margin-bottom:20px;
    width:100%;
    height:500px;
    color: #29383F;
    position:absolute;
    left:0;
    top:0;
    right:0;
}
.contact .social {
    display: inline-block;
    margin-left:0;
}
.contact .social li {
    line-height: 32px;
    padding:10px 10px;
    font-family:'Porta';
    font-size: 50px;
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
}
.contact .social li a {
    color:#fff;
}
.contact .social li a:hover {
    color:#181A1C;
}
.contact-form {
    background:#fff;
    background: rgba(255, 255, 255, 0.9);
    z-index:110;
    position:relative;
    margin-top:-25px;
    padding:20px;
}
.contact-form h3 {
    color:#838589;
    padding-bottom:20px;
}
.message-btn {
    border:1px solid #747C89;
    color:#747C89;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
}
.message-btn:hover {
    background-color:#FECE1A;
}
.contact-info {
    text-align:center;
    font-size:22px;
}
.info-mail {
    border:1px solid white;
    width:60%;
    margin:0 auto;
    padding:15px;
    color:#181A1C;
}
.black {
    color:#181A1C;
}
/*
3.8 Footer
********************************************************************/
 .footer {
    background: #181A1C;
    text-align: center;
}
.footer > p {
    color: #fff;
    margin:0;
}

.footer a{
    color:#FECE1A;
}

.footer a:hover, .footer a:focus{
    text-decoration: underline;
}
.scrollup {
    text-align:center;
    cursor:pointer;
    vertical-align:middle;
    width:39px;
    height:39px;
    border-radius:5px;
    font-size:20px;
    position:fixed;
    bottom:30px;
    right:20px;
	border:1px solid #fff;
    display:none;
    background: #FECE1A;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}
/*
4 Responsible
********************************************************************/
 @media (min-width: 1200px) {
    .thumbnail .more {
        margin-left:-41px;
        width:80px;
        height:80px;
        border-radius:40px;
        line-height: 80px;
    }
}
@media (max-width: 979px) {
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;

    }
    .thumbnail .more {
        margin-left:-21px;
        width:40px;
        height:40px;
        border-radius:30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top:-20px;
    }
    .newsletter form {
        text-align:center;
    }
}
@media (max-width: 767px) {
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
}

/* Make links readable on dark sections */
.primary-section a { color: #FECE1A; }
.primary-section a:hover { color: #fff; }

/* Buttons should be visible on dark sections */
.primary-section .button,
.primary-section .button:visited,
.primary-section .button:focus{
  border: 1px solid #0e2b33;
  color: #fff;
}
.primary-section .button:hover,
.primary-section .button:active{
  background-color: #0e2b33;
  color: #fff;
}

/* Buttons on light sections can keep the dark text */
.secondary-section .button{
  border-color: #181A1C;
  color: #181A1C;
}


/* =========================
   TEAM THUMBNAIL HOVER MASK (LEGIBLE)
   ========================= */

/* This overrides the old GraphBerry rule that makes team masks yellow */
.team .thumbnail .mask{
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;

  /* darker, calmer overlay */
 background: rgba(12, 18, 22, 0.78);
  opacity: 1;                 /* don’t double-dim text */
  filter: none;

  position: absolute;
  z-index: 5;

  /* comfortable spacing */
  padding: 22px 22px 18px;
  box-sizing: border-box;

  /* nicer layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;

  /* subtle depth + edge separation */
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: top 220ms ease-out;
}

.team .thumbnail:hover .mask{
  top: 0;
}

/* Headings + text inside the overlay */
.team .thumbnail .mask h2{
  margin: 0 0 6px;
  padding: 0;
  color: rgba(255,255,255,0.96);
  font-size: 22px;
  line-height: 1.15;
}

.team .thumbnail .mask p{
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.45;
  max-width: 42ch;
}

/* Button inside the overlay: don’t use the bright yellow fill */
.team .thumbnail .mask .button-sp{
  display: inline-block;
  margin-top: 10px;

  background: rgba(254,206,26,0.14);
  border: 1px solid rgba(254,206,26,0.40);
  color: rgba(255,255,255,0.95);

  border-radius: 12px;
  padding: 12px 16px;
}

.team .thumbnail .mask .button-sp:hover{
  background: rgba(254,206,26,0.22);
  border-color: rgba(254,206,26,0.55);
}

/* SERIES GRID: equal-height tiles + consistent alignment */
#series ul.thumbnails.row,
#series ul.thumbnails.row-fluid{
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;            /* avoids odd left offset with flex */
}

#series ul.thumbnails > li[class*="span"]{
  float: none;               /* neutralise Bootstrap floats */
  display: flex;             /* makes the child stretch */
  margin-left: 20px;         /* approximate Bootstrap gutter */
  margin-bottom: 20px;
}

#series ul.thumbnails > li[class*="span"] .thumbnail{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Keep the image consistent */
#series .thumbnail img{
  width: 100%;
  height: auto;
  display: block;
}

/* Make text area consistent + push button to bottom */
#series .thumbnail h3{
  margin: 14px 14px 6px;
  padding: 0;
}

#series .thumbnail p{
  margin: 0 14px 12px;
  padding: 0;
}

#series .thumbnail p:last-of-type{
  margin-top: auto;          /* pushes the button to the bottom */
  padding-top: 10px;
}
/* Make secondary sections less beige / less contrasty */
.secondary-section{
  background: #1b1e21;   /* or #181A1C to match your primary */
}
.secondary-section .title{
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.secondary-section h1,
.secondary-section .title p{
  color: #fff;
}

/* Story page: simple bounded text blocks */
.story-card{
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 34px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.story-card h2{
  margin-top: 0;
}

.story-card p{
  padding: 0;              /* overrides your global p{padding:10px;} */
  margin: 0 0 14px;
  line-height: 1.6;
}

@media (max-width: 700px){
  .story-card{
    padding: 20px 18px;
    border-radius: 16px;
  }
}

.story-block{
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 38px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.35);
}

.story-block p{
  margin: 0 0 16px;
  padding: 0;   /* overrides theme paragraph padding */
  line-height: 1.65;
}

   .story-block{
      max-width: 760px;
      margin: 0 auto;
      padding: 32px 38px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      box-shadow: 0 16px 38px rgba(0,0,0,0.35);
    }
    .story-block p{
      margin: 0 0 16px;
      padding: 0;
      line-height: 1.65;
    }
    .story-kicker{
      margin: 0 0 10px;
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    /* Hero image + overlay (uses your existing aesthetic) */
    .hero-wrap{
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 18px 44px rgba(0,0,0,0.45);
      background: rgba(0,0,0,0.25);
		margin-top:80px;
    }
    .hero-wrap img{
      width: 100%;
      height: auto;
      display: block;
    }
    .hero-wrap:after{
      content:"";
      position:absolute;
      inset:0;
      background: radial-gradient(120% 90% at 50% 20%, rgba(0,0,0,0.10), rgba(0,0,0,0.75));
      pointer-events:none;
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      text-align:center;
      padding: 48px 18px 18px;
      z-index: 2;
    }
    .hero-inner{
      max-width: 900px;
    }
    .hero-kicker{
      margin: 0 0 10px;
      font-size: 0.9rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(254,206,26,0.95);
      text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    }
    .hero-title{
      margin: 0 0 10px;
      font-size: 3rem;
      line-height: 1.05;
      color: rgba(255,255,255,0.96);
      text-shadow: 0 2px 16px rgba(0,0,0,0.60);
    }
    .hero-sub{
      margin: 0 auto;
      max-width: 70ch;
      font-size: 1.25rem;
      line-height: 1.45;
      opacity: 0.92;
      text-shadow: 0 2px 14px rgba(0,0,0,0.60);
    }
    .hero-sub .underline{
      display:inline-block;
      border-bottom: 2px solid rgba(254,206,26,0.65);
      padding-bottom: 4px;
    }

    /* On smaller screens, tighten hero typography */
    @media (max-width: 768px){
      .hero-overlay{ padding-top: 28px; }
      .hero-title{ font-size: 2.1rem; }
      .hero-sub{ font-size: 1.05rem; }
    }

/* ===============================
   Breadcrumb styling
================================= */

.breadcrumbs {
  max-width: 1000px;
  margin: 90px auto 30px; /* space below navbar + breathing room */
  padding: 0 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li + li::before {
  content: "›";
  margin: 0 8px;
  opacity: 0.6;
}

.breadcrumb-list a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: opacity 120ms ease;
}

.breadcrumb-list a:hover {
  opacity: 1;
}

.breadcrumb-list [aria-current="page"] {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

/* Don't force the navbar nav to a fixed container width */
@media (min-width: 1200px){
  .navbar-fixed-top .nav-collapse .nav{
    width: auto !important;
  }
}

/* ============================
   NAV ACTIVE / OPEN (Bootstrap 2)
   Put at very end of stylesheet
   ============================ */

/* Active top-level item (works for normal LI and dropdown LI) */
#top-navigation > li.active > a,
#top-navigation > li.active > a:hover,
#top-navigation > li.active > a:focus{
  border-color: rgba(92,196,210,0.90);
 background-color: rgba(14,43,51,0.75);
  background-image: none;
  filter: none;
  box-shadow: none;
  color: #fff;
}

/* Dropdown open state (when menu is expanded) */
#top-navigation > li.open > a,
#top-navigation > li.open > a:hover,
#top-navigation > li.open > a:focus{
  border-color: rgba(92,196,210,0.90);
  background-color: rgba(14,43,51,0.75);
  background-image: none;
  filter: none;
  box-shadow: none;
  color: #fff;
}

/* Optional: keep caret visible in active/open */
#top-navigation > li.active > a .caret,
#top-navigation > li.open > a .caret{
  border-top-color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.65);
}

/* --- Fix mobile toggle click blocking (Bootstrap 2) --- */

/* When collapsed, nav should not overlay the toggle */
@media (max-width: 979px){
  .nav-collapse.collapse{
    display: none;              /* critical */
  }
  .nav-collapse.collapse.in{
    display: block;             /* show when expanded */
  }

  /* Ensure the toggle is on top and tappable */
  .navbar .btn-navbar{
    position: relative;
    z-index: 1001;
  }

  /* If anything still overlaps, keep collapse area below */
  .navbar .nav-collapse{
    position: relative;
    z-index: 1000;
  }
}