/* Global Styles
   This section contains global styles that apply to the entire website.
*/

/* Default font size for larger screens */
h2 {
  font-size: 35px;
}

/* Adjusts the size for mobile devices */
@media (max-width: 768px) {
  h1 {
    font-size:50px;
  }
  h2 {
    font-size: 33px;
  }
  hover-container hover-suppliers {
    padding-top: 15px;
  }
}

@media (max-width: 768px) { /* Adjusted for headers getting words pushed to next line*/
  .long-header {
    font-size: 35px !important; /* Sets the font size to 35px for mobile */
  }
}


/* Hover Container Sections */

.hover-container {
    padding: 50px;
    background-color: #1d2e43;
    color: white;
    border: .5px solid #888888 ;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Ensure no text decoration on the link */
}

.hover-container.hover-farms:hover {
    background-color: #3574E3;
    border: none;
}

.hover-container.hover-suppliers:hover {
    background-color: #2896ac;
    border: none;
}

/* Hover Container VP Sections */

.hover-vp-container {
    padding: 10px;
    background-color: #3574E3;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Ensure no text decoration on the link */
}

.hover-vp-container.hover-farms:hover {
    background-color: #1d2e43;
    border: none;
    text-decoration: none; /* Ensure no text decoration on the link */
}

/* Ensure the link covers the entire container */
.hover-container a {
    text-decoration: none;
    color: inherit; /* Keep the text color as it is */
    display: block;
    height: 100%; /* Make sure the link covers the full height of the container */
    width: 100%; /* Make sure the link covers the full width of the container */
}




/* Global Styles END
   ---------------------------------------------------------------------
*/

/* Homepage Styles
   This section contains hompage styles.
*/

/* Homepage "For" Button Toggle

.homepage-tabs-menu {
    border: 1px solid #ddd; /* Grey border 
    border-radius: 99rem;
    align-items: center;
    padding: 0.25rem;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: auto;
    background-color: white; /* Background color for the container 
}

.homepage-tab-link {
    padding: 10px 20px;
    text-align: center;
    flex: 1;
    background-color: white; /* Non-active button background color 
    color: rgba(29, 46, 67, 1); /* Non-active button font color 
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Remove underline 
    display: inline-block;
    border-radius: 99rem;
    margin: 0 0.25rem;
    border: 1px solid transparent;
    white-space: nowrap; /* Ensure text does not drop to a new row 
}

.homepage-tab-link:hover {
    text-decoration: none; /* Remove underline on hover 
    color: rgba(29, 46, 67, 1); /* Keep the same font color on hover 
}

.homepage-tab-link.active {
    background-color: rgba(29, 46, 67, 1); /* Active button background color 
    color: white; /* Active button font color 
    border-color: rgba(29, 46, 67, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.layout-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 75px;
    padding-bottom: 75px;
}

.layout-text, .layout-image {
    flex: 1;
    min-width: 300px; /* Ensure the content is responsive 
}

.layout-image img {
    max-width: 100%;
    height: auto;
}

.spacer-xsmall, .spacer-small {
    height: 10px; /* Adjust these values to your spacing needs 
}

.heading-style-h2 {
    font-size: 2rem; /* Adjust font size as needed 
}

*/

/* Homepage Styles END
   ---------------------------------------------------------------------
*/


/* Homepage "By The Numbers" Section
   ---------------------------------------------------------------------
*/
.by-the-numbers {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border-radius: 20px;
}

.by-the-numbers .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.metric-box {
  background-color: #1c2d44;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.metric-box:hover {
  background-color: #1c314e;
}

.icon-placeholder {
  margin-bottom: 16px;
}

.metric-value {
  font-size: 36px;
  color: #56C1FF;
  margin: 0 0 8px;
  font-weight: 700;
}

.metric-label {
  font-size: 16px;
  opacity: 0.85;
}






/* Homepage "By The Numbers" Section END
   ---------------------------------------------------------------------
*/

/* Homepage "How it Works" Section
   ---------------------------------------------------------------------
*/

  .how-it-works {
    padding: 60px 20px;
    text-align: center;
  }

  .how-it-works .flowchart {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }

  .how-it-works .step {
    position: relative;
    background: #111;
    border-radius: 8px;
    border: 2px solid transparent;
    color: #ffffff;
    padding: 20px;
    width: 200px;
    height: 160px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .how-it-works .step:hover {
    border-color: #2896ac;
    box-shadow: 0 0 10px #b2dafb;
  }

  .how-it-works .step .step-title {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
    color: #ffffff;
  }

  .how-it-works .step:hover .step-title {
    opacity: 0;
  }

  .how-it-works .step::after {
    content: attr(data-description);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 38, 48, 0.95);
    color: white;
    font-size: 0.9em;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
  }

  .how-it-works .step:hover::after {
    opacity: 1;
  }

  .how-it-works .arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #2896ac;
    opacity: 0;
    transition: opacity 0.5s ease;
    align-self: center;
  }

  .how-it-works.show-arrows .arrow {
    opacity: 1;
    animation: arrowPulse 1s infinite ease-in-out;
  }

  @keyframes arrowPulse {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
  }

  .how-it-works p {
    margin-top: 40px;
    text-align: center;
  }


/* Homepage "How it Works" Section END
   ---------------------------------------------------------------------
*/

/* Section Overlay Graphics */

.svg-overlay-1 {
    position: relative;
}

.svg-overlay-1 img {
  width: 59px;
  height: 80px;
  position: absolute;
    top: -180px;
    left: -125px;
    z-index: 100;
}

.svg-overlay-1-alt img {
  width: 59px;
  height: 80px;
  position: absolute;
    top: -280px;
    left: -125px;
    z-index: 100;
}


/* Data Process Card and Description Section with changing graphic */

.data-card {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}


.data-card h3 {
  color: #fff;
  font-size: 20px;
}

.data-card:hover {
  background-color: #2896ac;
}

.description {
  display: open;
  margin-top: 10px;
}

.data-card.open .description {
  display: block !important;
}

#dynamic-graphic {
  width: 100%;
  max-width: 550px;
  max-height: 650px;
  height: auto;
  transition: opacity 0.5s ease-in-out; /* Smooth transition effect */
  opacity: 1;
}

/*-------------------------------------------------*/
/*----------Watershed Page Begins -----------------*/
/*-------------------------------------------------*/

#watershed-heading-1 {
  font-size: 60px !important;
}

@media (max-width: 768px) {
  #watershed-heading-1 {
    font-size: 40px !important;
  }
}



/*----------Watershed - What Watershed Does-----------------*/
/*----------Watershed - What Watershed Does END ----------------*/

/*----------Watershed - Performance Metrics Section----------------*/
.watershed-dynamic {
  background-color: #1D2630;
  color: white;
  padding: 25px 50px;
  font-family: sans-serif;
}

.feature-tabs.left-align {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.performance-tab {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.performance-tab:hover {
  color: #fff !important;      /* Your desired text color */
  text-decoration: none !important;  /* Remove underline */
}

.performance-tab .tab-label {
  position: relative;
  z-index: 2;
}

.performance-tab .tab-underline {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #b2dafb;
  transition: width 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.performance-tab:hover .tab-underline,
.performance-tab.active .tab-underline {
  width: 100%;
}

.feature-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;   /* ← changed from center */
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;    /* ← add transform transition */
}

.feature-content.fade-out {
  opacity: 0;
  transform: translateY(-10px);    /* ← slide up a little as it fades */
}

.left-column {
  flex: 1;
  min-width: 280px;
}

.left-column h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}

.left-column p {
  font-size: 16px;
  color: #dce6f0;
  margin-bottom: 16px;
}

.left-column ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #dce6f0;
}

.performance-metrics-cta {
  background-color: #3574e3;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.performance-metrics-cta:hover {
  background-color: #2e64cc;
  color: white;
  text-decoration: none;
}

.right-column {
  flex: 1;
  min-width: 280px;
  text-align: center;
  align-self: center;         /* vertically center just this column */
}

/* Constrain the actual image */
#watershed-performance-feature-image {
  max-height: 300px;   /* caps the SVG height */
  width: auto;         /* let width scale to maintain aspect ratio */
  max-width: 100%;     /* still responsive on small viewports */
  height: auto;        /* enforce auto height */
}


/*----------Watershed - Performance Metrics Section END----------------*/

/*----------Watershed - Our Solutions-----------------*/
    /* ===============================
   TIMELINE STYLES
   =============================== */

.solutions-timeline {
  padding: 10px 20px;
  position: relative;  /* establishes a positioning context for the graphic */
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Vertical dotted line on the left */
.timeline-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(178, 218, 251, 0.3);
  z-index: 0;
}

.timeline-entry {
  position: relative;
  padding-left: 60px; /* pushes content to the right of the dotted line */
  margin-bottom: 40px;
}

/* The clickable row with the circle icon + heading text */
.timeline-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  z-index: 2;  /* above the dotted line */
}

/* Circle behind the plus/minus sign */
.timeline-icon {
  width: 26px;
  height: 26px;
  background-color: #b2dafb;
  border-radius: 50%;
  color: #1D2630;  /* dark text inside the light circle */
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #b2dafb;  /* glowing effect */
  flex-shrink: 0;
}

/* Heading text next to the icon */
.timeline-title {
  font-size: 20px;
  white-space: nowrap;  /* keeps the title on one line */
}

/* The collapsible content below each title */
.timeline-content {
  margin-top: 10px;
  padding-left: 36px;  /* indent so text aligns nicely under title */
  display: none;       /* hidden by default */
  opacity: 0;          /* for fade-in effect */
  transition: opacity 0.3s ease;
}

/* The active state that shows the content */
.timeline-content.show {
  display: block;
  opacity: 1;
}

/* Fine-tune text styles */
.timeline-content p {
  font-size: 16px;
  color: #dce6f0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.timeline-content ul {
  padding-left: 20px;
  color: #dce6f0;
  font-size: 15px;
  line-height: 1.5;
}

.timeline-content ul li {
  margin-bottom: 6px;
}


/*----------Watershed - Our Solutions END ----------------*/

/*----------Watershed - Features: What Powers the Platform-----------------*/
.watershed-features {
  padding: 25px 40px;
  color: white;
  text-align: center;
}

.watershed-features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #b2dafb;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border: 1px solid rgba(178, 218, 251, 0.1);
  border-radius: 5px;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: #b2dafb;
  box-shadow: 0 0 20px rgba(178, 218, 251, 0.4);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-description {
  font-size: 16px;
  color: #dce6f0;
  line-height: 1.6;
}
.section-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b2dafb;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 40px;
}

/*----------Watershed - Features: What Powers the Platform END-----------------*/

/*----------Watershed - How It Works Section---------------------------------*/

.section-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.tier-columns {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tier-column {
  transition: all 0.3s ease;
}

.tier-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.tier-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tier-option {
  position: relative;
  flex: 1 1 200px;
  padding: 20px;
  border-bottom: 2px solid #E2E8F0;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.tier-option:hover {
  border-color: #b2dafb;
  transform: translateY(-4px);
}

.tier-option h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.tier-option p {
  font-size: 0.95rem;
  color: #4B5563;
  margin: 0;
  display: none;
  transition: opacity 0.3s ease;
}

.tier-option.expanded p {
  display: block;
  margin-top: 10px;
  opacity: 1;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 1s ease forwards;
}

@media (max-width: 900px) {
  .tier-option {
    flex: 1 1 100%;
  }
}

/*----------Watershed - How It Works Section END---------------------------------*/


/*-------------------------------------------*/
/*-------------------------------------------*/
/*----------General Features-----------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/


/*----------Dotted Line Header & Description Box Section---------------------------------*/

.section.section-industries {
  width: 100%;
  padding: 80px 20px;           /* top/bottom spacing around the entire section */
  display: flex;
  justify-content: center;      /* center the dotted box horizontally */
}

/* The dotted line container: 
   - dotted border
   - rounded corners
   - internal padding
   - centered contents */
.dotted-line-wrapper.industries {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* The dotted border & shape */
  border: 2px dotted #b2dafb;   /* same color Liminal uses (light grayish-blue) */
  border-radius: 16px;          /* fairly large rounding for corners */

  /* Spacing */
  padding: 40px;                /* space inside the box */
  margin: 0 auto;               /* center horizontally if needed */
  max-width: 800px;             /* limit the box width on large screens */
}

/* Headline styling */
.dotted-line-wrapper.industries h2 {
  font-size: 2rem;      /* larger heading */
  margin-bottom: 1rem;
  color: #1D2630;       /* text color (adjust as needed) */
}

/* Paragraph styling */
.dotted-line-wrapper.industries p {
  line-height: 1.5;
  color: #4B5563;        /* medium-dark text color */
  max-width: 700px;      /* keep line lengths comfortable */
  margin-bottom: 2rem;
}

/* Button group container */
.btn-group {
  display: flex;
  gap: 1rem;             /* spacing between buttons */
  flex-wrap: wrap;       /* allows wrapping on smaller screens */
  justify-content: center;
}

/* Example button styles. Feel free to replace with your own. */
.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background-color: #0D6EFD;
  color: #fff;
}

.btn.secondary {
  background-color: #fff;
  color: #0D6EFD;
  border: 2px solid #0D6EFD;
}

/* Simple hover effect (optional) */
.btn:hover {
  opacity: 0.85;
}
/*----------Dotted Line Header & Description Box Section END---------------------------------*/


/*----------Dotted Line Section Break Section (LEFT)---------------------------------*/
/* 
  This container displays:
    - A horizontal dashed line across its full width 
    - A vertical dashed line in the center extending downward
*/
.dotted-line-wrapper-left.manolin {
  position: relative;
  margin: 60px 0;         /* Adjust spacing above/below the break as needed */
  height: 30px;           /* Reserve vertical space for the vertical line */
}

/* Horizontal dashed line spanning full width */
.dotted-line-wrapper-left.manolin::before {
  content: "";
  position: absolute;
  top: 0;                 /* Align to the top edge of the container */
  left: 0;
  width: 100%;
  border-top: 1px dashed #E2E8F0;  /* Change color/size as desired */
}

/* Vertical dashed line in the center */
.dotted-line-wrapper-left.manolin::after {
  content: "";
  position: absolute;
  top: 0;                 /* Start at the top edge */
  left: 20%;
  height: 50px;           /* Length of the vertical line */
  border-right: 1px dashed #E2E8F0; /* Must match horizontal line style */
  margin-top: 2px;
}

/* Pulsing circle at the bottom of the vertical line */
.dotted-line-wrapper-left.manolin .pulse-circle-left {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b2dafb;  /* the light blue used previously */
  left: 20%;
  top: calc(50px + 2px);       /* Place it at the bottom of the vertical line */
  transform: translateX(-50%);
  animation: pulse 3s ease-in-out infinite;
}

/* Keyframes for a slow, "breathing" pulse effect */
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
/*----------Dotted Line Section Break Section (LEFT) END---------------------------------*/


/*----------Dotted Line Section Break Section (Center)---------------------------------*/
/* 
  This container displays:
    - A horizontal dashed line across its full width 
    - A vertical dashed line in the center extending downward
*/
.dotted-line-wrapper-center.manolin {
  position: relative;
  margin: 60px 0;         /* Adjust spacing above/below the break as needed */
  height: 50px;           /* Reserve vertical space for the vertical line */
}

/* Horizontal dashed line spanning full width */
.dotted-line-wrapper-center.manolin::before {
  content: "";
  position: absolute;
  top: 0;                 /* Align to the top edge of the container */
  left: 0;
  width: 100%;
  border-top: 1px dashed #E2E8F0;  /* Change color/size as desired */
}

/* Vertical dashed line in the center */
.dotted-line-wrapper-center.manolin::after {
  content: "";
  position: absolute;
  top: 0;                 /* Start at the top edge */
  left: 50%;
  height: 50px;           /* Length of the vertical line */
  border-right: 1px dashed #E2E8F0; /* Must match horizontal line style */
  margin-top: 2px;
}

/* Pulsing circle at the bottom of the vertical line */
.dotted-line-wrapper-center.manolin .pulse-circle-center {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b2dafb;  /* the light blue used previously */
  left: 50%;
  top: calc(50px + 2px);       /* Place it at the bottom of the vertical line */
  transform: translateX(-50%);
  animation: pulse 3s ease-in-out infinite;
}

/* Keyframes for a slow, "breathing" pulse effect */
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
/*----------Dotted Line Section Break Section (Center) END---------------------------------*/

/*----------Dotted Line Section Break Section (Horizontal)---------------------------------*/

/* 
  This container displays:
    - A horizontal dashed line across its full width 
*/
.dotted-line-wrapper-single.manolin {
  position: relative;
  margin: 20px 0;         /* Adjust spacing above/below the break as needed */
  height: 20px;           /* Reserve vertical space for the vertical line */
}

/* Horizontal dashed line spanning full width */
.dotted-line-wrapper-single.manolin::before {
  content: "";
  position: absolute;
  top: 0;                 /* Align to the top edge of the container */
  left: 0;
  width: 100%;
  border-top: 1px dashed #E2E8F0;  /* Change color/size as desired */
}

/*----------Dotted Line Section Break Section (Horizontal) END---------------------------------*/


/*----------Pricing Tier Watershed ---------------------------------*/

/* --------------------------------
   Watershed Norway Tiers (Scoped)
   -------------------------------- */

.watershed-norway-tiers-section {
  background-color: #1C2D44;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal;
}

.watershed-norway-header {
  text-align: center;
  margin-bottom: 60px;
}

.watershed-norway-header h2 {
  font-size: 36px;
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.watershed-norway-highlight {
  color: #b2dafb;
  display: block;
  font-size: 20px;
  margin-top: 8px;
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

.watershed-norway-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.watershed-norway-grid:hover .watershed-norway-card {
  opacity: 0.6;
}
.watershed-norway-grid .watershed-norway-card:hover {
  opacity: 1;
}

.watershed-norway-card {
  background-color: #1C2D44;
  border: 1px solid rgba(178, 218, 251, 0.2);
  border-radius: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
  animation: watershed-norway-fadeUp 0.6s ease forwards;
}

.watershed-norway-card:nth-child(1) {
  animation-delay: 0.1s;
}
.watershed-norway-card:nth-child(2) {
  animation-delay: 0.2s;
}
.watershed-norway-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes watershed-norway-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.watershed-norway-card:hover,
.watershed-norway-card--active {
  border-color: #b2dafb;
  box-shadow: 0 0 16px rgba(178, 218, 251, 0.3);
  transform: scale(1.02);
  background-color: #1E324F;
}

.watershed-norway-card:hover {
  transform: perspective(500px) translateZ(0) scale(1.02) rotateX(1deg) rotateY(1deg);
}

.watershed-norway-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b2dafb;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

.watershed-norway-card:hover .watershed-norway-label {
  color: #ffffff;
}

.watershed-norway-title {
  font-size: 24px;
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 12px 0;
  color: #ffffff;
  line-height: 1.3;
  position: relative;
  transition: color 0.3s ease;
}

.watershed-norway-card:hover .watershed-norway-title {
  color: #b2dafb;
}

.watershed-norway-description {
  font-size: 16px;
  color: #dce6f0;
  margin-bottom: 8px; /* ensures list aligns under description */
  flex-grow: 1;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

.watershed-norway-card:hover .watershed-norway-description {
  color: #ffffff;
}

.watershed-norway-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px 0; /* 8px top margin keeps all lists vertically aligned */
}

.watershed-norway-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #dce6f0;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  line-height: 1.2; /* keeps longer list items on one line where possible */
}

.watershed-norway-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #b2dafb;
  font-size: 14px;
  line-height: 1;
}

.watershed-norway-card:hover .watershed-norway-features li {
  color: #ffffff;
}

.watershed-norway-card:hover .watershed-norway-features li::before {
  color: #ffffff;
}

/* Updated CTA styling: 1px white border, no radius, white text, light-blue text on hover */
.watershed-norway-cta {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 20px;
  text-align: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
  width: auto; /* prevents shrinking on hover */
}

.watershed-norway-cta:hover {
  background-color: transparent; /* keep transparent */
  color: #b2dafb;
  border-color: #b2dafb;
  box-shadow: none;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 640px) {
  .watershed-norway-tiers-section {
    padding: 60px 16px;
  }
  .watershed-norway-title {
    font-size: 22px;
  }
  .watershed-norway-description {
    font-size: 15px;
  }
}


/*----------Pricing Tier Watershed END---------------------------------*/

/*----------Aquaculture Intelligence Scroll Text Static Image---------------------------------*/
  /* Container: two columns, full width */
  .predictive-section {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem 0;
  }

  /* Left column: text scrolls normally */
  .predictive-text {
    flex: 1;
    min-width: 280px;
    padding-right: 2rem;
  }

  /* Each “trigger” block */
  .predictive-item {
    margin-bottom: 3rem;
  }

  .predictive-item h2,
  .predictive-item h3 {
    /* Inherit your global h2/h3 styles */
    margin-bottom: 1rem;
  }

  .predictive-item p {
    /* Inherit your global paragraph styles */
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Right column: sticky image container */
  .predictive-image {
    flex: 1;
    min-width: 280px;
    position: relative;
  }

  /* The pinned image */
  .predictive-image img {
    position: sticky;
    top: 120px;               /* adjust to sit below your header/nav */
    display: block;
    width: 100%;
    max-width: 500px;         /* or whatever fits your layout */
    margin: 0 auto;
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
  }
/*----------Aquaculture Intelligence Scroll Text Static Image END---------------------------------*/


/*----------Aquaculture Intelligence Comparison Matrix---------------------------------*/
/* =============================================================================
   Matrix Section — Complete Updated CSS
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1) Section container & header
   ----------------------------------------------------------------------------- */
#matrix-section {
  background: linear-gradient(rgba(28,45,68,0.95), #1C2D44);
  padding: 20px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
}
.matrix-header {
  text-align: center;
  margin-bottom: 40px;
}
.matrix-header h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF; /* force white */
}

/* -----------------------------------------------------------------------------
   2) Grid container (desktop only — no overflow or snap here)
   ----------------------------------------------------------------------------- */
.matrix-grid {
  display: grid;
  grid-template-columns: 40% 30% 30%;
  gap: 24px;
}

/* -----------------------------------------------------------------------------
   3) Column wrappers
   ----------------------------------------------------------------------------- */
.matrix-column {
  display: grid;
  grid-template-rows: repeat(7, auto);
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.2); /* softened divider */
  scroll-snap-align: start; /* only applies when snapping is enabled */
}

/* -----------------------------------------------------------------------------
   4) Active (Manolin) column styling
   ----------------------------------------------------------------------------- */
.matrix-column--active {
  border-color: #B2DAFB;
  box-shadow: 0 0 16px rgba(178,218,251,0.3);
  border-radius: 4px;
}

/* -----------------------------------------------------------------------------
   5) Individual cells
   ----------------------------------------------------------------------------- */
.matrix-cell {
  padding: 20px;
  font-size: 16px;
  line-height: 1.4;
  background-color: #1C2D44;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.1); /* softer divider */
}
/* Remove bottom border on last cell in each column */
.matrix-column .matrix-cell:last-child {
  border-bottom: none;
}

/* -----------------------------------------------------------------------------
   6) Header row cells — sticky on mobile
   ----------------------------------------------------------------------------- */
.matrix-header-cell {
  font-weight: 500;
  font-size: 18px;
  background-color: #1C2D44;
  color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* -----------------------------------------------------------------------------
   7) Only the “Manolin Platform” header turns blue
   ----------------------------------------------------------------------------- */
.matrix-column--active .matrix-header-cell {
  color: #B2DAFB;
}
/* Keep the rest of that column’s body rows white */
.matrix-column--active .matrix-cell {
  color: #FFFFFF;
}

/* -----------------------------------------------------------------------------
   8) Grey out the competitor (3rd) column
   ----------------------------------------------------------------------------- */
.matrix-grid > .matrix-column:nth-child(3) .matrix-header-cell,
.matrix-grid > .matrix-column:nth-child(3) .matrix-cell {
  color: rgba(255,255,255,0.6);
}

/* -----------------------------------------------------------------------------
   9) Rounded corners on active column’s first & last cells
   ----------------------------------------------------------------------------- */
.matrix-column--active .matrix-cell:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.matrix-column--active .matrix-cell:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* -----------------------------------------------------------------------------
   10) Responsive: horizontal scroll + snap on mobile only
   ----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  #matrix-section {
    padding: 60px 16px;
  }
  .matrix-header h2 {
    font-size: 28px;
  }
  .matrix-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .matrix-column {
    scroll-snap-align: start;
  }
  .matrix-column--active {
    scroll-snap-align: center;
  }
  .matrix-cell {
    padding: 16px;
    font-size: 14px;
  }
  .matrix-header-cell {
    font-size: 16px;
  }
}

/*----------Aquaculture Intelligence Comparison Matrix END---------------------------------*/


/*----------Researcher Page Static 4 Section Reports---------------------------------*/

/* --- Layout --- */
.reports-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding: 6rem 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; /* <-- allow sticky element to show correctly in HubSpot */
}

.reports-left {
  flex: 0 0 45%;
  position: relative;
  border-left: 1px dashed #bbb;
  padding-left: 2rem;
}

.reports-right {
  flex: 0 0 50%;
  position: sticky;
  top: 10vh; /* <-- stays fixed in viewport while left side scrolls */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  overflow: visible;
}

/* --- Report Cards --- */
.report-item {
  border: 1px solid #bbb;
  padding: 2rem;
  margin-bottom: 2rem;
  background: #faf9f7;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.report-item.active {
  border-color: #000;
  background: #fff;
}

.report-item h3 {
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.report-item p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* --- Progress Line --- */
.progress-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: #000;
  transition: height 0.4s ease;
}

/* --- Right Side Image --- */
.report-image {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.report-image.active {
  opacity: 1;
  transform: translateY(0);
}

.report-image img {
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- Mobile / Tablet Layout --- */
@media (max-width: 991px) {
  .reports-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .reports-left {
    border-left: none;
    padding-left: 0;
  }

  .reports-right {
    position: relative;
    top: auto;
    height: auto;
  }

  .report-image {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .progress-line {
    display: none;
  }
}

}
/*----------Researcher Page Static 4 Section Reports End---------------------------------*/