/* ------------------------- */
/* Original styles.css below */
/* ------------------------- */

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    color: #313C47;
    transition: background-color 0.3s, color 0.3s;
}
  
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
  
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #025EC0;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #02BCEB;
    color: #FAFAFA;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #02BCEB;
    outline-offset: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    transition: background 0.3s;
}
  
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.nav-links {
    list-style: none;
    display: flex;
}
  
.nav-links li {
    margin: 0 15px;
}
  
.nav-links a {
    text-decoration: none;
    color: #025EC0;
    font-weight: 600;
    transition: color 0.3s;
}
  
.nav-links a:hover {
    color: #02BCEB;
}
  
section {
    scroll-margin-top: 70px; /* Adjust to your fixed header's height */
}  

/* Prevent content from being overlapped by fixed navbar */
main {
    margin-top: 70px;
}
  
/* Hero Section */
.hero {
    background: url('images/HeroBanner.jpeg') no-repeat center center/cover;
    color: white;
    text-align: left;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
  
.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 550px;
    width: 90%;
    border-radius: 8px;
    text-align: left;
}
  
.hero h2 {
    text-align: left;
    color: white;
    margin-bottom: 20px;
}
  
.hero p {
    text-align: left;
    color: white;
}
  
.hero .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #02BCEB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}
  
.hero .btn:hover {
    background: #2782EB;
}

/* Hero Buttons Container */
.hero-content .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* space between buttons */
  margin-top: 1rem;
}

/* Secondary hero button style */
.hero-content .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

/* Ensure secondary button inherits hover state */
.hero-content .btn-secondary:hover {
  background: white;
  color: #025EC0;
}


/* —— Why Precision Edge (Full-Width CTA) —— */
.full-width-section.why-edge {
   background: linear-gradient(  /* change to whatever background you need */
    135deg,
    #025EC0 0%,
    #2782EB 50%,
    #02BCEB 100%
  ); 
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.full-width-section.why-edge h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.full-width-section.why-edge p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.full-width-section.why-edge .why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.full-width-section.why-edge .why-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.full-width-section.why-edge .why-list li strong {
  display: block;
  margin-bottom: 0.25rem;
}

.full-width-section.why-edge .btn {
  background: white;          /* swap if you need inverted style */
  color: #0066cc;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
  text-decoration: none;
}

.full-width-section.why-edge .btn:hover {
  background: #005bb5;
}

.full-width-section.why-edge small {
  display: block;
  margin-top: 1rem;
  opacity: 0.9;
}

/* ── Services Section ── */
.services {
  padding: 50px 20px;
  background: #F9F9F9;
}

/* Auto-fitting responsive grid */
.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

/* Card styling */
.service-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  text-decoration: none; /* for anchor */
  color: inherit;        /* for anchor */
  cursor: pointer;       /* for anchor */
}
.service-box:hover {
  transform: translateY(-5px);
}

/* Image container keeps 16:9 aspect ratio */
.service-box .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}
.service-box .image-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Title & text */
.service-box h3 {
  margin: 15px 10px 5px;
  font-size: 1.2rem;
}
.service-box p {
  margin: 0 10px 15px;
  font-size: 0.95rem;
  line-height: 1.4;
  flex-grow: 1; /* push CTA or bottom space, if any */
}

/* Tablet: two columns */
@media (max-width: 992px) {
  .service-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Mobile: one column */
@media (max-width: 600px) {
  .service-container {
    grid-template-columns: 1fr;
  }
}


/* Get A Quote */
/* ── Full-Width Section ── */
.full-width-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: linear-gradient(  /* change to whatever background you need */
    135deg,
    #025EC0 0%,
    #2782EB 50%,
    #02BCEB 100%
  );       
  color: white;               /* adjust for contrast */
  padding: 4rem 1rem;         /* vertical + small horizontal gutter */
  text-align: center;
}

.full-width-section .container {
  max-width: 1200px;          /* match your global container */
  margin: 0 auto;
}

.full-width-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: inherit;
}

.full-width-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: inherit;
}

.full-width-section .btn {
  background: white;          /* swap if you need inverted style */
  color: #0066cc;
}

/* About Us Page */
.responsive-img {
  display: block;
  max-width: 100%;
  max-height: 350px;
  border-radius: 8px;
  padding-bottom: 10px;
}

/* About Section */
.about {
    text-align: center;
    padding: 40px 20px;
    background-color: #EBEBEB;
}
  
.about h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #025EC0;
}
  
.about p {
    max-width: 1080px;
    margin: 20px auto;
    line-height: 1.6;
    font-size: 1rem;
    color: #313C47;
}

.about-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    background: #FAFAFA;
}
  
.blog-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
  
.blog-card {
    background: white;
    padding: 20px;
    width: 45%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
  
.blog-card:hover {
    transform: translateY(-5px);
}
  
.blog-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #02BCEB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
  
.blog-card .btn:hover {
    background: #2782EB;
}

/* Contact Section */
.contact {
    padding: 5px 20px;
    margin-bottom: 20px;
    background: #FAFAFA;
    text-align: center;
}
  
.contact form {
    max-width: 400px;
    margin: auto;
}

.contact form, .contact p{
  text-align: left;
  font-size: x-small;
}
  
.contact label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
}
  
.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}
  
.contact button {
    background: #02BCEB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}
  
.contact button:hover {
    background: #2782EB;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* allow stacking on small screens */
}

.contact-form,
.contact-map {
  flex: 1 1 45%; /* each takes ~half width, can shrink a bit */
  min-width: 300px;
}

/* Make the contact section itself stand out more */
.contact {
  padding: 50px 20px;
  background: #FAFAFA;
  text-align: center;
}

.contact h2 {
  margin-bottom: 40px;
}

/* Mobile view: stack vertically */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form,
  .contact-map {
    width: 100%;
  }
}


/* Updated Footer Styles */
.footer {
    background: #313C47;
    color: white;
    padding: 40px 20px;
    text-align: left;
}
  
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
  
.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px 0;
}
  
.footer-column h3 {
    margin-bottom: 10px;
    color: #02BCEB;
}
  
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.footer-column ul li {
    margin-bottom: 8px;
}
  
.footer-column a {
    color: white;
    text-decoration: none;
    transition: text-decoration 0.3s;
}
  
.footer-column a:hover {
    text-decoration: underline;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-socials img {
  width: 40px !important;
  height: 40px !important;
}

.footer-socials img:hover {
  transform: scale(1.2);
}

.footer-bottom p{
  text-align: center;
  padding-bottom: 15px;
}
  
/* ── Base Styles ── */

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #025EC0;
  border-radius: 2px;
}

/* Nav links & dropdown container */
.nav-links {
  position: relative;
  display: flex;
  list-style: none;
}

/* Dropdown wrapper */
.nav-links .dropdown {
  position: relative;
}

/* Dropdown menu (hidden by default) */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}
.nav-links .dropdown-content li {
  list-style: none;
}
.nav-links .dropdown-content li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-links .dropdown-content li a:hover {
  background: #f0f0f0;
}

/* Footer layout base */
.footer-container {
  display: flex;
  /* other footer styles */
}

/* ── Desktop Hover (≥ 769px) ── */
@media (min-width: 769px) {
  /* Show dropdown on hover */
  .nav-links .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* ── Mobile & Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  /* Show hamburger, hide nav links by default */
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    background-color: #FAFAFA;
    padding: 10px 0;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }

  /* Navbar container layout */
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Dropdown toggle via .open */
  .nav-links .dropdown.open .dropdown-content {
    display: block;
  }

  /* Make submenu static in mobile flow */
  .nav-links .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  .nav-links .dropdown-content li a {
    padding: 0.5rem 0;
  }

  /* Footer stacks vertically */
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-column {
    margin: 15px 0;
  }
}

/* ── Extra-Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }
  .nav-links li {
    margin: 3px 0;
  }
  main {
    margin-top: 170px;
  }
}

/* ── Services Sub-Menu (Indented List) ── */
.nav-links .nav-item {
  position: relative;
}

/* always visible sub-list */
.nav-links .sub-menu {
  list-style: none;
  margin: 0.25rem 0 0;      /* small gap from “Services” */
  padding: 0 0 0 1.5rem;    /* indent */
}

/* each sub-item spacing */
.nav-links .sub-menu li {
  margin: 0.25rem 0;
}

/* links inherit nav styles, but slightly smaller */
.nav-links .sub-menu li a {
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links .sub-menu li a:hover {
  color: #025EC0;           /* your accent color on hover */
}


/* Dark Mode */
.dark-mode {
    background-color: #2B2F33;
    color: #BBBBBB;
}
  
.dark-mode .navbar {
    background: rgba(43, 47, 51, 0.9);
}
  
.dark-mode .service-box,
.dark-mode .blog-card {
    background: #313C47;
    color: #BBBBBB;
}
  
.dark-mode .footer {
    background: #2B2F33;
}
  
.dark-mode h2 {
    color: #B0C4DE;
}
  
.dark-mode .contact input,
.dark-mode .contact textarea {
    background-color: #555;
    color: #EEEEEE;
    border: 1px solid #777;
}
  
.dark-mode .about{
    background: #313C47;
    font: #BBBBBB;
}

.dark-mode .about p{
color: #EEEEEE;
}
  
.dark-mode .services,
.dark-mode .blog,
.dark-mode .contact {
    background: #2B2F33;
}
  
#dark-mode-toggle {
    background: #02BCEB;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
  
#dark-mode-toggle:hover {
    background: #2782EB;
}

/* Dark Mode adjustments for the Hamburger Dropdown */
.dark-mode .nav-links {
    background-color: #2B2F33;
}
  
.dark-mode .nav-links a {
    color: #BBBBBB;
}
  
.dark-mode .nav-links a:hover {
    color: #B0C4DE;
}

/* Updated Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAFAFA;
    color: #313C47;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 0.9rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
.cookie-banner p {
    margin: 0;
}
.cookie-banner a {
    color: #02BCEB;
    text-decoration: none;
}
.cookie-banner a:hover {
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-buttons button {
    background: #02BCEB;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-buttons button:hover {
    background: #2782EB;
}

/* Updated Cookie Settings Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FAFAFA;
    color: #313C47;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 90%;
    width: 400px;
}
.cookie-modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #025EC0;
}
.cookie-modal-content p {
    margin: 10px 0;
    font-size: 1rem;
}
.cookie-modal-content label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #313C47;
}
.cookie-modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.cookie-modal-buttons button {
    background: #02BCEB;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-modal-buttons button:hover {
    background: #2782EB;
}

/* --- Additional Styles for Legal/Informational Pages --- */
.terms,
.privacy,
.ccpa,
.gdpr,
.cookie-policy {
  padding: 40px 20px;
  background: #FAFAFA;
  color: #313C47;
  line-height: 1.6;
  margin-top: 70px;
}
.terms h2,
.privacy h2,
.ccpa h2,
.gdpr h2,
.cookie-policy h2{
  text-align: center;
  margin-bottom: 20px;
  color: #025EC0;
}
.terms h3,
.privacy h3,
.ccpa h3,
.gdpr h3,
.cookie-policy h3 {
  margin-top: 20px;
  color: #025EC0;
}
.terms p,
.privacy p,
.ccpa p,
.gdpr p,
.cookie-policy p,
.terms ul,
.privacy ul,
.ccaa ul,
.gdpr ul,
.cookie-policy ul {
  max-width: 1080px;
  margin: 10px auto;
}
/* Dark Mode Adjustments for Legal Pages */
.dark-mode .terms,
.dark-mode .privacy,
.dark-mode .ccpa,
.dark-mode .gdpr,
.dark-mode .cookie-policy {
  background: #313C47;
  color: #BBBBBB;
}
.dark-mode .terms h2,
.dark-mode .privacy h2,
.dark-mode .ccpa h2,
.dark-mode .gdpr h2,
.dark-mode .cookie-policy h2,
.dark-mode .terms h3,
.dark-mode .privacy h3,
.dark-mode .ccpa h3,
.dark-mode .gdpr h3,
.dark-mode .cookie-policy h3 {
  color: #B0C4DE;
}

/* ------------------------- */
/* Additional styles from datacleaning.html (duplicates removed) */
/* ------------------------- */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Generic anchor styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Extend container with additional padding */
.container {
    padding: 2rem 0;
}

/* Header styles */
header {
    margin-top: 80px;
    text-align: center;
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.1rem;
    color: #666;
}

/* Pricing section styles */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    flex: 1 1 300px;
    margin: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0073e6;
}

.pricing-card p.description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    margin: 0.5rem 0;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

/* Generic button styling */
.btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005bb5;
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
    .pricing {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        margin: 1rem 0;
    }
}

/*----------------------*/
/*-- CHAT BOX POP UP STYLING ---*/
/*--------------------*/

/* Chat Popup Styles */
.chat-popup {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 10000;
  }
  
  .chat-header {
    background: #02BCEB;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  
  .chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
  }
  
  .chat-input {
    padding: 10px;
    display: flex;
  }
  
  .chat-input input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .chat-input button {
    margin-left: 5px;
    padding: 5px 10px;
    background: #02BCEB;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  

  /* ------------------------- */
/* Newsletter Page Styles    */
/* ------------------------- */
.newsletter-header {
    text-align: center;
    padding: 2rem 0;
    background: #f5f5f5;
    margin-bottom: 20px;
  }
  .newsletter-header h1 {
    font-size: 2.5rem;
    color: #025EC0;
  }
  .newsletter-header p {
    font-size: 1.1rem;
    color: #313C47;
  }
  
  .newsletter-filters {
    text-align: center;
    margin-bottom: 20px;
  }
  .filter-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 15px;
  }
  .filter-list li {
    padding: 5px 10px;
    border: 1px solid #025EC0;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .filter-list li.active,
  .filter-list li:hover {
    background: #025EC0;
    color: white;
  }
  .filter-list li a {
    text-decoration: none;
    color: inherit;
  }
  
  .newsletter-articles {
    padding: 20px 0;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .news-card img {
    width: 100%;
    height: auto;
  }
  .news-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .news-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #025EC0;
  }
  .news-card-content p {
    font-size: 1rem;
    color: #313C47;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  .news-card-content .btn {
    align-self: flex-start;
  }
  
/* ------------------------- */
/* Newsletter Page Styles    */
/* ------------------------- */
.newsletter-header {
    text-align: center;
    padding: 2rem 0;
    background: #f5f5f5;
    margin-bottom: 20px;
  }
  .newsletter-header h1 {
    font-size: 2.5rem;
    color: #025EC0;
  }
  .newsletter-header p {
    font-size: 1.1rem;
    color: #313C47;
  }
  
  .newsletter-filters {
    text-align: center;
    margin-bottom: 20px;
  }
  .filter-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 15px;
  }
  .filter-list li {
    padding: 5px 10px;
    border: 1px solid #025EC0;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }
  .filter-list li.active,
  .filter-list li:hover {
    background: #025EC0;
    color: white;
  }
  .filter-list li a {
    text-decoration: none;
    color: inherit;
  }
  
  .newsletter-articles {
    padding: 20px 0;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Detailed article view */
  .news-detail {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .news-detail img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .news-detail h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #025EC0;
  }
  .news-detail .meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
  }
  .news-detail .content {
    font-size: 1rem;
    color: #313C47;
    line-height: 1.6;
  }
  .news-detail .btn {
    margin-top: 20px;
    display: inline-block;
  }
  
  /* Existing News Card Styles */
  .news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .news-card img {
    width: 100%;
    height: auto;
  }
  .news-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .news-card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #025EC0;
  }
  .news-card-content p {
    font-size: 1rem;
    color: #313C47;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  .news-card-content .btn {
    align-self: flex-start;
  }
  
  /* Promo Popup Styles */
.promo-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.promo-popup.active {
  display: flex;
}

.promo-content {
  background: #fff;
  color: #313C47;
  max-width: 600px;
  width: 90%;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.5s ease;
}

.promo-close {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #313C47;
  cursor: pointer;
}

.promo-content h2 {
  margin-bottom: 10px;
  color: #025EC0;
}

.promo-content hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.promo-socials, .promo-newsletters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 15px 0;
}

.promo-socials img{
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.promo-newsletters img {
  width: 250px;
  height: 55px;
  transition: transform 0.3s;
}

.promo-socials img:hover {
  transform: scale(1.2);
}

.promo-newsletters img:hover {
  transform: scale(1.1);
}

.promo-footer {
  font-size: 0.9rem;
  color: #000000;
  margin-top: 20px;
  text-align: right;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Dark Mode Support */
.dark-mode .promo-content {
  background: #313C47;
  color: #BBBBBB;
}

.dark-mode .promo-close {
  color: #BBBBBB;
}

.dark-mode .promo-footer {
  font-size: 0.9rem;
  color: #BBBBBB;
  margin-top: 20px;
  text-align: right;
}

/* ------------------------- */
/* Data Analytics and Insights */
/* ------------------------- */

/* ── Why It Matters: Card Layout + Hover + Scroll Reveal ── */

.why-matter h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.why-matter .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-matter .card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* start hidden for scroll reveal */
  opacity: 0;
  transform: translateY(20px);
}

.why-matter .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.why-matter .card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-matter .icon {
  width: 48px;
  margin-bottom: 1rem;
}

.why-matter .summary {
  max-width: 640px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
}

/* ── Four-Phase Interactive Infographic ── */

.four-phase h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Timeline container & line */
.four-phase .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 1rem;
}
.four-phase .timeline::before {
  content: "";
  position: absolute;
  top: 2rem;          /* aligns with marker centers */
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

/* Each Phase */
.four-phase .phase {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;                /* start hidden for scroll reveal */
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  z-index: 1;
}
.four-phase .phase:not(:last-child) {
  margin-right: 0; /* spacing handled by justify-content */
}

/* Marker */
.four-phase .phase-marker {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
}

/* Title & Description */
.four-phase .phase-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.four-phase .phase-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover reveals detail on desktop */
@media (hover: hover) and (min-width: 769px) {
  .four-phase .phase:hover .phase-desc {
    max-height: 200px; /* ample for one paragraph */
    opacity: 1;
  }
}

/* Mobile/Tablet (< 769px): Stack vertically, center neatly, always show descriptions */
@media (max-width: 768px) {
  .four-phase .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;      /* center all phases */
    padding: 1rem;
  }
  .four-phase .timeline::before {
    display: none;            /* hide the horizontal line */
  }
  .four-phase .phase {
    width: 100%;
    max-width: 320px;         /* constrain card width for readability */
    margin-bottom: 2rem;
    text-align: center;       /* center text & marker */
    opacity: 1;               /* always visible */
    transform: none;          /* no initial offset */
  }
  .four-phase .phase-marker {
    margin: 0 auto 1rem;      /* ensure marker is centered */
  }
  .four-phase .phase-desc {
    max-height: none;         /* always expanded */
    opacity: 1;
    margin-top: 0.5rem;
  }
}

/* ── Accordion: Benefit-First Headlines ── */

.deliverables-accordion h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

/* Accordion Container */
.deliverables-accordion .accordion-item + .accordion-item {
  margin-top: 1rem;
}

/* Header */
.accordion-header {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: #f1f1f1;
}

/* Chevron */
.accordion-header .chevron {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Body (collapsed) */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0 1.25rem;
}

/* Body inner spacing when open */
.accordion-body.open {
  padding: 1rem 1.25rem;
}

/* List & Button inside body */
.accordion-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
}
.accordion-body .btn-sm {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Rotate chevron when open */
.accordion-header[aria-expanded="true"] .chevron {
  transform: rotate(90deg);
}


/* ── Case Study Card ── */

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 2rem;
   width: 100%;
  max-width: none;
  margin: 2rem auto; /* center it in the container */
}

.case-study-card .metric {
  text-align: center;
}

.case-study-card .metric-value {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0066cc;
  line-height: 1;
}

.case-study-card .metric-value span {
  font-size: 1.5rem;
  vertical-align: super;
}

.case-study-card .metric-label {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #555;
  letter-spacing: 0.05em;
}

.case-study-card .content {
  display: flex;
  flex-direction: column;
}

.case-study-card .client-logo {
  width: 120px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.case-study-card blockquote {
  font-style: italic;
  color: #333;
  margin: 0 0 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.case-study-card blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: -0.5rem;
  color: #0066cc;
}

.case-study-card blockquote footer {
  margin-top: 0.75rem;
  font-style: normal;
  color: #666;
  font-size: 0.9rem;
}

.case-study-card .btn {
  align-self: flex-start;
}

/* Mobile/Tablet (< 769px) */
@media (max-width: 768px) {
  .case-study-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .case-study-card .content {
    align-items: center;
  }
  .case-study-card .client-logo {
    margin-bottom: 1.5rem;
  }
  .case-study-card .btn {
    margin-top: 1rem;
  }
}

/* ── Interactive Gradient CTA Section ── */

.cta-section {
  background: linear-gradient(120deg, #0066cc 0%, #0099ff 100%);
  color: white;
  padding: 3rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    width: 100%;
  max-width: none;
  margin: 2rem auto; /* center it in the container */
}

.cta-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Primary CTA */
.btn-primary {
  background-color: white;
  color: #0066cc;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Secondary CTA */
.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: #0066cc;
  transform: translateY(-2px);
}

/* Microcopy */
.cta-section small {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ------------------------- */
/* BI Reporting Dashboards */
/* ------------------------- */

/* ── Common Challenges: Card Grid & Reveal ── */
.challenges h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.challenges .challenge-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.challenges .challenge-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px);
}

.challenges .challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.challenges .icon {
  width: 40px;
  margin-bottom: 1rem;
}

.challenges h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.challenges p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ── Why Our Dashboards: Infographic Style ── */

.why-dashboards-infographic h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Timeline & line */
.why-dashboards-infographic .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 1rem;
}
.why-dashboards-infographic .timeline::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

/* Each Feature (phase) */
.why-dashboards-infographic .phase {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  z-index: 1;
}

/* Marker with icon */
.why-dashboards-infographic .phase-marker {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.why-dashboards-infographic .phase-marker img {
  width: 2rem;
}

/* Title & hidden description */
.why-dashboards-infographic .phase-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.why-dashboards-infographic .phase-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Reveal detail on hover (desktop) */
@media (hover: hover) and (min-width: 769px) {
  .why-dashboards-infographic .phase:hover .phase-desc {
    max-height: 200px;
    opacity: 1;
  }
}

/* Mobile/Tablet: vertical & always show */
@media (max-width: 768px) {
  .why-dashboards-infographic .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  .why-dashboards-infographic .timeline::before {
    display: none;
  }
  .why-dashboards-infographic .phase {
    width: 100%;
    max-width: 320px;
    margin-bottom: 2rem;
    opacity: 1;
    transform: none;
  }
  .why-dashboards-infographic .phase-desc {
    max-height: none;
    opacity: 1;
    margin-top: 0.5rem;
  }
}

/* ── Dashboard Carousel ── */

.carousel-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dashboard-carousel {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
}

.slide.active {
  display: block;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 0.5rem;
}

.slide-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 0 0 0.5rem 0.5rem;
}

.image-wrapper:hover .slide-detail {
  opacity: 1;
  transform: translateY(0);
}

.slide-caption {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-control:hover {
  background: rgba(255,255,255,1);
}

.carousel-control.prev { left: 1rem; }
.carousel-control.next { right: 1rem; }

/* Dots */
.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: #ccc;
  border-radius: 50%;
  margin: 0 0.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active,
.dot:hover {
  background: #0066cc;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .carousel-control { display: none; }
  .slide-detail {
    position: relative;
    transform: none;
    opacity: 1;
    background: none;
    color: #333;
    padding: 0.75rem 0;
  }
}

/* ── Implementation Roadmap: Responsive Card Grid ── */
.roadmap h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.roadmap-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.roadmap-step {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.roadmap-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.roadmap-desc {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Stack to one column on tablet/mobile */
@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------- */
/* Process Optimization */
/* ------------------------- */

/* Only apply 3-col layout when .three-up is on the roadmap */
.roadmap.three-up .roadmap-grid {
  /* exactly 3 equal columns */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Mobile/tablet: still stack below 769px */
@media (max-width: 768px) {
  .roadmap.three-up .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------- */
/* BI Training & Onboarding */
/* ------------------------- */

/* ── Curriculum Highlights Infographic ── */

.curriculum-highlights-infographic h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.curriculum-highlights-infographic .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 1rem;
}
.curriculum-highlights-infographic .timeline::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.curriculum-highlights-infographic .phase {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  z-index: 1;
}

.curriculum-highlights-infographic .phase-marker {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.curriculum-highlights-infographic .phase-marker img {
  width: 2rem;
}

.curriculum-highlights-infographic .phase-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.curriculum-highlights-infographic .phase-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hover to reveal on desktop */
@media (hover: hover) and (min-width: 769px) {
  .curriculum-highlights-infographic .phase:hover .phase-desc {
    max-height: 200px;
    opacity: 1;
  }
}

/* Mobile/Tablet: vertical stack & always show */
@media (max-width: 768px) {
  .curriculum-highlights-infographic .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  .curriculum-highlights-infographic .timeline::before {
    display: none;
  }
  .curriculum-highlights-infographic .phase {
    width: 100%;
    max-width: 320px;
    margin-bottom: 2rem;
    opacity: 1;
    transform: none;
  }
  .curriculum-highlights-infographic .phase-desc {
    max-height: none;
    opacity: 1;
    margin-top: 0.5rem;
  }
}

/* ------------------------- */
/* Data Migration & Intergration */
/* ------------------------- */
/* As of right now there are no CSS for this page*/



/* —— Sticky Back to Top Button —— */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: #2782EB;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1000;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #02BCEB;
}
