@charset "utf-8";

/* Existing styles from earlier (preserved)... */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f4f4f4;
  line-height: 1.6;
}

  body.blog_post .blog-content p {
    margin: 0 !important;
    line-height: 1.5 !important;
  }
  
  body.blog_post p + p {
  margin-top: 0.2em !important;
}


.logo {
  height: 60px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo & Header */
.main-header {
  background-color: #ffffff;
  border-bottom: 2px solid #9A2629;
  position: sticky;
  top: 0;
  z-index: 999;
}



/* --- NAVIGATION STYLES --- */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo {
  height: 60px;
}

.hamburger {
  display: none;
  font-size: 3.6rem; /* Larger icon */
  cursor: pointer;
  color: #9A2629;
  padding: 5px 10px;
  line-height: 1;
}

/* Main Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-menu li {
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

/* Hover effect (but NOT on active) */
.nav-menu li a:hover:not(.active) {
  background-color: #9A2629;
  color: #fff;
}

.nav-menu li a.active {
  color: #9A2629;
  font-weight: bold;
  background-color: transparent;
}

/* --- Mobile & Tablet (including iPad landscape) --- */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    font-size: 3.6rem;
    padding: 5px 10px;
    line-height: 1;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #fdf4f4; /* Soft ETA red background */
    padding: 10px 20px;
    border-top: 1px solid #e2d4d4;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s ease;
  }

  .nav-menu li a {
    color: #9A2629;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.2s ease;
  }

  .nav-menu li a:hover {
    background-color: #9A2629;
    color: #fff;
  }

  .nav-menu.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hamburger {
    font-size: 1.8rem;
    padding: 5px 8px;
  }
}

.email-icon img {
  vertical-align: middle;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 10px 20px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex-direction: row; /* Ensure desktop default */
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse !important; /* Force it */
  }
}



.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #9A2629;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}





.cta-button {
  display: inline-block;
  background-color: #9A2629;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #7c1d22;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  flex: 1;
}

/* Info Strip */
.info-strip {
  background-color: #eaeaea;
  padding: 10px 20px;
  text-align: center;
}

.info-strip h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #9A2629;
}

/* Split Section */
.split-section {
  background-color: white;
  padding: 10px 20px;
}

.split-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
}

.split-text {
  flex: 1;
}

.split-text h3 {
  font-size: 1.8rem;
  color: #9A2629;
  margin-bottom: 15px;
}

.split-text ul {
  list-style: none;
  padding-left: 0;
}

.split-text li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  font-size: 1.05rem;
}

.split-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Footer */
.site-footer {
  background-color: #9A2629;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
}

.site-footer-extended .container {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col-wide {
  flex: 2;
}


.site-footer a.footer-link:hover {
  text-decoration: underline;
}



/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-content,
  .split-container {
    flex-direction: column;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .logo {
    height: 50px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}


/* --- FACT Slabs (side-by-side on desktop, stacked on mobile) --- */
.fact-section {
  background-color: #ffffff;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .fact-section {
    padding: 0 10px;
  }

  .fact-cards {
    flex-direction: column;
    gap: 20px;
  }

  .fact-card {
    min-width: 0;         /* ← override the 280px min-width */
    width: 100%;          /* ← make it fill the container */
    padding: 15px;        /* ← slightly smaller padding on mobile */
  }
}

.fact-section h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #9A2629;
}

.columns-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.columns-3 ul {
  flex: 1;
  min-width: 260px;
  background-color: #f1f1f1;
  border-left: 6px solid #9A2629;
  padding: 20px;
  border-radius: 6px;
  list-style: none;
}

.columns-3 li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.columns-3 li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Highlight band for feature sections */
.highlight-band {
  background-color: #fff8f7;
  border-top: 6px solid #9A2629;
  padding: 10px 20px;
  text-align: center;
}

.highlight-band h2 {
  color: #9A2629;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Alternate band */
.alt-band {
  background-color: #f7f7f7;
  border-top: 6px solid #9A2629;
  padding: 10px 20px;
  text-align: center;
}

.alt-band h3 {
  color: #9A2629;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* --- Sticky Email Icon (Mobile and Desktop) --- */
.sticky-email {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .sticky-email {
    right: 5px; /* move closer to right edge */
    bottom: 15px; /* optional: adjust bottom too */
  }
}


.sticky-email img {
  height: 60px;
  width: auto;
  transition: transform 0.2s ease;
}

.sticky-email img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .columns-3 {
    flex-direction: column;
  }
}


/* --- Updated FACT Card Style --- */
.fact-section {
  background-color: #ffffff;
  padding: 0px 20px;
}

.fact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #9A2629;
}

.fact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.fact-card {
  flex: 1;
  min-width: 280px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fact-card-header {
  background-color: #9A2629;
  color: white;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.fact-card-body {
  padding: 20px;
  
}

.fact-card-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.fact-card-body li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  list-style: none;
}

.fact-card-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Buttons */
.cta-inline-button {
  display: inline-block;
  background-color: #9A2629;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-inline-button:hover {
  background-color: #7c1d22;
}

/* Mobile Stacking */
@media (max-width: 768px) {
  .fact-cards {
    flex-direction: column;
  }
}

/* --- Why Us Card --- */
.why-us-card {
  background-color: #ffffff;
 padding: 20px 10; /* Reduced from 40-60px */
}


.card-text-block {
  border-left: 10px solid #9A2629;
  border-right: 10px solid #9A2629;
  background-color: #f9f9f9;
  padding: 15px; /* Reduced from 30px */
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.card-text-block h2 {
  margin-bottom: 8px; /* Reduce spacing */
  font-size: 1.6rem; /* Slightly smaller heading */
  color: #9A2629;
  text-align: left;
}


.card-text-block p {
  margin-bottom: 8px; /* Tighter paragraph spacing */
  font-size: 1rem;
  color: #333;
  text-align: left;
}


/* Ensure the FACT card headers have a visible top band in #9A2629 */
.fact-card {
  border-top: 10px solid #9A2629;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  
}

.fact-card-header {
  background-color: #9A2629;
  color: #ffffff;
  padding: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}



/* Restore soft red background for FACT card body */
.fact-card-body {
  background-color: #fff9db;
  padding: 20px;
}

.fact-card-body p,
.fact-card-body ul {
  color: #333;
}

/* --- Updated FACT Card Style --- */

.fact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #9A2629;
}

.fact-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  justify-content: space-between;
  
}

.fact-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  padding:20px;
}

.fact-card-header {
  background-color: #9A2629;
  color: white;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.fact-card-body {
  background-color: #f9f9f9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.fact-card-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.fact-card-body li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  list-style: none;
}

.fact-card-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* FACT 1 tweaks */
.fact1-body {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FACT 2 tweaks */
.fact2-body {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FACT 3 tweaks */
.fact3-body {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


@media (max-width: 768px) {
  .fact1-body,
  .fact2-body,
  .fact3-body {
    min-height: auto;
  }
}

/* Fix for ticks inside fact1, fact2, fact3 custom body wrappers */
/* Fix for ticks inside fact1, fact2, fact3 custom body wrappers */
.fact1-body li,
.fact2-body li,
.fact3-body li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  list-style: none;
}

.fact1-body li::before,
.fact2-body li::before,
.fact3-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}


.fact-section .cta-button:last-of-type {
  margin-bottom: 40px;
}

.site-footer-extended {
  background-color: #9A2629;
  color: white;
  padding: 40px 20px;
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}



.footer-col h4 {
  font-size: 1.1rem;
  color: #fff3b0;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a.footer-link:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
}
.footer-col-wide a {
  font-weight: bold;
  color: #fff3b0;
}

.footer-col-wide a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fact-section,
  .site-footer-extended {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .fact-cards {
    padding: 0 10px; /* Ensures it doesn't overflow */
  }

  .fact-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-columns {
    padding: 0 10px;
  }
}


.phone-link {
  display: inline;
  text-decoration: none;
  font-weight: bold;
  color: #fff3b0;
}

.phone-link .no-underline {
  text-decoration: none;
}

.phone-link .number-only {
  text-decoration: none;
  transition: border-bottom 0.2s ease;
  color:#fff3b0;
}

/* 👇 ONLY underline number on HOVER */
.number-only:hover {
  border-bottom: 2px solid #fff3b0;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: none; /* override the global footer hover */
}



.client-card img {
  max-width: 100%;
  height: auto;
}

.client-card .wrap-col {
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.client-card .link {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
}

.client-card .link:hover {
  text-decoration: underline;
}

.client-section {
  padding: 40px 20px;
  background-color: #fff;
}

.client-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.client-column {
  flex: 1;
  min-width: 300px;
}


.client-card {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  border-left: 6px solid #9A2629;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.client-list-section::after {
  content: "";
  display: table;
  clear: both;
}

.client-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.client-card h3 {
  margin: 10px 0 5px;
  color: #9A2629;
}

.client-card a {
  color: #9A2629;
  font-weight: bold;
  text-decoration: none;
}

.client-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .client-columns {
    flex-direction: column;
  }

  .client-card {
    flex: 1 1 100%;
  }
}
.client-list-section {
  padding: 40px 20px;
  background-color: #fff;
}

.client-card {
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  background-color: #f9f9f9;
}

.client-type {
  font-size: 0.85rem;
  font-weight: bold;
  padding: 6px 15px;
  color: white;
}

.client-card.training .client-type {
  background-color: #9A2629;
}

.client-card.programming .client-type {
  background-color: #555E7B;
}

.client-card-content {
  display: flex;
  gap: 20px;
  padding: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.client-card-content img {
  width: 120px;
  height: auto;
  border-radius: 4px;
}

.client-card-content h3 {
  margin: 0 0 8px;
  color: #9A2629;
}

.client-card-content p {
  margin: 0 0 8px;
}

.client-card-content a {
  color: #9A2629;
  font-weight: bold;
  text-decoration: none;
}

.client-card-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .client-card-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-card-content img {
    width: 100%;
    max-width: 200px;
  }
}

.client-tile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

.client-tile {
  width: 200px;
  height: 220px;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.client-tile:hover {
  transform: scale(1.03);
}

/* Labels */
.client-label {
  background-color: #9A2629;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 0;
}

.client-tile.programming .client-label {
  background-color: #555E7B;
}

.client-image {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}

.client-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Overlay on hover */
.client-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(154, 38, 41, 0.95);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.client-tile.programming .client-overlay {
  background-color: rgba(85, 94, 123, 0.95);
}

.client-tile:hover .client-overlay {
  opacity: 1;
}

.client-overlay a {
  color: #fff3b0;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: underline;
}

.mobile-hint {
  display: none;
  text-align: center;
  padding: 10px 20px;
  background-color: #fff3b0;
  color: #9A2629;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .mobile-hint {
    display: block;
  }
}
/* === ABOUT SECTION === */
.about-section {
  padding: 40px 20px;
  background: #ffffff;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro h2 {
  color: #9A2629;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.about-intro p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-section a {
  position: relative;
  color: #9A2629;
  font-weight: bold;
  text-decoration: none;
}

.about-section a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #9A2629;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.about-section a:hover::after {
  transform: scaleX(1);
}



.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: space-between;
}

.milestone {
  flex: 1;
  min-width: 250px;
  background-color: #f9f9f9;
  border-left: 6px solid #9A2629;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.milestone .circle {
  background-color: #9A2629;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Testimonials */

.testimonials-marquee {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.testimonials-marquee h2 {
  color: #9A2629;
  font-size: 2rem;
  margin-bottom: 30px;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 200px; /* You can remove this if it causes issues */
  overflow: hidden;
  transition: height 0.3s ease;
}


.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  padding: 20px;
  background-color: white;
  border-left: 6px solid #9A2629;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  box-sizing: border-box;
  pointer-events: none;
  z-index: 0;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.testimonial-slide blockquote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
}

.testimonial-slide p {
  font-weight: bold;
  margin: 0;
}

.expansion-links ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.expansion-links ul li {
  margin-bottom: 8px;
}

.expansion-links a {
  color: #9A2629;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.expansion-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #9A2629;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.expansion-links a:hover::after {
  transform: scaleX(1);
}

.highlight-link {
  color: #9A2629;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.highlight-link:hover {
  color: #7c1d22;
  text-decoration: none;
}

.programming-body {
  /*background-color: #f9f9f9;*/
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.programming-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.programming-body li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  list-style: none;
}

.programming-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}


/* Blog Container */
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* Blog Article Summary */
/* Blog Container */
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

/* Blog Summary */
.blog-summary {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

/* Blog Titles */
.blog-summary h3 {
  font-size: 1.6em;
  margin-bottom: 8px;
  color: #880000; /* ETA red tone */
}

.blog-summary h3 a {
  text-decoration: none;
  color: #880000;
}

.blog-summary h3 a:hover {
  text-decoration: underline;
  color: #aa0000;
}

/* Date Styling */
.blog-date {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 10px;
}

/* Read More Button */
.read-more {
  display: inline-block;
  margin-top: 10px;
  background-color: #880000; /* ETA red */
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95em;
}

.read-more:hover {
  background-color: #aa0000;
}

/* Single Post Body */
.blog-content {
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 20px;
  color: #222;
}

/* Page Heading */
.blog-container h1 {
  font-size: 2em;
  color: #880000;
  margin-bottom: 10px;
}
.blog-container hr {
  margin: 40px 0 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.blog-container h2 {
  font-size: 1.4em;
  margin-bottom: 20px;
  color: #880000;
}

.blog-container ol,
.blog-container ul {
  padding-left: 20px;
  margin-left: 0;
}

.blog-feature-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 6px;
}

/*.blog-feature-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 6px;
}*/

.blog-thumbnail {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 4px;
}


.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.modal-header {
  background-color: #9A2629;
  color: white;
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  font-size: 1rem;
  line-height: 1.6;
  padding: 25px;
  color: #333;
}



#remote-benefits {
  background-color: #f8f9fa;
  padding: 60px 0;
}



.remote-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 transparent;
}

.remote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #9A2629;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.remote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(154, 38, 41, 0.15);
}

.remote-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.remote-card:hover img {
  transform: scale(1.1);
}

.remote-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #9A2629;
}


.remote-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  color: #9A2629;
  text-decoration: underline;
}


.remote-card a:hover {
  text-decoration: underline;
}

.remote-card {
  color: #9A2629;
}

#remote-benefits h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

h2.text-center.mb-5 {
  color: #9A2629 !important;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


.nav-tabs .nav-link {
  color: #9A2629;
}

.nav-tabs .dropdown-menu .dropdown-item {
  color: #9A2629;
}
.nav-tabs .dropdown-menu .dropdown-item:hover {
  background-color:  #f8d7da;
}

.nav-tabs .dropdown-menu .dropdown-item.active {
  background-color: #9A2629 !important;
  color: #ffffff !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background-color: #9A2629 !important;
  color: #ffffff !important;
}


.nav-tabs .nav-link:hover {
  color: #9A2629;
  /*font-weight: bold;*/
}

h2.text-center {
  color: #9A2629;
}
#courseSelector {
  border: 2px solid #9A2629;
  color: #9A2629;
  font-weight: bold;
}
#courseSelector option {
  color: #9A2629;
}


.faq-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 8px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.faq-button {
  background-color: #f7f7f7;
  color: #333;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
}

.faq-button:hover {
  background-color: #e1e1e1;
}

.faq-button::after {
  content: '\002B'; /* plus sign */
  float: right;
  font-weight: bold;
}

.faq-button.active::after {
  content: "\2212"; /* minus sign */
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  font-size: 16px;
  background-color: #fff;
}


