/* Main Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu .nav-item {
    display: inline-block;
    position: relative;
    color: #f0f4f7;
    margin: 0 10px; /* Add spacing between nav items */
}

/* Submenu Container */
.nav-item .submenu {
    display: none;
    position: absolute;
    top: 100%; /* Position below the nav item */
    left: 0;
    background-color: #f0f4f7;
    opacity: 0.95;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
    width: 250px;
    min-width: max-content; /* Ensure submenu is at least as wide as its content */
}

/* Show submenu on hover */
.nav-item:hover .submenu {
    display: block;
}

/* Submenu Items */
.nav-item .submenu li {
    list-style: none;
    margin-bottom: 5px;
}

.nav-item .submenu li a {
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
}

/* Submenu Heading */
.nav-item .submenu li a.submenu-heading {
    color: #ad2b43;
    font-weight: bold;
    padding-top: 10px;
}

/* Submenu Item */
.nav-item .submenu li a.submenu-item {
    padding-left: 15px;
}

/* Hover States */
.nav-item .submenu li a:hover {
    color: #ad2b43;
}

.nav-item .submenu li a.submenu-heading:hover {
    color: #000000;
}
.cta-button {
    margin-left: 40%;
}

.no-indentation-list {
    margin: 0 !important;
    padding: 5% !important;
}

.sa-button-centered {
    background-color: #ad2b43; /* CyberPro Solutions red */
    color: white;
    margin-top: 20px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 4px 2px;
    cursor: pointer;
    width: 200px;
    border-radius: 5px; /* Slightly rounded borders */
}

/* SA buttons */
.sa-button {
    text-align: center;
    margin-top: 8px;
    padding: 8px 24px;
    border-radius: 4px;
    background-color: #98253a;
    font-family: Rubik, sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sa-button:hover {
    background-color: #c7344f;
}

.main-summary-container2 {
    display: flex;
    flex-direction: row; /* Ensure items are side-by-side */
    justify-content: space-between; /* Space between image and text */
    align-items: stretch; /* Stretch items to fill the container height */
    /* Space below the container */
}

.main-image-container2 {
    margin-top: 20px;
    flex: 1; /* Allow the image container to grow */
    min-width: 50%;
    max-width: 70%; /* Maximum width of the image container */
    margin-left: 50px; /* Space between image and text */
}
.main-image-container2 img {
    width: 100%; /* Image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
}

.main-summary-container {
    display: flex;
    flex-direction: row; /* Ensure items are side-by-side */
    justify-content: space-between; /* Space between image and text */
    align-items: stretch; /* Stretch items to fill the container height */
    /* Space below the container */
}

.main-image-container {
    flex: 1; /* Allow the image container to grow */
    min-width: 30%;
    max-width: 70%; /* Maximum width of the image container */
    margin-right: 20px; /* Space between image and text */
}
.main-image-container img {
    width: 100%; /* Image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
}

.main-summary {
    flex: 2; /* Allow the text container to take more space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the text content */
    text-align: left; /* Align text to the left */
}

.temp-CTA-container {
    margin-top: 50px;
    display: flex; /* Use flexbox to layout children */
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 25px;
    background-color: #f0f4f7;
    border-radius: 5px; /* Slightly rounded borders */
}

.services-container {
    margin-bottom: 50px;
    display: flex; /* Use flexbox to layout children */
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 25px;
    border-radius: 5px; /* Slightly rounded borders */
}

.testimonial-section {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.testimonial-content {
    max-width: 600px;
    margin: auto;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    color: #333;
}

.testimonial-info {
    font-weight: bold;
    color: #555;
}

.services-section {
    margin: 50px 0;
    padding: 0 20px;
}

.services-header {
    margin-bottom: 40px;
    font-family: Rubik, sans-serif;
    color: #ad2b43;
    font-size: 23px;
    line-height: 39px;
    font-weight: 400;
    text-align: center;
}

.service-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.service-title {
    color: #ad2b43;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: Rubik, sans-serif;
}

.service-description {
    color: #10181f;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

.service-features {
    display: grid;
    gap: 25px;
}

.feature {
    padding: 20px;
    background-color: #f0f4f7;
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.feature-title {
    font-weight: bold;
    color: #10181f;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: Rubik, sans-serif;
}

.feature-description {
    color: #10181f;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
}

.feature-title::before {
    /* Option 2: Heavy checkmark in circle */
    content: "✓ ";
    color: #ad2b43; /* CyberPro Solutions red */
    font-weight: bold;
    font-size: 24px; /* Increased from 18px */
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-section {
        padding: 0 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-features {
        gap: 15px;
    }

    .feature {
        padding: 15px;
    }
}

.CTA-container {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex; /* Use flexbox to layout children */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: #f0f4f7;
    border-radius: 5px; /* Slightly rounded borders */
}

.CTA-container p {
    text-align: center;
}

.CTA-container .sa-button {
    align-items: center;
}

.main-CTA-container {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background-color: #f0f4f7;
}

.main-CTA-container .sa-button {
    margin-left: 50px;
}

.main-CTA-container .cta-text {
    margin-right: 50px;
    font-weight: bold;
    color: #10181f !important;
}

.cta-text {
    color: #10181f !important;
    font-style: bold;
}

.expertise-content {
    flex: 1; /* Allows the content to take up the remaining space */
    margin-top: 50px;
}

.expertise-header {
    margin-top: 50px;
    margin-bottom: 10px;
    font-family: Rubik, sans-serif;
    color: #ad2b43;
    font-size: 23px;
    line-height: 39px;
    font-weight: 400;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Two columns */
    gap: 20px; /* Spacing between cards */
    padding: 20px;
}

.expertise-card {
    border: 1px solid #ddd; /* Optional: adds a border */
    overflow: hidden; /* Ensures content does not overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for depth */
    background-color: #f0f4f7;
    border-radius: 5px; /* Slightly rounded borders */
    padding: 20px;
    transition: transform 0.2s;
    text-align: center;
}

.expertise-card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    background-color: #f0f4f7;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.card-link {
    display: inline-block;
    margin-top: 10px;
    color: #ad2b43;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr; /* One column on smaller screens */
    }
}

/*Software Assurance Page CSS */

#content {
    margin-top: 50px;
    text-align: center;
}

section.timeline-outer {
    width: 80%;
    margin: 0 auto;
}

.timeline {
    border-left: 8px solid #ad2b43;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    box-shadow:
        0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 50px auto;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4em;
    padding: 20px;
    list-style: none;
    text-align: left;
}

.timeline .event {
    border-bottom: 1px solid rgba(160, 160, 160, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
}

.timeline .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
}

.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    left: -177.5px;
    content: attr(data-date);
    text-align: right;
    min-width: 120px;
}

.timeline .event:after {
    box-shadow: 0 0 0 8px #ad2b43;
    left: -30px;
    background: #ad2b43;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
    top: 5px;
}

.tools_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    margin-bottom: 50px;
    margin-top: 50px;
}

.tool_description {
    font-weight: lighter;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(20% - 10px); /* Adjust based on the container width and desired spacing */
    text-align: center;
    text-decoration: none;
    color: inherit; /* Keeps the text color the same as if it wasn't a link */
    margin-bottom: 20px;
}

.tool img {
    width: 100px; /* Fixed size for icons */
    height: 100px; /* Fixed size for icons */
}

.tool span {
    margin-top: 10px; /* Space between icon and text */
}

.assessment-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 50px;
}

.pdf-container {
    width: 55%; /* Each container takes roughly half the width */
    min-height: 600px; /* Set a minimum height */
    display: flex;
    flex-direction: column; /* Flexbox to allow the iframe to grow */
    border: 1px solid #ccc; /* A thin, light gray border */
}

.text-container {
    width: 40%; /* Each container takes roughly half the width */
    display: flex;
    flex-direction: column; /* Flexbox to allow the iframe to grow */
}

.pdf-container iframe {
    width: 100%;
    flex-grow: 1; /* Make the iframe take up the remaining height */
    border: none;
}

.casestudy-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 50px;
}

.image1-container {
    width: 48%; /* Slightly less than half to account for margin/padding */
}

.text1-container {
    width: 48%; /* Slightly less than half to account for margin/padding */
}

.sa1-button {
    display: block;
    margin-top: 20px;
}

.casestudy-header {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .casestudy-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .text1-container h4 {
        text-align: center;
    }

    .image1-container,
    .text1-container {
        width: 100%;
    }

    .image1-container img {
        max-width: 50%;
        height: auto;
        justify-content: center;
        margin: 0 auto; /* Center the image horizontally */
        display: block;
    }

    .sa1-button {
        justify-content: center;
        display: block;
        margin: 20px auto; /* Center the image horizontally */
    }
    .sa-button {
        justify-content: center;
        display: block;
        margin: 20px auto; /* Center the image horizontally */

        max-width: 50%;
    }
    .assessment-container {
        flex-direction: column;
        align-items: flex-start; /* Avoid vertical stretching */
        margin-bottom: 0%;
    }

    .text-container h5 {
        text-align: center;
    }

    .pdf-container,
    .text-container {
        width: 100%; /* Ensure full width */
        margin-bottom: 10px; /* Reduce space between the two */
    }

    .pdf-container iframe {
        height: 400px; /* Reduce height for smaller screens */
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .tool {
        width: calc(25% - 20px); /* Adjust width for fewer items per row */
    }
}

/* Media Query for large phones and small tablets */
@media (max-width: 768px) {
    .tool {
        width: calc(50% - 20px); /* Adjust width for fewer items per row */
    }
}

/* Media Query for small phones */
@media (max-width: 480px) {
    .tool {
        width: 100%; /* Full width for each tool */
        margin: 10px 0; /* Vertical margin only, to stack tools vertically without horizontal spacing */
    }
}
@media (max-width: 768px) {
    .main-summary-container {
        display: flex;
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center the container's content horizontally */
    }

    .main-image-container {
        width: 100%; /* Ensure the image container takes full width */
        text-align: center; /* Center the image inside the container */
        margin-bottom: 20px; /* Add space below the image */
    }

    .main-image-container img {
        display: block; /* Ensure image is block level to respond to margin auto */
        max-width: 50%; /* Limit the image width to 50% of the container */
        margin: 0 auto; /* Center the image within the container */
        height: auto;
    }

    .title {
        text-align: center;
    }
}

/*




 @media (max-width: 945px) {
 .timeline .event::before {
  left: 0.5px;
  top: 20px;
  min-width: 0;
  }
 .timeline p {
  padding-top: 20px;
 }
 section.lab h3.card-title {
  padding: 5px;
 }
 }


 @media (max-width: 768px) {
 .timeline .event::before {
  left: 0.5px;
  top: 20px;
  min-width: 0;


 }
 .timeline .event:nth-child(1)::before,
 .timeline .event:nth-child(3)::before,
 .timeline .event:nth-child(5)::before {
  top: 38px;
 }
 .timeline h3 {
  font-size: 16px;
 }
 .timeline p {
  padding-top: 20px;
 }
 }


 @media (max-width: 600px) {
 .tool {
  width: calc(50% - 10px); /* Adjust for smaller screens
 }
 } */

.servicename {
    color: #f0f4f7;
    margin-top: 50px;
    text-align: center;
}

.additional {
    text-align: center;
}

.bchain-expertise-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto the next line on smaller screens */
    justify-content: space-between;
}

.column-expertise {
    flex: 1; /* This ensures that the columns take up equal width */
    padding: 10px; /* Optional, for some spacing */
    min-width: 250px;
}

ul.expertise-list > li {
    margin-bottom: 10px; /* Adds some space between list items */
}
/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
    .bchain-expertise-container {
        flex-direction: column; /* Stacks the flex items vertically */
    }

    .column-expertise {
        /* Takes full width */
        flex-basis: 100%;
    }
}

.cards.aiml {
    background-image:
        linear-gradient(135deg, rgba(42, 51, 61, 0.5), rgba(16, 24, 31, 0.5)), url("../images/AI_ML.svg"),
        linear-gradient(135deg, #2a333d, #10181f);
    background-position: 50% 50%;
    background-size: auto, 68%, auto;
    background-repeat: repeat, no-repeat, repeat;
}

.cards.appsec {
    background-image:
        linear-gradient(135deg, rgba(42, 51, 61, 0.5), rgba(16, 24, 31, 0.5)), url("../images/ApplicationSecurity.svg"),
        linear-gradient(135deg, #2a333d, #10181f);
    background-position: 50% 50%;
    background-size: auto, 68%, auto;
    background-repeat: repeat, no-repeat, repeat;
}

.cards.block {
    background-image:
        linear-gradient(135deg, rgba(42, 51, 61, 0.5), rgba(16, 24, 31, 0.5)), url("../images/Blockchain.svg"),
        linear-gradient(135deg, #2a333d, #10181f);
    background-position: 50% 50%;
    background-size: auto, 68%, auto;
    background-repeat: repeat, no-repeat, repeat;
}

.cards.crypto {
    background-image:
        linear-gradient(135deg, rgba(42, 51, 61, 0.5), rgba(16, 24, 31, 0.5)), url("../images/Cryptography.svg"),
        linear-gradient(135deg, #2a333d, #10181f);
    background-position: 50% 50%;
    background-size: auto, 68%, auto;
    background-repeat: repeat, no-repeat, repeat;
}

.cards-container {
    display: flex;
    width: 100%;
    justify-content: flex-start; /* Align items to the start on the main-axis */
    align-items: left; /* Centers items vertically, adjust as needed */
    flex-wrap: wrap; /* Allows items to wrap onto the next line */
}
@media (max-width: 1028px) {
    .cards-container {
        display: flex;
        justify-content: center; /* Center cards horizontally */
        align-items: center; /* Center cards within the container */
        width: 100%; /* Ensure the container takes the full width */
    }
}

.cards {
    width: 175px;
    height: 175px;
    border: 1px solid #ddd;
    margin: 15px; /* Provides space around each card */
    font-weight: normal;
    text-align: center;
    border-radius: 5px; /* Slightly rounded borders */
}

.card:hover {
    background-color: #f0f4f7;
    cursor: pointer;
    transform: scale(1.05);
}

.forresterlogo {
    max-width: 175px;
    max-height: 175px;
}
.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 50px 0;
    width: 100%;
}

.card-container a {
    flex: 1;
    max-width: calc(33.333% - 14px);
    text-decoration: none;
}

.card {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 20px auto;
}

.card-content {
    padding: 20px;
    flex: 1;
}

.card-header {
    margin: 0 0 10px 0;
    font-family: Rubik, sans-serif;
    color: #10181f;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    text-align: center;
}

.card-paragraph {
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
    color: #10181f;
    font-size: 16px;
    line-height: 30px;
    font-weight: normal;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card-container a {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
}

.alliance-container {
    padding: 25px;
    background-color: #f0f4f7;
    border-radius: 5px; /* Slightly rounded borders */
    height: auto;
    margin-bottom: 50px;
}

.card-container-alliances {
    display: flex;
    justify-content: flex-start; /* Align cards to the left */
    align-items: flex-start; /* Align items to the top of the container */
    gap: 20px; /* Space between cards */
    max-width: 100%; /* Adjust as needed */
    overflow: visible; /* Ensure content does not overflow */
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
}

/* Individual card style */
.card-alliance {
    display: flex;
    flex-direction: column; /* Stack image on top of text */
    align-items: center; /* Center content horizontally */
    height: auto; /* Allow height to adjust based on content */
    flex: 1 1 calc(50% - 20px); /* Adjust width to fit two cards in a row */
    max-width: 100%; /* Set a max-width for the card */
    border: 1px solid #ddd; /* Adds a border */
    overflow: visible; /* Ensure content does not overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow for depth */
    background: white; /* Sets a background color */
    border-radius: 5px; /* Slightly rounded borders */
    padding: 10px; /* Adds padding inside the card */
    margin-bottom: 20px; /* Adds some space below each card */
}

/* Image style */
.card-alliance img {
    width: 70%; /* Fixed width for the images */
    height: 100px; /* Fixed height for the images */
    object-fit: contain; /* Ensure the images cover the area */
    margin-bottom: 10px; /* Space between the image and the text */
    align-items: center;
}

/* Content inside the card */
.card-content-alliance {
    flex: 1; /* Make the content area flexible */
    text-align: center; /* Center the text */
    padding: 10px; /* Add padding inside the content */
}

/* Card hover effect */
.card-alliance:hover {
    background-color: #f0f4f7; /* Change background color on hover */
    cursor: pointer;
}

/* Text paragraph style */
.card-paragraph-alliance {
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    color: #10181f;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    text-align: left;
    height: auto; /* Allow height to adjust based on content */
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .card-container-alliances {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards */
    }

    .card-alliance {
        width: 100%; /* Full width on small screens */
        max-width: none; /* Remove max-width */
    }

    .card-alliance img {
        height: auto; /* Adjust image height to be responsive */

        align-items: center;
    }
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column; /* Stack cards vertically on small screens */
    }
}

@media (max-width: 768px) {
    .main-summary-container2 {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center items in the container */
    }

    .main-image-container2 {
        margin-left: 0; /* Remove margin between text and image */
        min-width: 100%; /* Image container takes full width */
        max-width: 100%; /* Image container takes full width */
    }

    .cta-button {
        margin-left: 0; /* Center the call-to-action button */
    }
}

.ecosystem-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;

    margin-bottom: 50px;
}

/* Ecosystem Button Container */
.ecosystem-button-container {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 10px;
    justify-content: center;
    margin-bottom: 0; /* Ensure no margin at the bottom */
}

/* Ecosystem Button */
.ecosystem-button {
    background-color: #ad2b43;
    border: 1px solid #ddd; /* Optional: adds a border */
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    padding: 10px 20px; /* Add padding for better appearance */
    cursor: pointer;
    border-top-left-radius: 5px; /* Rounded corners for top left */
    border-top-right-radius: 5px; /* Rounded corners for top right */
    white-space: nowrap; /* Prevent text from wrapping */
    font-family: Rubik, sans-serif;
    text-transform: uppercase;
}

/* Active Button */
.ecosystem-button.active {
    background-color: #c7344f;
    color: white;
    border-bottom: 1px solid #f0f4f7; /* Ensure no margin at the bottom */
}

/* Ecosystem Card */
.ecosystem-card {
    display: none;
    padding: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: -4px; /* Use negative margin to remove gap */
    border: 1px solid #ddd; /* Optional: adds a border */
    overflow: hidden; /* Ensures content does not overflow */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for depth */
    background: white; /* Optional: sets a background color */
    border-radius: 5px; /* Slightly rounded borders */
}

.ecosystem-card-text {
    flex: 1;
    margin-right: 10%;
}

.ecosystem-card- header {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 10%;
}

.ecosystem-card-content {
    margin-top: 10px;
    margin-left: 10%;
}

.ecosystem-card-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-right: 10%;
}

/* Expertise Paragraph */
.expertise-p {
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .ecosystem-button-container {
        gap: 0px; /* Reduce gap between buttons */
    }

    .ecosystem-card-image {
        width: 75px;
        height: 150px;
        object-fit: contain;
        margin-right: 10%;
        align-items: top;
        align-self: flex-start;
    }
    .ecosystem-button {
        padding: 5px 10px; /* Reduce padding */
        margin: 1px; /* Reduce margin */
    }
}

.copyright {
    margin-top: 75px;
    color: #f0f4f7;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* Lead Times Section Styling */
.lead-times-section {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 25px;
    background-color: #f0f4f7;
    border-radius: 5px;
}

.lead-times-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Rubik, sans-serif;
    color: #ad2b43;
    font-size: 23px;
    line-height: 39px;
    font-weight: 400;
}

.lead-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.lead-time {
    padding: 15px;
    border-left: 4px solid #ad2b43;
    background-color: white;
    border-radius: 0 5px 5px 0;
    transition: transform 0.2s ease;
}

.lead-time:hover {
    transform: translateX(5px);
}

.lead-time p {
    margin: 0;
    color: #10181f;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.lead-time-label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .lead-times-section {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .lead-times-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lead-time {
        text-align: left;
    }
}

.opensource-index a {
    font-size: 14px;
    min-height: 48px;
}

/* Target the input fields within the specific form */
#aiml-training-form .hs-form input[type="text"],
#aiml-training-form .hs-form input[type="email"],
#aiml-training-form .hs-form input[type="tel"],
#aiml-training-form .hs-form input[type="number"],
#aiml-training-form .hs-form textarea {
    background-color: #f9f9f9; /* Soft light background */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 8px; /* Smooth, rounded corners */
    padding: 12px; /* Comfortable padding */
    font-size: 16px; /* Modern font size */
    width: 100%; /* Full width input fields */
    box-sizing: border-box; /* Ensure padding doesn’t affect width */
    transition: all 0.3s ease; /* Smooth transition for interactions */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Change border color and shadow on focus */
#aiml-training-form .hs-form input[type="text"]:focus,
#aiml-training-form .hs-form input[type="email"]:focus,
#aiml-training-form .hs-form input[type="tel"]:focus,
#aiml-training-form .hs-form input[type="number"]:focus,
#aiml-training-form .hs-form textarea:focus {
    border-color: #98253a; /* Light blue focus border */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2); /* Stronger shadow on focus */
    outline: none; /* Remove default outline */
}

/* Customize the submit button */
#aiml-training-form .hs-form input[type="submit"] {
    background-color: #98253a;
    font-family: Rubik, sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 20px; /* Comfortable padding */
    border-radius: 8px; /* Smooth, rounded corners */
    border: none; /* Remove default border */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth hover transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-top: 5%;
}

/* Add hover and focus effects to the submit button */
#aiml-training-form .hs-form input[type="submit"]:hover {
    background-color: #c7344f;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

/* Form container styling for a modern feel */
#aiml-training-form .hs-form {
    max-width: 6000px;
    flex-direction: column; /* Ensure form fields stack vertically */
    margin: 0 auto; /* Center the form on the page */
    padding: 20px; /* Add padding around the form */
    background-color: #f0f4f7;
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Add space between form elements */
#aiml-training-form .hs-form input,
#aiml-training-form .hs-form textarea {
    margin-bottom: 15px; /* Space between fields */
}

/* Add padding to the textarea for a better feel */
#aiml-training-form .hs-form textarea {
    height: 120px; /* Increase height of textarea */
}

.contact-intro {
    padding-top: 24px;
    padding-bottom: 24px;
}

.left-content {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
}

/* Container for the two columns */
.landing-page-top-content {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    justify-content: space-between; /* Space between the columns */
    max-width: 1200px; /* Set a maximum width for the content */
    margin: 0 auto; /* Center the content */
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 50px; /* Maximum gap between columns */
    padding: 0 20px; /* Padding for the left and right sides */
}

.background {
    background-image: url("../images/whitewaves.jpg");
    background-size: contain;
}
/* Columns */
.landing-page-top-content .w-col {
    flex: 1; /* Columns take up equal space */
    min-width: 300px; /* Set a minimum width for each column */
    box-sizing: border-box; /* Ensure padding and border are included in the width calculation */
}

/* Stack columns vertically on smaller screens */
@media (max-width: 768px) {
    .landing-page-top-content {
        flex-direction: column; /* Stack the columns vertically */
    }

    .landing-page-top-content .w-col {
        max-width: 100%; /* Full width for stacked columns */
        margin-bottom: 20px; /* Add space between stacked columns */
    }
}
.landing-expertise {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: rgba(4, 19, 30, 0.131);
}

.lp-image {
    max-width: 425px;
    max-height: 425px;
    margin-bottom: -50px; /* Reduce this value to bring the title closer */
    margin-top: -50px;
    justify-content: center;
}

.lp-title {
    padding-left: 5%;
    padding-right: 5%;
    display: block;
    font-size: 36px;
    line-height: 52px;
    letter-spacing: normal;
    margin-top: 10px; /* Add a small top margin to the title */
}
.lp-header {
    align-items: center;
    gap: 0; /* This removes any space between flex items */
}

.language-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.language {
    min-height: 80px;
    width: 100px;
    margin: 10px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Updated background paths to match working structure */
.solidity-logo {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/Solidity-logo.png");
}

.rust-logo {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/rust-logo.png");
}

.cairo-logo {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/cairo-logo.png");
}

.go-logo {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/Go-Logo_Aqua.png");
}

.move-logo {
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/Move-logo.png");
}

@media (max-width: 768px) {
    .language-container {
        flex-direction: column;
        align-items: center;
    }

    .language {
        margin: 10px 0;
    }
    /* Customize the submit button */
    #newsletter-form .hs-button {
        background-color: #ad2b43;
        font-family: Rubik, sans-serif;
        color: #fff;
        font-size: 14px;
        line-height: 30px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 12px 20px; /* Comfortable padding */
        border-radius: 8px; /* Smooth, rounded corners */
        border: none; /* Remove default border */
        cursor: pointer; /* Pointer cursor on hover */
        transition: all 0.3s ease; /* Smooth hover transition */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        margin-top: 5%;
    }
    /* Target the input fields within the specific form */
    #newsletter-form .hs-input {
        background-color: #f9f9f9; /* Soft light background */
        border: 1px solid #ccc; /* Light gray border */
        border-radius: 8px; /* Smooth, rounded corners */
        padding: 12px; /* Comfortable padding */
        font-size: 16px; /* Modern font size */
        width: 100%; /* Full width input fields */
        box-sizing: border-box; /* Ensure padding doesn’t affect width */
        transition: all 0.3s ease; /* Smooth transition for interactions */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }
}

/* careers-faq */
.faq-accordion {
    margin-bottom: 30px;
}
.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}
.faq-question {
    cursor: pointer;
    padding: 10px 0;
    list-style: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question h5 {
    margin: 0;
    font-weight: 600;
    display: inline-block;
}
.faq-question::after {
    content: "+";
    float: right;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}
details[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 10px;
    margin-bottom: 15px;
}
