/* ============================================================
   CreativeTeknos, LLC — Main Stylesheet
   Author: Danielle Keeling
   ============================================================ */


/* ── Base ───────────────────────────────────────────────────── */

body {
  font: 400 15px Lato, sans-serif;
  line-height: 1.8;
  color: #818181;
  background-color: #000;
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
  color: #303030;
  font-weight: 600;
  margin-bottom: 30px;
}

h4 {
  font-size: 19px;
  line-height: 1.375em;
  color: #303030;
  font-weight: 400;
  margin-bottom: 30px;
}

hr {
  display: block;
  border-style: inset;
  border-width: 1px;
  color: #fff;
  margin: 25px 25px 0 0;
  width: 80%;
}

figure {
  padding: 4px;
  margin: auto;
}

figcaption {
  background-color: transparent;
  color: #fff;
  padding: 2px 0 0 10px;
  text-align: left;
  text-transform: uppercase;
  font-size: 20px;
}


/* ── Layout Utilities ───────────────────────────────────────── */

.col-sm-4 {
  text-align: center;
  margin: 25px 0;
}

.btn-lg {
  width: 100%;
  margin-bottom: 35px;
}

.slideanim {
  visibility: hidden;
}

.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slide {
  0%   { opacity: 0; transform: translateY(70%); }
  100% { opacity: 1; transform: translateY(0); }
}

@-webkit-keyframes slide {
  0%   { opacity: 0; -webkit-transform: translateY(70%); }
  100% { opacity: 1; -webkit-transform: translateY(0); }
}


/* ── Navbar ─────────────────────────────────────────────────── */

.navbar {
  margin-bottom: 0;
  background-color: #000;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  line-height: 1.42857143 !important;
  letter-spacing: 4px;
  border-radius: 0;
  font-family: Montserrat, sans-serif;
  text-transform: capitalize;
}

.navbar li a,
.navbar .navbar-brand {
  color: #fff !important;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
  color: #549CD1 !important;
  background-color: transparent !important;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
  color: #fff !important;
}


/* ── Jumbotron / Hero ───────────────────────────────────────── */

.jumbotron {
  position: relative;
  background-image: url(../img/story.jpg);
  background-size: cover;
  background-position: center;
  text-transform: uppercase;
  color: #fff;
  font-family: Montserrat, sans-serif;
  padding: 120px 0 140px;
  text-align: center;
  overflow: hidden;
}

.jumbotron::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.10) 50%,
    rgba(0, 0, 0, 0.50) 100%
  );
}

.jumbotron h1 {
  position: relative;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
  margin-bottom: 28px;
}

.jumbotron-button {
  position: relative;
  display: inline-block;
  background: transparent;
  border: 1.5px solid #C9A84C;
  color: #C9A84C;
  padding: 12px 40px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.jumbotron-button:hover {
  background: #C9A84C;
  color: #000;
  text-decoration: none;
}


/* ── Ribbon Animation (Home page) ───────────────────────────── */

.ribbon-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  height: 90px;
  display: flex;
  align-items: center;
}

.ribbon-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
}

.ribbon-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(84, 156, 209, 0.18) 20%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(84, 156, 209, 0.18) 80%,
    transparent 100%
  );
  border-top: 1px solid rgba(84, 156, 209, 0.5);
  border-bottom: 1px solid rgba(84, 156, 209, 0.5);
}

.ribbon-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25) 40%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.25) 60%,
    transparent
  );
  animation: ribbonMove 4s ease-in-out infinite;
}

.gold-orb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffe08a, #C9A84C 60%, #8a5e1a);
  box-shadow: 0 0 18px 6px rgba(201, 168, 76, 0.55), 0 0 40px 10px rgba(201, 168, 76, 0.2);
  animation: goldOrb 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes ribbonMove {
  0%   { left: -10%; }
  50%  { left: 90%;  }
  100% { left: -10%; }
}

@keyframes goldOrb {
  0%   { left: 2%;  }
  50%  { left: 93%; }
  100% { left: 2%;  }
}


/* ── New Release CTA Banner ─────────────────────────────────── */

.new-release {
  background: #040d1a;
  border-top: 1px solid rgba(84, 156, 209, 0.25);
  border-bottom: 1px solid rgba(84, 156, 209, 0.25);
  padding: 52px 50px;
  text-align: center;
}

.new-release-label {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #549CD1;
  margin-bottom: 14px;
}

.new-release h2 {
  font-family: Montserrat, sans-serif;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  color: #C9A84C;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.new-release-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.new-release-btn {
  display: inline-block;
  background: #549CD1;
  color: #fff;
  border: none;
  padding: 14px 44px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.new-release-btn:hover {
  background: #61b3f0;
  color: #fff;
  text-decoration: none;
}


/* ── Welcome / Services Section (Home page) ─────────────────── */

.welcome-section {
  background: #000;
  padding: 70px 50px;
}

.welcome-intro {
  text-align: center;
  margin-bottom: 56px;
}

.welcome-intro h2 {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #549CD1;
  margin-bottom: 20px;
}

.welcome-intro p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(84, 156, 209, 0.15);
  border: 1px solid rgba(84, 156, 209, 0.15);
}

.service-card {
  background: #000;
  padding: 40px 30px;
  position: relative;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 22px;
}

.service-card:hover {
  background: #060f1e;
}

.service-card h4 {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}


/* ── Testimonials Section (Home page) ───────────────────────── */

.testimonials-section {
  background: #06101f;
  padding: 70px 50px;
  border-top: 1px solid rgba(84, 156, 209, 0.15);
}

.testimonials-section > h2 {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #549CD1;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(84, 156, 209, 0.12);
}

.testimonial-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonial-quote {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #C9A84C;
}

.testimonial-quote p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-style: italic;
}

.testimonial-person {
  text-align: center;
  flex-shrink: 0;
}

.testimonial-person img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #549CD1;
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
}

.testimonial-person figcaption {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}


/* ── About / Story Page ─────────────────────────────────────── */

.about-hero {
  position: relative;
  background-image: url(../img/story.jpg);
  background-size: cover;
  background-position: center top;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 60px 60px;
  max-width: 800px;
}

.about-eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 14px;
}

.about-hero-content h1 {
  font-family: Montserrat, sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.about-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
}

.about-intro {
  background: #000;
  padding: 70px 60px;
  border-bottom: 1px solid rgba(84, 156, 209, 0.12);
}

.about-intro-label {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #549CD1;
  margin-bottom: 28px;
}

.about-intro-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  max-width: 780px;
  margin-bottom: 20px;
}

.about-pillars {
  background: #06101f;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(84, 156, 209, 0.15);
  border-bottom: 1px solid rgba(84, 156, 209, 0.15);
}

.about-pillar {
  background: #06101f;
  padding: 40px 40px 40px 0;
}

.about-pillar:not(:last-child) {
  border-right: 1px solid rgba(84, 156, 209, 0.1);
  padding-right: 50px;
}

.about-pillar + .about-pillar {
  padding-left: 50px;
}

.pillar-num {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #C9A84C;
  display: block;
  margin-bottom: 16px;
}

.about-pillar h3 {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.about-pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
}

.about-cards-section {
  background: #000;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(84, 156, 209, 0.12);
}

.about-card {
  border: 1px solid rgba(84, 156, 209, 0.15);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.about-card:hover {
  border-color: rgba(84, 156, 209, 0.45);
}

.about-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.about-card:hover img {
  opacity: 1;
}

.about-card-body {
  padding: 28px 24px 32px;
}

.about-card-body::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 18px;
}

.about-card-body h4 {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.about-card-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}


/* ── Blog Listing Page ──────────────────────────────────────── */

.blog-hero {
  background: #000;
  border-bottom: 1px solid rgba(84, 156, 209, 0.2);
  padding: 80px 50px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(84, 156, 209, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 18px;
}

.blog-hero h1 {
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 16px;
}

.blog-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-style: italic;
}

.blog-body {
  background: #050d18;
  padding: 60px 50px 80px;
  min-height: 60vh;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.no-posts {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
  letter-spacing: 1px;
}


/* ── Blog Post Cards ────────────────────────────────────────── */

.post-card {
  background: #000;
  border: 1px solid rgba(84, 156, 209, 0.15);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
}

.post-card:hover {
  border-color: rgba(84, 156, 209, 0.5);
  transform: translateY(-3px);
  text-decoration: none;
}

.post-card-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #06101f;
}

.post-card-thumb-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #040d1a 0%, #0a1f35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.post-card-thumb-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(84, 156, 209, 0.04) 18px,
    rgba(84, 156, 209, 0.04) 19px
  );
}

.post-card-thumb-placeholder span {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(84, 156, 209, 0.4);
  position: relative;
  z-index: 1;
}

.post-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-date {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.post-card-title {
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 14px;
  text-decoration: none;
}

.post-card:hover .post-card-title {
  color: #549CD1;
}

.post-card-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.post-card-link {
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #549CD1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.post-card:hover .post-card-link {
  gap: 10px;
}


/* ── Blog Post Page ─────────────────────────────────────────── */

.post-hero {
  position: relative;
  background: #000;
  overflow: hidden;
}

.post-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  opacity: 0.75;
}

.post-featured-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #040d1a 0%, #0a1f35 60%, #040d1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.post-featured-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 22px,
    rgba(84, 156, 209, 0.05) 22px,
    rgba(84, 156, 209, 0.05) 23px
  );
}

.post-featured-placeholder::after {
  content: 'CreativeTeknos';
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(84, 156, 209, 0.3);
  position: relative;
  z-index: 1;
}

.post-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.post-hero-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 60px 40px;
}

.post-hero-eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
  display: block;
}

.post-hero-title {
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  max-width: 760px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.post-header-noimg {
  background: #000;
  border-bottom: 1px solid rgba(84, 156, 209, 0.2);
  padding: 60px 60px 40px;
}

.post-body {
  background: #050d18;
  padding: 60px 60px 80px;
}

.post-body-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-content {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.post-content h3,
.post-content h4 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #549CD1;
  margin: 40px 0 16px;
}

.post-content h3 { font-size: 18px; }
.post-content h4 { font-size: 15px; }

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.post-content li {
  margin-bottom: 8px;
}

.post-content a {
  color: #549CD1;
}

.post-content strong {
  color: #fff;
  font-weight: 600;
}

.back-link {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #549CD1;
  text-decoration: none;
  margin-top: 52px;
  border-top: 1px solid rgba(84, 156, 209, 0.15);
  padding-top: 28px;
}

.back-link:hover {
  color: #C9A84C;
  text-decoration: none;
}


/* ── Contact ────────────────────────────────────────────────── */

.contact-container {
  padding: 20px 70px;
}

.contact-container h2 {
  color: #549CD1;
  font-size: 36px;
}

.contact-container p {
  color: #fff;
}


/* ── Forms / Alerts ─────────────────────────────────────────── */

.message {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  color: #3c763d;
  background: #000;
  border: 1px solid #3c763d;
  border-radius: 5px;
  text-align: center;
}

.error {
  color: #a94442;
  background: #000;
  border: 1px solid #a94442;
  margin-bottom: 20px;
}

.validation_errors p {
  text-align: left;
  margin-left: 10px;
}

.logged_in_info {
  text-align: right;
  padding: 10px;
}


/* ── Panels ─────────────────────────────────────────────────── */

.panel {
  border: 1px solid #f4511e;
  border-radius: 0 !important;
  transition: box-shadow 0.5s;
}

.panel:hover {
  box-shadow: 5px 0 40px rgba(0, 0, 0, 0.2);
}

.panel-heading {
  color: #fff !important;
  background-color: #f4511e !important;
  padding: 25px;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}

.panel-footer {
  background-color: #fff !important;
}

.panel-footer h3 {
  font-size: 32px;
}

.panel-footer h4 {
  color: #aaa;
  font-size: 14px;
}

.panel-footer .btn {
  margin: 15px 0;
  background-color: #f4511e;
  color: #fff;
}

.panel-footer .btn:hover {
  border: 1px solid #f4511e;
  background-color: #fff !important;
  color: #f4511e;
}


/* ── Carousel ───────────────────────────────────────────────── */

.carousel-control.right,
.carousel-control.left {
  background-image: none;
  color: #f4511e;
}

.carousel-indicators li {
  border-color: #f4511e;
}

.carousel-indicators li.active {
  background-color: #f4511e;
}

.item h4 {
  font-size: 19px;
  line-height: 1.375em;
  font-weight: 400;
  font-style: italic;
  margin: 70px 0;
}

.item span {
  font-style: normal;
}


/* ── Thumbnails ─────────────────────────────────────────────── */

.thumbnail {
  padding: 0 0 15px 0;
  border: none;
  border-radius: 0;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}


/* ── Timeline ───────────────────────────────────────────────── */

.timeline::after {
  left: 31px;
}

.timeline-container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
}

.timeline-container::before {
  left: 60px;
  border: medium solid #fff;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.timeline-left::after,
.timeline-right::after {
  left: 15px;
}

.timeline-right {
  left: 0;
}


/* ── Footer ─────────────────────────────────────────────────── */

.footer {
  padding: 20px 0;
  color: #fff;
}

.footer hr {
  display: block;
  border-style: inset;
  border-width: 1px;
  color: #fff;
  margin: 0 0 20px;
  width: 100%;
}

.footer-column {
  padding: 10px 50px;
  text-align: left;
  font-size: 14px;
  float: left;
  width: 33%;
}

.footer-column h4 {
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
  color: #549CD1;
}

.footer-column p {
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #fff;
}

.footer-column a {
  padding: 0;
  color: #fff;
}

.footer-row:after {
  content: "";
  display: table;
  clear: both;
}

.footer-cred {
  padding: 20px 0 10px;
  text-align: center;
}

footer .glyphicon {
  font-size: 20px;
  margin-bottom: 20px;
  color: #549CD1;
}


/* ── Responsive — max-width: 900px ─────────────────────────── */

@media screen and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-cards-section {
    grid-template-columns: 1fr;
  }

  .about-pillar:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(84, 156, 209, 0.1);
    padding-right: 0;
    padding-bottom: 40px;
  }

  .about-pillar + .about-pillar {
    padding-left: 0;
  }
}


/* ── Responsive — max-width: 768px ─────────────────────────── */

@media screen and (max-width: 768px) {
  .footer-column {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .jumbotron {
    padding: 80px 20px 100px;
  }

  .jumbotron h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .about-hero-content {
    padding: 0 20px 40px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-intro,
  .about-pillars,
  .about-cards-section {
    padding: 50px 20px;
  }

  .blog-hero {
    padding: 60px 20px 40px;
  }

  .blog-hero h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .blog-body {
    padding: 40px 16px 60px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-hero-meta {
    padding: 0 20px 30px;
  }

  .post-hero-title {
    font-size: 24px;
  }

  .post-header-noimg {
    padding: 40px 20px 30px;
  }

  .post-body {
    padding: 40px 20px 60px;
  }

  .testimonial-item {
    grid-template-columns: 1fr;
  }

  .new-release {
    padding: 40px 20px;
  }
}


/* ── Responsive — max-width: 600px ─────────────────────────── */

@media screen and (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 300px;
  }
}
