/* Sticky Footer Layout */
html {
  height: 100%;
}

body {
 display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #1ca2e3;
  color: #333;
}



main {
   flex: 1 0 auto;
}

h1, h2, h3 {
  color: #EDEDED; /* your orange button hex */
}

.footer {
  flex-shrink: 0;
  width: 100%;
  background-color: #212529;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.section:last-of-type {
  margin-bottom: 0 !important;
}

footer.footer {
  flex-shrink: 0;
  /* your footer styles */
  background-color: #A3A09C;
}

/* Navbar */
.navbar {
  background-color: #2c3e50;
}
.navbar-brand,
.navbar-brand span {
  color: #f39c12 !important;
}
.navbar-brand:hover,
.navbar-brand:focus {
  color: #e67e22 !important;
}

/* Sections */
.section-light {
  background-color: #fefefe;
  color: #333;
}
.hero {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.hero-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}


/* Cards */
.card-body {
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Buttons */
.btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
}


  .sticky-cta-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff7f00; /* vibrant orange */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .sticky-cta-btn:hover {
    background: #e06f00; /* slightly darker on hover */
    color: white;
    text-decoration: none;
  }


