body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

h1.text-white {
    font-size: 4rem; /* Adjust the size as needed */
    color: white;
    text-shadow: 3px 3px 6px gray; /* Creates the gray shadow */
    text-align: left; /* Centers the text */
    margin: 0 auto; /* Center it horizontally */
    line-height: 1.5; /* Adjust the spacing between the two lines */
    max-width: 80%; /* Ensure it's centered and responsive */
}

/* Navbar styling */
.header {
    background-color: #5A57EC; /* Purple */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Center items inside the navbar */
.navbar {
    text-align: center;
}

/* Make navbar links uppercase and center them */
.navbar-nav .nav-link {
    text-transform: uppercase;
    text-align: center; /* Ensure text is centered */
}

/* Center the navbar-brand (logo) */
.navbar-brand {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar toggler (hamburger) adjustments */
.navbar-toggler {
    border: none;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar toggler icon style */
.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    text-align: center;
}

/* Remove any default padding or margin from the navbar */
.navbar-collapse {
    text-align: center;
    justify-content: center; /* Center nav items */
}

/* Center the text and button inside the carousel */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

h1.text-white {
    font-size: clamp(3rem, 4vw, 5rem); /* Automatically adjusts but stays within defined limits */
    color: white;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.7); /* Creates a larger, softer shadow */
    text-align: center; /* Centers the text */
    margin: 0 auto; /* Center it horizontally */
    line-height: 1; /* Decrease the spacing between the lines */
    max-width: 80%; /* Ensure it's centered and responsive */
    padding-bottom: 40px;
}

.carousel-item {
    height: 100vh; /* Make the carousel take up the full viewport height */
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the content inside takes up full height */
}

.btn-theme {
    background-color: #2AD8A6; /* Green */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: large;
}

.btn-theme:hover {
    background-color: #5A57EC; /* Coffee color */
    color: black;
}

#services .row.g-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamically adjust columns */
    gap: 30px;
    justify-items: center;
    align-items: start;
}

/* Initial hidden state for the services */
.service {
    opacity: 0;
    transform: translateX(-100px); /* Positioned to the left */
    transition: transform 1.5s ease, opacity 1.5s ease; /* Slower transition (1.5s) */
}

/* When the element is in view, it slides in and becomes visible */
.service.visible {
    opacity: 1;
    transform: translateX(0); /* Slides back to its normal position */
}

/* Styling for the service blocks */
#services .service {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: center;
    max-width: 100%;
}

/* Service icon and text alignment */
#services .service-element {
    margin-bottom: 15px;
}

#services .service-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

#services .service-info p {
    font-size: 1rem;
    text-align: justify;
}

/* Ensure consistent heading height */
#services h3 {
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap; /* Prevent the title from breaking into multiple lines */
    overflow: hidden;     /* Hide any overflowed text */
    text-overflow: ellipsis; /* Display an ellipsis (...) for overflowed text */
    margin-bottom: 20px;
}

/* Flexbox for service-info for vertical alignment */
#services .service-info {
    flex-grow: 1; /* Ensures the text block grows to fill the height */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Ensure paragraphs align properly */
#services p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1080px) {
    #services .row.g-4 {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
        gap: 20px; /* Adjust gap for smaller screens */
    }
}

/* Optional: Reduce space between sections */
.py-5 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Optional: Reduce the space between sections */
.py-5 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Team hover effect */
.team-member {
    position: relative;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay img {
    width: 30px;
    height: 30px;
}

/* Full-width gray background for the section */
.logos-section {
    background-color: #f8f9fa; /* Light gray background */
}

/* Logos at the bottom */
.logos img {
    width: 120px;
    margin: 10px;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 0.5;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: gray; /* Solid background color */
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px; /* Optional: Rounded corners */
    opacity: 0.7; /* Initially transparent */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.5s ease; /* Smooth transition */
    z-index: 9999; /* Ensure it's above other elements */
}

.back-to-top.show {
    opacity: 0.7; /* Fully visible when scrolled */
    visibility: visible; /* Show button */
    background-color: #2AD8A6;
}

.back-to-top:hover {
    background-color: #5A57EC; /* Change color on hover */
    opacity: 0.85; /* Ensure opacity stays at 1 on hover */
}

/* Service hover effect */
.service-element {
    font-size: 50px;
    color: #17a2b8;
}

.service-icon {
    font-size: 50px;
    transition: opacity 0.3s ease;
}

.service:hover .service-icon {
    opacity: 0;
}

.service-info {
    transition: transform 0.3s ease;
}

.service:hover .service-info {
    transform: translateY(-20px);
}

/* Team hover effect */
.team-member {
    position: relative;
}

.team-member img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.linkedin-icon {
    width: 30px;
    height: 30px;
}

/* Ensure that only the clicked link stays black */
.navbar-nav .nav-link.clicked {
    color: black !important; /* Always black for clicked and active links */
    font-weight: bold; /* Optional: make it bold */
}

/* Default color for non-clicked/non-active links */
.navbar-nav .nav-link {
    color: white; /* Default white color */
}

/* Service hover effect */
.service-element {
    font-size: 50px;
    color: #17a2b8;
    transition: opacity 0.3s ease;
}

.service:hover .service-element {
    opacity: 0;
}

.service-info {
    transition: transform 0.3s ease;
}

.service:hover .service-info {
    transform: translateY(-20px);
}

/* Team Member Container */
.team-member {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

/* Team Image Container */
.team-image-container {
    position: relative;
    width: 80%; /* Responsive size based on parent container */
    max-width: 300px; /* Max width for larger screens */
    margin: 0 auto; /* Center the image container */
    overflow: hidden; /* Ensure nothing overflows the container */
}

/* Team Image */
.team-img {
    width: 100%; /* Full width */
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s ease; /* Smooth scale effect on hover */
}

/* Hover effect for the LinkedIn overlay */
.team-image-container:hover .team-img {
    border-radius: 0px;
    transform: scale(1.05); /* Slightly enlarge the image */
}

.team-image-container:hover .overlay {
    border-radius: 0px;
    opacity: 1; /* Show the LinkedIn overlay */
}

/* LinkedIn overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Match the image width */
    height: 100%; /* Match the image height */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
    border-radius: 15px; /* Same rounded corners as the image */
}

/* LinkedIn Icon */
.linkedin-icon {
    width: 30px;
    height: 30px;
}

/* Read More Link */
.read-more {
    color: #cccccc; /* Light gray */
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px; /* Space between text and link */
    transition: color 0.3s ease; /* Smooth transition */
}

.read-more:hover {
    color: #555555; /* Darker gray on hover */
    text-decoration: underline;
}

/* Show Less Link */
.show-less {
    color: #cccccc; /* Light gray */
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px; /* Space between text and link */
    transition: color 0.3s ease;
}

.show-less:hover {
    color: #555555; /* Darker gray on hover */
    text-decoration: underline;
}

/* Full Description Styling */
.full-description {
    display: none;
    transition: all 0.3s ease;
}

p.description {
    text-align: justify; /* Justify the entire paragraph */
    padding-left: 15px;
    padding-right: 15px;
}


/* Remove any spacing that might cause the container size issue */
.team-member {
    margin: 0;
    padding: 0;
}

/* Ensure spacing between the image and the text */
.team-member h4 {
    margin-top: 15px;
    font-size: 24px;
}

/* Ensure spacing between the image and the text */
.team-member p {
    margin-top: 15px;
    font-size: 16px;
}

/* Remove the outline (ugly black border) when toggler is clicked */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Initial styles for the toggler bars */
.navbar-toggler span {
    display: block;
    background-color: #2AD8A6;
    height: 3px;
    margin: 5px 0;
    transition: width 0.4s ease;
}

/* Initial styles for the toggler bars */
.navbar-toggler-scrolled span {
    display: block;
    background-color: #5A57EC;
    height: 3px;
    margin: 5px 0;
    transition: width 0.4s ease;
}

/* Default bars with unequal lengths */
.navbar-toggler span:nth-child(1) {
    width: 15px;
}

.navbar-toggler span:nth-child(2) {
    width: 20px;
}

.navbar-toggler span:nth-child(3) {
    width: 30px;
}

/* When the button is clicked (active), all bars become the same width */
.navbar-toggler.active span:nth-child(1),
.navbar-toggler.active span:nth-child(2),
.navbar-toggler.active span:nth-child(3) {
    width: 30px; /* All lines become equal in length */
}

/* Default Navbar Background */
.header {
    background-color: #5A57EC; /* Original background color */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Green Navbar Background */
.header.scrolled {
    background-color: #2AD8A6; /* Green color when scrolled */
}

/* Footer Styling */
.footer {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px 0; /* Padding on top and bottom */
    text-align: center; /* Center text */
    border-top: 0px solid #e7e7e7; /* Light border at the top */
    font-size: 16px;
    width: 100%;
}

.footer-content p {
    margin: 0; /* Remove default margins */
    padding: 5px 0; /* Small padding for spacing */
    font-weight: bold;
    color: #adadad; /* Set the font color to a dark gray */
}

.footer-content strong {
    font-size: 1.1rem; /* Slightly increase font size for emphasis */
}

.footer-link {
    color: #5A57EC; /* Purple color for the link */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

.footer-link:hover {
    color: #2AD8A6; /* Green when hovered */
    text-decoration: underline;
}

/* Footer Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 15px 10px; /* Adjust padding for smaller screens */
    }
    .footer-content strong {
        font-size: 1rem; /* Slightly reduce text size on small screens */
    }
}

/* Full-width gray background for the section */
.contact-section {
    background-color: #ffffff; /* Light gray background */
    padding: 50px 0; /* Padding to ensure space around the form */
    width: 100vw; /* Full-width background */
    padding-left: 15px;
    padding-right: 15px;
}

/* Contact form wrapper to center the form within the container */
.contact-form-wrapper {
    background-color: white; /* Background color for the form itself */
    padding: 30px;
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow */
    margin: 0 auto; /* Center the form */
    max-width: 600px; /* Limit the maximum width of the form */
}

/* Form inputs */
.form-control {
    border: 1px solid #ccc; /* Lighter border color */
    border-radius: 5px; /* Rounded corners for inputs */
    padding: 10px;
    margin-bottom: 15px;
    width: 100%; /* Full width of the form inputs */
}

/* Button styling */
.btn2-theme {
    background-color: #2AD8A6; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn2-theme:hover {
    background-color: #2AD8A6; /* Darker green on hover */
}

/* Default for larger screens */
section {
    scroll-margin-top: 30vh;
}

/* For screens smaller than 768px (typical mobile size) */
@media (max-width: 768px) {
    section {
        scroll-margin-top: 10vh; /* Reduce the margin for mobile devices */
    }
}

#team {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

#contact {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

#products {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

#features {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

#services {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

.description-link {
    color: #5A57EC; /* Purple color for the link */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

.description-link:hover {
    color: #2AD8A6; /* Green when hovered */
    text-decoration: underline;
}

/* 404 Page Styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #f8f9fa; /* Light gray background */
}

h1.display-1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem; /* Adjusted size for mobile visibility */
    font-weight: bold;
    color: #5A57EC; /* Purple text for main heading */
    margin-bottom: 0.5rem;
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.0rem; /* Adjusted size for smaller screens */
    color: #333;
    margin-bottom: 1rem;
    padding-left: 20px;
    padding-right: 20px;
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; /* Adjusted size for smaller screens */
    color: #333;
    margin-bottom: 1rem;
    padding-left: 20px;
    padding-right: 20px;
}

p.lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-theme {
    background-color: #2AD8A6; /* Same green as other buttons */
    color: white;
    padding: 8px 16px; /* Reduced padding to make the button smaller */
    font-size: 1.0rem; /* Slightly smaller font size */
    max-width: 150px;
    border-radius: 5px;
    display: inline-block; /* Ensures content inside the button is centered */
    text-align: center; /* Center text inside the button */
    margin: 0 auto; /* Center the button horizontally */
}

.btn-theme:hover {
    background-color: #5A57EC; /* Coffee color */
    color: black;
}

/* Rounded image and responsive size */
img.rounded-image {
    max-width: 80%; /* Ensure the image scales responsively */
    height: auto;
    border-radius: 20px; /* Rounded corners for the robot image */
    max-width: 200px; /* Smaller size for mobile */
    margin-top: -40%;
}

@media (min-width: 768px) {
    img.rounded-image {
        max-width: 300px; /* Larger size for tablets and up */
    }

    .btn-theme {
        background-color: #2AD8A6; /* Same green as other buttons */
        color: white;
        padding: 8px 16px; /* Reduced padding to make the button smaller */
        font-size: 1.2rem; /* Slightly smaller font size */
        max-width: 250px;
        border-radius: 5px;
        display: inline-block; /* Ensures content inside the button is centered */
        text-align: center; /* Center text inside the button */
        margin: 0 auto; /* Center the button horizontally */
    }
}

/* Flexbox centering */
.vh-100 {
    height: 100vh;
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack items vertically */
}

.text-center {
    text-align: center;
}

/* PRODUCT */
#products .row.g-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamically adjust columns */
    gap: 30px;
    justify-items: center;
    align-items: start;
}

/* Initial hidden state for the products */
.product {
    opacity: 0;
    transform: translateX(-100px); /* Positioned to the left */
    transition: transform 1.5s ease, opacity 1.5s ease; /* Slower transition (1.5s) */
}

/* When the element is in view, it slides in and becomes visible */
.product.visible {
    opacity: 1;
    transform: translateX(0); /* Slides back to its normal position */
}

/* Styling for the product blocks */
#products .product {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: center;
    max-width: 100%;
}

/* product icon and text alignment */
#products .product-element {
    margin-bottom: 15px;
}

#products .product-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

#products .product-info p {
    font-size: 1rem;
    text-align: justify;
}

/* Ensure consistent heading height */
#products h3 {
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap; /* Prevent the title from breaking into multiple lines */
    overflow: hidden;     /* Hide any overflowed text */
    text-overflow: ellipsis; /* Display an ellipsis (...) for overflowed text */
    margin-bottom: 20px;
}

/* Flexbox for product-info for vertical alignment */
#products .product-info {
    flex-grow: 1; /* Ensures the text block grows to fill the height */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Ensure paragraphs align properly */
#products p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1080px) {
    #products .row.g-4 {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
        gap: 20px; /* Adjust gap for smaller screens */
    }
}

/* product hover effect */
.product-element {
    font-size: 50px;
    color: #17a2b8;
}

.product-icon {
    font-size: 50px;
    transition: opacity 0.3s ease;
}

.product:hover .product-icon {
    opacity: 0;
}

.product-info {
    transition: transform 0.3s ease;
}

.product:hover .product-info {
    transform: translateY(-20px);
}

/* product hover effect */
.product-element {
    font-size: 50px;
    color: #17a2b8;
    transition: opacity 0.3s ease;
}

.product:hover .product-element {
    opacity: 0;
}

.product-info {
    transition: transform 0.3s ease;
}

.product:hover .product-info {
    transform: translateY(-20px);
}

/* FEATURE */
#features .row.g-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamically adjust columns */
    gap: 30px;
    justify-items: center;
    align-items: start;
}

/* Initial hidden state for the features */
.feature {
    opacity: 0;
    transform: translateX(-100px); /* Positioned to the left */
    transition: transform 1.5s ease, opacity 1.5s ease; /* Slower transition (1.5s) */
}

/* When the element is in view, it slides in and becomes visible */
.feature.visible {
    opacity: 1;
    transform: translateX(0); /* Slides back to its normal position */
}

/* Styling for the feature blocks */
#features .feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: center;
    max-width: 100%;
}

/* feature icon and text alignment */
#features .feature-element {
    margin-bottom: 15px;
}

#features .feature-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

#features .feature-info p {
    font-size: 1rem;
    text-align: justify;
}

/* Ensure consistent heading height */
#features h3 {
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap; /* Prevent the title from breaking into multiple lines */
    overflow: hidden;     /* Hide any overflowed text */
    text-overflow: ellipsis; /* Display an ellipsis (...) for overflowed text */
    margin-bottom: 20px;
}

/* Flexbox for feature-info for vertical alignment */
#features .feature-info {
    flex-grow: 1; /* Ensures the text block grows to fill the height */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Ensure paragraphs align properly */
#features p {
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1080px) {
    #features .row.g-4 {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
        gap: 20px; /* Adjust gap for smaller screens */
    }
}

/* feature hover effect */
.feature-element {
    font-size: 50px;
    color: #17a2b8;
}

.feature-icon {
    font-size: 50px;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon {
    opacity: 0;
}

.feature-info {
    transition: transform 0.3s ease;
}

.feature:hover .feature-info {
    transform: translateY(-20px);
}

/* feature hover effect */
.feature-element {
    font-size: 50px;
    color: #17a2b8;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-element {
    opacity: 0;
}

.feature-info {
    transition: transform 0.3s ease;
}

.feature:hover .feature-info {
    transform: translateY(-20px);
}

#features {
    margin-top: 0px;
    display: flex;            /* Use Flexbox for layout */
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
}

#features {
    margin-left: 0;
    margin-right: 0;
}

#features .row.g-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid to fit container */
    gap: 30px;
    justify-items: center;
    align-items: start;
}

#services {
    margin-left: 0;
    margin-right: 0;
}

#services .row.g-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust grid to fit container */
    gap: 30px;
    justify-items: center;
    align-items: start;
}

#services, #products, #features {
    margin-bottom: -80px;
}

.blackened {
    color: black !important;
    font-weight: bold; /* Optional: Makes the active/clicked link bold */
}
