/*
  File: styles.css
  Description: Cleaned & optimized CSS for Blalock Business Services, BBS IT Consulting Services
  Author: Pro Image Websites
*/


/* === Fonts === */
body {
    font-family: "Poppins", Arial, sans-serif;
}
h1 {
  color: #FFF;
  font-weight: bold;
}
h2, h3, h5, h6 {
  color: #003551;
  font-weight: bold;
}
/* === GLOBAL H2 STYLING === */
h2 {
  font-size: 2.5rem;       /* increased size */
  line-height: 1.2;        /* tighter vertical rhythm */
  letter-spacing: -0.01em; /* reduced spacing for modern look */
  font-weight: 700;
}
/* === H2 ACCENT COLOR === */
.h2-accent {
  color: #006689; /* approved light blue */
  font-weight: 700; /* keep visual weight consistent */
}
/* === ORANGE ACCENT H3 === */

.h3-hero {
  font-size: 1.60rem;
  line-height: 1.25;
  font-weight: 400;           /* regular */
  letter-spacing: -0.02em;
  color: #F0673E;
}

.h3-accent {
  font-size: 2.0rem;
  line-height: 1.25;
  font-weight: 400;           /* regular */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #F0673E;
}

h4 {
	color:#006689;
	text-transform: capitalize;
}

/* === Icons === */
/* Generated filter to turn black SVG to #F0673E */
.icon-orange {
    filter: invert(53%) sepia(63%) saturate(3065%) hue-rotate(338deg) brightness(96%) contrast(94%);
}

/* === Hero Section === */
@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* === Hero Text Micro Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animate headline (h1) */
.hero-section h1 {
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0; /* ensures it starts invisible */
}

/* === Typography Adjustments === */
strong {
  font-weight: 600;
}

/* === FILE TAB STYLE (Moved from index.html) === */
.file-tab {
  position: absolute;
  left: 1rem;
  top: -2.35rem;
  background: #fff;
  border-top: 2px solid #003551;
  border-left: 2px solid #003551;
  border-right: 2px solid #003551;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 4px 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* === TAB ICON COLOR (Standard Blue/Grey Filter) === */
.file-tab img {
  width: 28px;
  height: 28px;
  filter: invert(48%) sepia(86%) saturate(2678%) hue-rotate(347deg)
    brightness(98%) contrast(96%);
}

/* === CARD STYLES & HOVER EFFECTS === */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #f0673e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card:hover .file-tab {
  box-shadow: 0 0 8px rgba(240, 103, 62, 0.5);
  transform: translateY(-2px);
}
/* === HIPAA COMPLIANCE SECTION === */
.hipaa-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 20px; /* ample spacing top & bottom */
  background: #ffffff;
}

.hipaa-inner {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hipaa-shield {
  width: 160px;
  height: auto;
  margin-bottom: 32px;
}

.hipaa-title {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 700; /* forced bold */
  color: #003551;
}
/* demo */
/* === NAVIGATION CTA === */ 

.nav-cta { 
	display: inline-flex;
} 
.nav-cta { 
	align-items: center;
}