@charset "UTF-8";

body, html {
    font-family: "Lato", sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    font-style: normal;
    font-weight: 200;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: "Merriweather", serif;
}

body {
    font-size: calc(15px + 0.390625vw);
}

button:hover {
    cursor: pointer;
}




/* 🌟 HERO SECTION - Keep it structured */
.hero {
    width: 100%;
    position: relative;
    background: #f6703d;
    margin-bottom: 3em;
    min-height: 50vh; /* Reduce height */
    margin-top: 6vw;;
    padding: 3vw 0;
}

/* 📌 HERO TEXT - Centered */
.textHero {
    width: 100%;
    max-width: 900px; /* Keeps it clean */
    text-align: center;
    margin: 0 auto 0 auto; /* Remove bottom margin */
    padding: 2vw 0;
}

.hero-bg {
    background: #3c557d;
    width: 100%;
}


/* 🌊 Bubble Container */
.bubble-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Keep it behind other content */
    pointer-events: none;
}

/* 🌊 Individual Bubbles */
.bubble {
    position: absolute;
    bottom: -50px; /* Start offscreen */
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4); /* Soft transparency */
    border-radius: 50%;
    filter: blur(4px);
}
#animationContainer {
width: 100%;
margin-top: 7vw;
}

.heroWrapper {
    display: flex;
    flex-direction: row;
    align-items: center; /* ⬅ Centers everything vertically */
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 1vw;
    min-height: 75vh;
}

.textContainer {
    width: 70%;
    max-width: 70%;
    text-align: left;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensure text stays centered vertically */

}
.blurContain {
    position: relative;
}
.characterContainer {
    width: 30%;
    display: flex;
    align-items: center; /* ✅ Centers character */
    justify-content: center; /* ✅ Keeps close to text */
    position: relative;
    height: 100%;
    max-height: 500px; /* ✅ Prevents unwanted expansion */
    overflow: visible;
    z-index: 998;
}


/* 🎭 AlgaeGuard SVG - Separate from Flexbox */
.algaeGuardWrapper {
    position: relative;
    top: 0px; /* Move mascot slightly lower */
    z-index:998;
    overflow: visible;
}

#algaeGuardSVG {
    position: absolute;
    width: 250px; /* Increase size */
    max-width: none; /* Remove restrictions */
    height: auto;
    z-index:994;

}

#thoughBubbleContain {
    position:relative;
}
#thoughtBubble {
    position:absolute;
    font-family:sans-serif;
    transform-origin: center !important;
    z-index: 998 !important;

}

#thoughtBubbleScooter {
    font-family:"Fredoka", sans-serif;
    transform-origin: center !important;
    position: absolute;
}
#thoughtBubbleText {
    font-size: 15px !important;
    padding: 1vw;
    font-family: "Fredoka", sans-serif;
}
#leftUpperArm, #leftForearm, #leftHand, #feet {
    will-change: transform;
}

.textHero h1 {
    font-size: 1.7em; /* Slightly larger */
    font-weight: 700;
    margin-bottom: 10px;
}

.textHero h3 {
    font-size: 1.2em; /* Improved readability */
    font-weight: 500;
    opacity: 0.9;
}


@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
  }
  
  .floating-button.wiggle {
    animation: wiggle 0.4s ease-in-out;
  }

.floating-button {
    position: sticky;
    left: 2vw;
    top: 90vh;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 2px solid #f6703d;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* Center icon by default */
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    white-space: nowrap;
    padding: 10px;
    animation: sway 3s ease-in-out infinite;


  }
  
  /* The icon stays visible at all times */
  .play-icon {
    width: 24px; 
    height: 24px;
    flex-shrink: 0; /* Prevents icon from shrinking when text appears */
  }
  
  /* By default, hide the text */
  .button-text {
    display: inline-block;
    margin-left: 0;
    width: 0;
    opacity: 0;
    overflow: hidden; 
    transition: width 0.4s ease, opacity 0.4s ease;
    white-space: nowrap; /* Keep text on one line */
  }
  
  /* Expand the button (triggered by .expanded class) */
  .floating-button.expanded {
    width: 200px;
    border-radius: 30px;
    justify-content: flex-start; /* Align icon & text from left to right */
    padding: 10px 15px;
    
  }
  @keyframes sway {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
  }
  
 
  /* Reveal the text on expansion */
  .floating-button.expanded .button-text {
    width: auto; /* Let the text have its natural width */
    opacity: 1;
    margin-left: 10px;
  }

  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.show {
    display: flex;
  }
  
  .modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 90vw;
    max-height: 90vh;
  }
  
 
  .close-button {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #003e6b;
    cursor: pointer;
    z-index: 2;
  }
  
  .close-button:hover {
    color: #f6703d;
  }
  .custom-player-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
  }
  
  .custom-video {
    width: 100%;
    display: block;
    background-color: #000;
  }
  
  .video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #003e6b; /* CRT Blue */
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
  }
  .custom-player-container:hover .video-controls {
    opacity: 1;
    pointer-events: auto;
  }
  .video-controls {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
  }
  
  .control-btn:hover {
    color: #00aced; /* Brand accent */
  }
  
  #progressBar {
    flex-grow: 1;
    margin: 0 10px;
    accent-color: #00aced;
  }
  
  #volumeSlider {
    width: 80px;
    accent-color: #00aced;
  }

/* 🔥 CTA SECTION - Fully Centered */
.heroContain {
    display: flex;
    justify-content: center; /* Center elements */
    align-items: stretch; /* Ensure equal height */
    width: 100%; /* Prevent it from stretching too wide */
    max-width: 1100px; /* Keep it contained */
    gap: 3vw; /* Space between cards */
    flex-wrap: wrap; /* Ensure responsiveness */
    margin-top: 10px; /* More breathing room */
    padding: 0 2vw; /* Reduce excess padding */
}

/* 🏆 CTA Individual Sections */
.scrollHero {
    flex: 1 1 45%; /* Makes both equal width */
    min-width: 300px; /* Prevents squishing */
    display: flex;
    justify-content: center;
}

/* 🏆 CTA BOXES */
.com h2 {
    color: #FFFFFF; /* Keep headers bright */
    font-size: 1.4em;
    font-weight: 700;
}

.com p {
    color: rgba(255, 255, 255, 0.9); /* Make the text clearer */
    font-size: 1em;
    font-weight: 400;
    flex-grow: 1; /* Allows text to take up available space and push the button down */
}
.com {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to the bottom */
    align-content: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Makes sure all CTA boxes are the same height */
}


.com:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}



/* ✨ BUTTON STYLING */
.heroMore {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 12px 24px;
    font-size: 1.1em;
    background: #01446E;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    align-self: center;
}

.heroMore:hover {
    background: #FF6726;
    transform: scale(1.08);
}
.heroMore::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease-out;
}

.heroMore:active::after {
    transform: translate(-50%, -50%) scale(1);
}

.com img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
    align-self: center;
}

/* 🪂 Parachute Styling */
#parachute {
    position: absolute; /* Prevents it from affecting other elements */
    top: -95vh; /* Adjusts initial position above the character */
    left: -12vw; /* Centers it */
    width: 350px; /* Adjust size as needed */
    z-index: 1 !important; /* Higher than the character */

}
#scooterSVG {
    position: absolute;
    width: 250px;
    z-index: 996;

  
}

/* 🎯 General Mission Section */
.mission {
    background: linear-gradient(to bottom, #FAFAFA, #FFFFFF); /* Soft fade for depth */
    padding: 6vw 2vw; /* Increase padding to separate sections */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 24px solid rgba(0, 0, 0, 0.05); /* A soft gray divider */
    z-index: 20;
}

/* 🏗️ Mission Container */
.missionContain {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* 🔹 Title Styling */
.missionText h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #2C3E50; /* Dark blue for better contrast */
    margin-bottom: 2em;
}
.missionText {
    z-index: 4;
}

/* 📌 Card Container */
.cardContain {
    display: flex;
    justify-content: center;
    gap: 5vw;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 2em;

}

/* 🏆 Individual Cards */
.card {
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* 🔹 Card Header */
.cardHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cardHeader h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: #0C3E5D; /* Slightly darker for contrast */
}

/* 📌 Icons */
.cardIcon {
    width: 40px;
    height: auto;
}

/* ✨ Paragraph Styling */
.card p {
    color:rgba(0,0,0,0.8); /* Softer black */
    font-size: 1.1em;
    line-height: 1.5;
}

/* 🔥 Call-to-Action Button */
.moreAbout {
    background: #FF6726;
    width:80%;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    padding: 1em 2.5em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-top: 3em; /* More space from the cards above */
    margin-bottom: 4em; /* More space before the next section */
    border: none;
    cursor: pointer;
    z-index: 4;
}

.moreAbout:hover {
    background: #01446E;
    z-index: 2 !important;
}


.products {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 6em 2em; /* Keeps spacing consistent */
    background: linear-gradient(135deg, rgba(61,85,124,1.00), rgba(1,132,200,1.00));
    color: #fff;
    text-align: center;
    margin-bottom: 5em;
    border-bottom: 24px solid rgba(0, 0, 0, 0.05);
    z-index: 4;
}

.products h2 {
    font-family: 'Merriweather', serif;
    font-size: 3em;
    margin-bottom: 0.75em;
    color: #fff;
}

.products p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 3em;
    color: #f5f5f5;
    text-align: center;
}

.title {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    padding: 0 2em;
    }
    
/* --- Centering the Category Cards --- */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2em;
    padding: 0 2vw;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

/* --- Ensures Proper Spacing for Columns --- */
.column {
    text-decoration: none;
    width: 320px;
    display: flex;
    justify-content: center;
    min-width: 280px;
    flex-grow: 1;
    flex-basis: calc(33.333% - 2em); /* Ensures even three-column layout */
    max-width: 400px;
}

/* --- Product Cards Fixes --- */
.product-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2em;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 360px; /* Ensures consistent height */
    width: 100%; /* Makes sure the cards are evenly distributed */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* --- Card Images --- */
.product-card img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

/* --- Card Headings --- */
.product-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
    color: #FF6726;
}

/* --- Card Text --- */
.product-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2em;
    max-width: 85%;
}

/* --- Learn More Button --- */
.arrow {
    background: white;
    color: #01446E;
    font-weight: bold;
    border-radius: 6px;
    padding: 10px 16px;
    transition: all 0.3s ease-in-out;
    font-size: 0.95em;
    cursor: pointer;
}

.arrow:hover {
    background: #FF6726;
    color: white;
    transform: scale(1.08);
    box-shadow: 0px 4px 12px rgba(255, 103, 38, 0.3);
}
.industries {
    display: flex;
    align-items: stretch; 
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 5.5em 0;
    box-sizing: border-box;
    background: #f7f7f7;
}

.industries h3 {
    padding: 2em 0;
    font-size: 2em;
    text-align: center;
    font-weight: 700;
    color: #365680;
}
.industry img {
    width: 20px;
    height: auto;
}
.tab-cont {
    flex: 1;
    align-items: stretch; /* Forces the sidebar to fill the height */
    min-width: 25%; /* Shrink sidebar a bit */
    max-width: 30%;
    min-height: 100%;
    padding: 2em;
    border-right: none;
    background: linear-gradient(135deg, rgba(61,85,124,1.00), rgba(0,159,222,1.00));
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.tab-cont h3 {
    font-size: 1.3em; /* Make 'Industries We Serve' more noticeable */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9); /* Slightly lighter for better contrast */
    text-align: left;
}

.tab-cont button {
    width: 100%;
    margin: 12px 0; /* Reduce vertical spacing between buttons */
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    padding: 12px 18px; /* Reduce button padding for better proportion */
    border-radius: 8px;
    font-size: 1em; /* Make text inside buttons slightly smaller */
    display: flex;
    align-items: center;
    gap: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.tab-cont button:hover,
.tab-cont button.active {
    background: #FF6726;
    color: white;
    transform: scale(1.03);
}

.tab-content {
    flex: 3;
    padding: 2.5em;
    box-sizing: border-box;
    display: none;
    background: #fff;
    color: #365680;
    border-radius: 8px;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

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

.tab-content h2 {
    font-size: 1.8em;
    color: rgba(61,85,124,1.00);
    margin-bottom: 1.2em;
    border-bottom: 2px solid rgba(61,85,124,0.3);
    padding-bottom: 0.5em;
    font-weight: 700;
}

.tab-content p {
    font-size: 1em;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 1.5em;
    color: rgba(0, 0, 0, 0.9);
}

.images {
    display: flex;
    gap: 1.5em;
    justify-content: center;
}

.images img {
    width: 32%; /* Slightly increase image size */
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.images img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}



.science {
    position: relative;
    width: 100%;
    margin-top: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(61,85,124,1.00), rgba(0,159,222,1.00));
    color: white;
    padding: 3em 1em 6em 1em;
    box-sizing: border-box;
    border-bottom: 24px solid rgba(0, 0, 0, 0.05); /* A soft gray divider */
}
.outerContain {
    display:flex;
    flex-direction: column;
    gap: 3em;
}
.borderContain {
    text-align: center;
    margin-bottom: 2em;
}

.borderContain h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em;
    color: white;
    margin-bottom: 0.5em;
}

.borderContain p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    color: rgba(255,255,255,0.9);
}

.scienceContain {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2em;
    width: 100%;
}

.lab {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.lab img {
    width: 50px;
    height: 50px;
    margin-bottom: 1em;
}

.lab h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5em;
    color: #FF6726;
    margin-bottom: 0.5em;
}

.lab p {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.lab a {
    color: rgba(243,112,60,1.00);
    text-decoration: underline;
    font-weight: bold;
}
@media (min-width: 769px) and (max-width: 1024px) {
    #algaeGuardSVG {
      position: relative;
      width: 180px;
      left: 0;
      right: 0;
      margin: 0 auto;
      display: block;
      top: auto;
      transform: none !important;
      z-index: 1;
    }
    #parachute {
      display: none !important;
    }
  }
@media (max-width: 768px) {
    .custom-player-container {
      max-width: 95vw;
      border-radius: 8px;
    }
  
    .video-controls {
      flex-wrap: wrap;
      gap: 10px;
    }
  
    #volumeSlider {
      width: 60px;
    }
    #algaeGuardSVG {
        display: none !important;
      }
      #thoughtBubble,
      #leftArm,
      #rightArm,
      #parachute,
      #leftHand,
      #rightHand {
        display: none !important;
      }
  }

@media only screen and (max-width: 850px) {
    body {
        font-size: 16px; /* Standardized text size */
    }

    /* 🏆 HERO SECTION */
    .heroWrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
   
    .textContainer {
        width: 100%;
        padding: 5vw;
        max-width: 100%;
        text-align: center;
    }

    .characterContainer {
        width: 80%;
        max-height: 300px; /* Prevents it from getting too large */
        margin: 0 auto;
    }

    #algaeGuardSVG {
        width: 200px; /* Reduce character size for mobile */
        max-width: 100%;
        left: 0;
        top: 0;
        position: relative;
    }

    /* 🎭 THOUGHT BUBBLE */
    #thoughtBubble {
        position:absolute;
        font-size: 12px;
        transform-origin: center !important;
    }

    #thoughtBubbleText {
        font-size: 12px;
        padding: 2vw;
    }

    /* 🌊 Bubble Background */
    .bubble-container {
        display: none; /* Hide bubbles for mobile */
    }

    /* 🚀 MISSION SECTION */
    .mission {
        padding: 5vw;
    }

    .missionContain {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* 📌 CTA Boxes */
    .heroContain {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
        width: 90%;
        margin: 0 auto;
    }

    .scrollHero {
        width: 100%;
    }

    .com {
        width: 90%;
        padding: 15px;
    }


    .tab-cont {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        text-align: center;
        max-width: 100%;
    }

    .tab-cont button {
        width: 92%;
        font-size: 0.9em;
    
    }

    .tab-content {
 
        margin-bottom: 1vw;
        width: 100%;
        position: relative;
        box-sizing: border-box;

        max-width: 100%;
    
    }


    /* 🔬 SCIENCE SECTION */
    .scienceContain {
        flex-direction: column;
        align-items: center;
    }

    .lab {
        width: 90%;
    }
}

@media only screen and (max-width: 650px) {
    /* 🏆 HERO TEXT */
    .textHero {
        width: 95%;
        padding: 5vw;
    }

    .textHero h1 {
        font-size: 1.5em;
    }

    .textHero h3 {
        font-size: 1em;
    }

    /* 🚀 CTA Section */
    .heroContain {
        flex-direction: column;
        width: 100%;
        padding: 2vw;
    }

    /* 🚀 PARACHUTE */
    #parachute {
        width: 250px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* 🏆 PRODUCT SECTION */


    .categories {
        flex-direction: column;
        padding: 0 2vw;
    }



    .product-card {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

   
}

@media only screen and (max-width: 500px) {
    /* 🏆 HERO */
    .textHero h1 {
        font-size: 1.3em;
    }

    .textHero h3 {
        font-size: 1em;
    }

    /* 🚀 BUTTON */
    .heroMore {
        font-size: 0.9em;
        padding: 8px 18px;
    }

    /* 🌊 INDUSTRIES */
    .tab-cont {
        padding: 1.5em;
    }

    .tab-cont button {
        font-size: 0.8em;
        padding: 10px;
    }


    /* 🔬 SCIENCE */
    .borderContain h2 {
        font-size: 2em;
    }

    .lab h3 {
        font-size: 1.3em;
    }
}

@media only screen and (max-width: 850px) {
    .heroContain {
        flex-direction: column;
        width: 100%;
        height: fit-content;
    }

 

    .contain {
        flex-direction: column;
        height: auto;
        padding: 5vw 2vw 0vw 4vw;
        gap: 2vw;
    }

.scienceContain {
    flex-direction: column;
    align-items: center;
}

.lab {
    max-width: 90%;
}

.bar {
background-color: white;
width: 100%;
height: 9vw;
margin-top: -3vw;
margin-bottom: -3vw;
}


    .contain img {
        display: none;
    }
  

    .textHero {
        width: 98%;
    }

    .textHero h1 {
        font-size: 1.8em;
    }

    .content {
        flex-direction: column;
        padding-top: 7vw;
    }

    .contentTxt {
        width: 100%;
    }

    .formContain {
        width: 100%;
    }
    .textHero {
        width: 90%;
    }
    .Bkgcontain {
        height: auto;
        margin-top: 7vw;
        margin-bottom: 8vw;
        background: linear-gradient(90deg, rgba(61,85,124,1.00) 26%, rgba(1,132,200,1.00) 89%);
    }

    .mission {
        position: relative;
        justify-content: flex-start;
        margin-top: 4vw;
        margin: 4vw;
        padding: 8vw 0;
    }

    .missionContain {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 4vw 2vw 1vw 2vw;
        gap: 2vw;
    }
    .mission-text {
        color: #2C3E50; /* Darker for better contrast */
        font-size: 1.1em;
        line-height: 1.5; /* Improve readability */
    }
    
    .missionText h2 {
        margin-top: -4vw;
    }

    .missionContact {
        display: none;
    }

    .products {

        box-sizing: border-box;
        display: flex;
        flex-direction: column;
      }
    
   
    
 
    
      .column {
        width: 100%;
        max-width: 100%;
      }
    
      .product-card {
        border-radius: 12px;
        padding: 5vw;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: center;
      }
    
    
      .product-card h3 {
        font-size: 1.4em;
        margin-bottom: 10px;
      }
    
      .product-card p {
        font-size: 1em;
        line-height: 1.4em;
      }
    
      .arrow {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 14px;
        font-size: 0.9em;
        background-color: #f6703d;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
      }
    

    .categories {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 3vw;
        margin: 0 auto;
    }

    .industries {
        width: 100%;
        flex-direction: column;
        margin: 1vw auto;
        box-sizing: border-box;
    }
    .uses {
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    
    .uses h2 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 1vw;
    }
    
   
    .science {
        position: relative;
        width: 100%;
        margin-top: 5vw;
        overflow: visible;
        scroll-snap-align: none;
        padding-top: 4vw;
    }

    .borderContain p {
        color: white;
        padding: 10px;
        width: 90%;
    }
    
    .borderContain {
        padding-left: 15px;
        width: 65%;
        margin: auto;
    }
    
    .scienceContain {
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 650px) {


   
    .textHero {
        margin-top: 1vw;
    }


}

@media only screen and (max-width: 500px) {




 

}

