/* Base styles for the website */
:root {
    --primary-color: #003655;
    --secondary-color: #FF9933;
    --neutral-light: #f9f9f9;
    --neutral-medium: #c2d6e3;
    --neutral-dark: #333;

    /* Screen sizes */
    --mobile: 576px;
    --tablet: 768px;
  }

.bg-primary {
    background-color: var(--primary-color) !important;
}


.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}



.transform-banner {
  background-color: #04364A;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.image-stack {
  position: relative;
  width: 600px;
  height: 300px;
}

.image-stack img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 1.5s ease-in-out;
}

.image-top {
  z-index: 2;
  opacity: 1;
}

.image-top.fade-out {
  opacity: 0;
}

/* Blog Section Styles */
.blog-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.coming-soon-container {
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.coming-soon-container h3 {
    color: #0d6efd;
    margin-bottom: 20px;
}

.blog-placeholder {
    font-size: 48px;
    color: #0d6efd;
    margin-top: 30px;
}

.blog-placeholder i {
    opacity: 0.7;
}


