.skip {
    color: black;
    font-family: 'Public Sans';
    font-size: 16px;
}

.skip a {
    background-color: white;
    color: black;
    font-size: 14px;
    font-family: 'POPPINS';
    top: -40px;
    position: absolute;
    z-index: 1;
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
}

.skip a:focus {
    top: 30px;
    position: absolute;
}

body {
    background-color: #F0F0EA;
    font-family: "Poppins", "Montseratt"
}

/* Phone screens */
@media screen and (max-width: 480px) {

    /* Your styles for small screens */
    p {
        font-size: 12px;
    }

    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo {
        width: 200px;
        height: auto;
        padding: 40px;
        margin-left: 30px;
        margin-bottom: -50px;
    }

    .top_bar {
        list-style: none;
        padding: 0;
        display: flex;
        margin-bottom: 20px;
    }

    .top_bar li {
        margin: 0 10px;
        /* Adjust the spacing between each navigation link */
    }

    .top_bar li a {
        text-decoration: none;
        color: #000000;
        /* Set the link text color */
        font-size: 12px;
        /* Adjust the font size as needed */
    }

    .top_bar li a:hover {
        color: #9b3123;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    footer {
        background-color: #f2f2f2;
        padding: 10px;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container img {
        width: 150px;
        /* Adjust the width of the logo */
        height: auto;
    }

    .logo-container p {
        font-size: 8px;
    }

    .bottom_bar {
        list-style: none;
        padding: 0;
        margin: 5px 0;
        /* Add spacing around the navigation links */
        display: flex;
        /* Display navigation links as a row */
        flex-wrap: wrap;
        /* Wrap to the next line if space is limited */
        justify-content: center;
        /* Center the navigation links horizontally */
    }

    .bottom_bar li {
        margin-right: 10px;
        font-size: 12px;
    }

    .bottom_bar li a:hover {
        color: #809BCE;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    .bottom_bar li a {
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }

    .footer-icons {
        display: flex;
        /* Display the icons as a flex row */
        justify-content: center;
        /* Center the icons horizontally */
        align-items: center;
        /* Center the icons vertically */
        margin-top: 10px;
        /* Add some spacing from the footer content above */
    }

    .footer-icons a {
        margin: 0 5px;
        /* Add some spacing between the icons */
    }

    .footer-icons img {
        width: 20px;
        height: auto;
    }

    .main {
        position: relative;
        background: url('../images/home_bg.png') center/cover no-repeat;
        color: #fff;
        /* Set the color of the text */
        text-align: center;
        padding: 100px 0px;
        /* Increase the padding to enlarge the div and create more space */
    }

    .main h1 {
        font-size: 18px;
        /* Set the font size for the heading */
        font-weight: bold;
        /* Set the font weight for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: 0px;
        /* Use negative margin to move the heading further up */
    }

    .main h2 {
        font-size: 14px;
        /* Set the font size for the subheading */
        font-style: italic;
        font-weight: lighter;
        margin-bottom: 20px;
        /* Reduce the margin to move the heading up */
        margin-top: -50px;
        /* Use negative margin to move the heading further up */
    }

    .future {
        margin-top: 50px;
        padding: 50px;
    }

    .future h2 {
        font-size: 14px;
        font-weight: lighter;
    }

    .future p {
        font-size: 12px;
        font-weight: lighter;
        font-style: italic;
    }

    /* CSS styles for the button */
    .explore-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #9b3123;
        color: #fff;
        font-size: 12px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 50px;
    }

    .explore-button:hover {
        background-color: #809BCE;
    }

    .working {
        padding: 50px;
        margin-top: 20px;
    }

    .working h2 {
        font-weight: lighter;
        font-size: 14px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -20px;
        /* Use negative margin to move the heading further up */
    }

    .working h3 {
        font-size: 12px;
        font-weight: bold;
        margin-top: -30px;
    }

    /* Flexbox container for the industries */
    .industries-container {
        display: flex;
        flex-wrap: wrap;
        /* Wrap items to next line if they exceed the container width */
        max-width: 100vw;
    }

    /* Individual industry card */
    .industries {
        width: 100px;
        height: auto;
        background-color: #9b3123;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 10px;
        /* Add spacing between the industry cards */
        margin-bottom: 20px;
    }

    .industries p {
        color: #f2f2f2;
    }

    /* Styling for the "Learn More" button inside the card */
    .learn-more-btn {
        background-color: #f2f2f2;
        color: #9b3123;
        border: none;
        padding: 6px 10px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 12px;
        transition: background-color 0.3s ease;
    }

    .learn-more-btn:hover {
        background-color: #809BCE;
    }

    .ev-card,
    .industrial-card,
    .soldier-card {
        /* Your styles for the card */
        background-color: #f2f2f2;
        padding: 20px;
        /* Add some spacing around the card */
        max-width: 200px;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }

    #ab_ev,
    #ab_ie,
    #ab_me {
        width: 200px;
        height: auto;
        display: block;
        /* Ensure the image is treated as a block-level element */
        margin: 0 auto;
        /* Set the left and right margins to auto */
    }

    .ev-card h2,
    .industrial-card h2,
    .soldier-card h2 {
        margin-top: 5px;
        color: #9b3123;
        text-align: center;
        font-size: 14px;
        /* Adjust the font size as needed */
    }

    .ev-card p,
    .industrial-card p,
    .soldier-card p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 12px;
        /* Adjust the font size as needed */
    }


    .contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #f2f2f2;
        padding: 50px;
        margin-top: 50px;
    }

    .contact h2 {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 0;
        text-align: left;
        font-style: italic;
    }

    .contact-content {
        flex: 1;
        /* Allow the content to take up the remaining space */
    }

    .contact p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 12px;
        font-style: italic;
    }

    .contact-button {
        /* Styles for the button */
        padding: 5px 10px;
        background-color: #9b3123;
        color: #f2f2f2;
        font-size: 12px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 5px;
    }

    .contact-button:hover {
        background-color: #809BCE;
    }

    .partners {
        padding: 50px;
        margin-top: 100px;
    }

    .partners h2 {
        font-size: 14px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -100px;
        /* Use negative margin to move the heading further up */
    }

    .partners p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 12px;
    }

    .partner-logo {
        margin-right: 50px;
        width: 100px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .andrew-card,
    .neil-card,
    .jeff-card,
    .meera-card {
        /* Your styles for the card */
        background-color: #9b3123;
        padding: 20px;
        /* Add some spacing around the card */
        max-width: 200px;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }

    .andrew-card h2,
    .neil-card h2,
    .jeff-card h2,
    .meera-card h2 {
        color: white;
        font-size: 14px;
        /* Adjust the font size as needed */
    }

    .andrew-card h3,
    .neil-card h3,
    .jeff-card h3,
    .meera-card h3 {
        font-size: 14px;
        /* Adjust the font size as needed */
        font-style: italic;
        color: #f2f2f2;
    }

    .andrew-card p,
    .neil-card p,
    .jeff-card p,
    .meera-card p {
        color: #f2f2f2;
    }

    #contact-home {
        padding: 50px;
    }

    .contact-main h1 {
        font-size: 14px;
        margin-top: -20px;
        text-align: center;
    }

    .contact-main h2 {
        font-size: 12px;
        color: #9b3123;
        text-align: center;
        font-style: italic;
    }

    .contact_form {
        max-width: 200px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f2f2f2;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .fcf-form-class label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .fcf-form-class input[type="text"],
    .fcf-form-class textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 12px;
        box-sizing: border-box;
    }

    .fcf-form-class textarea {
        resize: vertical;
        min-height: 150px;
    }

    .fcf-form-class input[type="submit"] {
        background-color: #9b3123;
        color: #fff;
        border: none;
        padding: 6px 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 12px;
    }

    .fcf-form-class input[type="submit"]:hover {
        background-color: #809BCE;
    }

    #team-main {
        margin-top: -20px;
        padding: 50px;
    }

    #team-main h1 {
        font-size: 14px;
    }

    #team-main p {
        font-size: 12px;
    }

    .team {
        display: flex;
        /* Use flexbox to create a row layout */
        flex-wrap: wrap;
        justify-content: space-around;
        /* Spread the team members evenly in the row */
        margin: 10px;
        /* Optional margin around the team members row */
    }

    .team_member {
        flex: 1;
        /* Allow each team member div to take equal space in the row */
        text-align: center;
        margin: 10px;
    }

    .team_member img {
        width: 75px;
        height: 75px;
        object-fit: cover;
        border-radius: 50%;
        /* Make the image circular */
        display: block;
        margin: 0 auto;
        /* Center the image horizontally */
    }


    .team_member img:active,
    .team_member img:hover {
        border: 4px solid #809BCE;
    }

    .mission-main {
        padding: 50px;
    }

    .mission-main h1 {
        text-align: center;
        text-decoration: bold;
        font-size: 14px;
        margin-top: -20px;
    }

    .mission-main p {
        font-size: 12px;
    }

    br {
        /* Adjust the margin to reduce spacing between breaks */
        margin-bottom: 5px;
        /* Change this value as needed */
    }

    .agility-image {
        position: relative;
        background: url('../images/agility.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        padding: 50px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .agility-image h1,
    .sustainability-image h1,
    .innovation-image h1 {
        font-size: 14px;
        text-align: center;
        text-decoration: bold;
    }

    .agility,
    .sustainability,
    .innovation {
        padding: 50px;
        font-size: 12px;
    }

    .sustainability-image {
        position: relative;
        background: url('../images/sustainability.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        text-align: center;
        padding: 50px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }


    .innovation-image {
        position: relative;
        background: url('../images/innovation.png') center/cover no-repeat;
        color: black
            /* Set the color of the text */
            text-align: center;
        padding: 50px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .technologies-main {
        padding: 50px;
    }

    .technologies-main h1 {
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 20px;
    }

    .styled-text {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
    }

    .technologies-main p {
        font-style: italic;
    }

    .our-tech {
        margin-top: -70px;
        padding: 50px;
        margin-bottom: -100px;
    }

    .our-tech h1 {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
        font-size: 14px;
    }

    .electrode h2,
    .trade h2,
    .cycle h2,
    .manufacturability h2 {
        font-size: 14px;
    }

    .electrode_plating,
    .cycle_img {
        width: 200px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .trade-off_img,
    .man_img {
        width: 200px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .electrode,
    .cycle {
        margin-top: 20px;
        padding: 50px;
        align-items: center;
        /* Vertically center items within the flex container */
    }

    .trade,
    .manufacturability {
        margin-top: 50px;
        padding: 50px;
    }

}

/* Tablet screens */
@media screen and (min-width: 480px) and (max-width: 1200px) {

    /* Your styles for small screens */
    p {
        font-size: 14px;
    }

    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo {
        width: 250px;
        height: auto;
        padding: 40px;
        margin-left: 30px;
        margin-bottom: -50px;
    }

    .top_bar {
        list-style: none;
        padding: 0;
        display: flex;
        margin-bottom: 20px;
    }

    .top_bar li {
        margin: 0 10px;
        /* Adjust the spacing between each navigation link */
    }

    .top_bar li a {
        text-decoration: none;
        color: #000000;
        /* Set the link text color */
        font-size: 14px;
        /* Adjust the font size as needed */
    }

    .top_bar li a:hover {
        color: #9b3123;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    footer {
        background-color: #f2f2f2;
        padding: 10px;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container img {
        margin-top: 10px;
        width: 150px;
        /* Adjust the width of the logo */
        height: auto;
    }

    .logo-container p {
        margin-top: -5px;
        font-size: 12px;
    }

    .bottom_bar {
        list-style: none;
        padding: 0;
        margin: 5px 0;
        /* Add spacing around the navigation links */
        display: flex;
        /* Display navigation links as a row */
        flex-wrap: wrap;
        /* Wrap to the next line if space is limited */
        justify-content: center;
        /* Center the navigation links horizontally */
    }

    .bottom_bar li {
        margin-right: 10px;
        font-size: 14px;
    }

    .bottom_bar li a:hover {
        color: #809BCE;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    .bottom_bar li a {
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }

    .footer-icons {
        display: flex;
        /* Display the icons as a flex row */
        justify-content: center;
        /* Center the icons horizontally */
        align-items: center;
        /* Center the icons vertically */
        margin-top: 10px;
        /* Add some spacing from the footer content above */
    }

    .footer-icons a {
        margin: 0 5px;
        /* Add some spacing between the icons */
    }

    .footer-icons img {
        width: 20px;
        height: auto;
    }

    .main {
        position: relative;
        background: url('../images/home_bg.png') center/cover no-repeat;
        color: #fff;
        /* Set the color of the text */
        text-align: center;
        padding: 100px 0px;
        /* Increase the padding to enlarge the div and create more space */
    }

    .main h1 {
        font-size: 24px;
        /* Set the font size for the heading */
        font-weight: bold;
        /* Set the font weight for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: 0px;
        /* Use negative margin to move the heading further up */
    }

    .main h2 {
        font-size: 18px;
        /* Set the font size for the subheading */
        font-style: italic;
        font-weight: lighter;
        margin-bottom: 20px;
        /* Reduce the margin to move the heading up */
        margin-top: -50px;
        /* Use negative margin to move the heading further up */
    }

    .future {
        margin-top: 50px;
        padding: 50px;
    }

    .future h2 {
        font-size: 18px;
        font-weight: lighter;
    }

    .future p {
        font-size: 14px;
        font-weight: lighter;
        font-style: italic;
    }

    /* CSS styles for the button */
    .explore-button {
        display: inline-block;
        padding: 5px 20px;
        background-color: #9b3123;
        color: #fff;
        font-size: 12px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 20px;
    }

    .explore-button:hover {
        background-color: #809BCE;
    }

    .working {
        padding: 50px;
        margin-top: 20px;
    }

    .working h2 {
        font-weight: lighter;
        font-size: 18px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -20px;
        /* Use negative margin to move the heading further up */
    }

    .working h3 {
        font-size: 14px;
        font-weight: bold;
        margin-top: -30px;
    }

    /* Flexbox container for the industries */
    .industries-container {
        display: flex;
        flex-wrap: wrap;
        /* Wrap items to next line if they exceed the container width */
        max-width: 100vw;
    }

    /* Individual industry card */
    .industries {
        width: 150px;
        height: auto;
        background-color: #9b3123;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        margin: 10px;
        /* Add spacing between the industry cards */
        margin-bottom: 40px;
    }

    .industries p {
        color: #f2f2f2;
    }

    /* Styling for the "Learn More" button inside the card */
    .learn-more-btn {
        background-color: #f2f2f2;
        color: #9b3123;
        border: none;
        padding: 6px 10px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 12px;
        transition: background-color 0.3s ease;
    }

    .learn-more-btn:hover {
        background-color: #809BCE;
    }

    .ev-card,
    .industrial-card,
    .soldier-card {
        /* Your styles for the card */
        background-color: #f2f2f2;
        padding: 20px;
        /* Add some spacing around the card */
        max-width: 500PX;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }

    #ab_ev,
    #ab_ie,
    #ab_me {
        width: 150px;
        height: auto;
        display: block;
        /* Ensure the image is treated as a block-level element */
        margin: 0 auto;
        /* Set the left and right margins to auto */
    }

    .ev-card h2,
    .industrial-card h2,
    .soldier-card h2 {
        margin-top: 10px;
        color: #9b3123;
        text-align: center;
        font-size: 18px;
        /* Adjust the font size as needed */
    }

    .ev-card p,
    .industrial-card p,
    .soldier-card p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 14px;
        /* Adjust the font size as needed */
    }

    .contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #f2f2f2;
        padding: 50px;
        margin-top: 50px;
    }

    .contact h2 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 0;
        text-align: left;
        font-style: italic;
    }

    .contact-content {
        flex: 1;
        /* Allow the content to take up the remaining space */
    }

    .contact p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 14px;
        font-style: italic;
    }

    .contact-button {
        /* Styles for the button */
        padding: 10px 20px;
        background-color: #9b3123;
        color: #f2f2f2;
        font-size: 14px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 5px;
    }

    .contact-button:hover {
        background-color: #809BCE;
    }

    .partners {
        padding: 50px;
        margin-top: 100px;
    }

    .partners h2 {
        font-size: 18px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -100px;
        /* Use negative margin to move the heading further up */
    }

    .partners p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 14px;
    }

    .partner-logo {
        margin-right: 50px;
        width: 150px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .andrew-card,
    .neil-card,
    .jeff-card,
    .meera-card {
        /* Your styles for the card */
        background-color: #9b3123;
        padding: 20px;
        /* Add some spacing around the card */
        max-width: 500px;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }


    .andrew-card h2,
    .neil-card h2,
    .jeff-card h2,
    .meera-card h2 {
        color: white;
        font-size: 18px;
        /* Adjust the font size as needed */
    }

    .andrew-card h3,
    .neil-card h3,
    .jeff-card h3,
    .meera-card h3 {
        font-size: 16px;
        /* Adjust the font size as needed */
        font-style: italic;
        color: #f2f2f2;
        margin-top: -10px;
    }

    .andrew-card p,
    .neil-card p,
    .jeff-card p,
    .meera-card p {
        color: #f2f2f2;
    }

    #contact-home {
        padding: 50px;
    }

    .contact-main h1 {
        font-size: 24px;
        margin-top: -20px;
        text-align: center;
    }

    .contact-main h2 {
        font-size: 18px;
        color: #9b3123;
        text-align: center;
        font-style: italic;
    }

    .contact_form {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f2f2f2;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .fcf-form-class label {
        display: block;
        margin-bottom: 5px;
        font-size: 18px;
    }

    .fcf-form-class input[type="text"],
    .fcf-form-class textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .fcf-form-class textarea {
        resize: vertical;
        min-height: 150px;
    }

    .fcf-form-class input[type="submit"] {
        background-color: #9b3123;
        color: #fff;
        border: none;
        padding: 6px 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
    }

    .fcf-form-class input[type="submit"]:hover {
        background-color: #809BCE;
    }

    #team-main {
        margin-top: -20px;
        padding: 50px;
    }

    #team-main h1 {
        font-size: 24px;
    }

    #team-main p {
        font-size: 18px;
    }

    .team {
        display: flex;
        /* Use flexbox to create a row layout */
        flex-wrap: wrap;
        justify-content: space-around;
        /* Spread the team members evenly in the row */
        margin: 10px;
        /* Optional margin around the team members row */
    }

    .team_member {
        flex: 1;
        /* Allow each team member div to take equal space in the row */
        text-align: center;
        margin: 10px;
    }

    .team_member img {
        width: 125px;
        height: 125px;
        object-fit: cover;
        border-radius: 50%;
        /* Make the image circular */
        display: block;
        margin: 0 auto;
        /* Center the image horizontally */
    }


    .team_member img:active,
    .team_member img:hover {
        border: 4px solid #809BCE;
    }

    .mission-main {
        padding: 50px;
    }

    .mission-main h1 {
        text-align: center;
        text-decoration: bold;
        font-size: 24px;
        margin-top: -20px;
    }

    .mission-main p {
        font-size: 16px;
    }

    br {
        /* Adjust the margin to reduce spacing between breaks */
        margin-bottom: 5px;
        /* Change this value as needed */
    }

    .agility-image {
        position: relative;
        background: url('../images/agility.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        padding: 100px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .agility-image h1,
    .sustainability-image h1,
    .innovation-image h1 {
        font-size: 24px;
        text-align: center;
        text-decoration: bold;
    }

    .agility,
    .sustainability,
    .innovation {
        padding: 50px;
        font-size: 18px;
    }

    .sustainability-image {
        position: relative;
        background: url('../images/sustainability.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        text-align: center;
        padding: 100px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }


    .innovation-image {
        position: relative;
        background: url('../images/innovation.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        text-align: center;
        padding: 100px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .technologies-main {
        padding: 50px;
    }

    .technologies-main h1 {
        font-size: 24px;
        text-decoration: none;
        margin-bottom: 20px;
    }

    .styled-text {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
    }

    .technologies-main p {
        font-style: italic;
    }

    .our-tech {
        margin-top: -70px;
        padding: 50px;
        margin-bottom: -100px;
    }

    .our-tech h1 {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
        font-size: 24px;
    }

    .electrode h2,
    .trade h2,
    .cycle h2,
    .manufacturability h2 {
        font-size: 24px;
    }

    .electrode,
    .cycle {
        margin-top: 50px;
        padding: 50px;
        display: flex;
        /* Use flexbox for layout */
        align-items: center;
        /* Vertically center items within the flex container */
    }

    .content {
        flex: 1;
        /* Let the text content take all available space */
        padding-right: 10px;
        /* Add some spacing between the text and image */
    }

    .electrode_plating,
    .cycle_img {
        margin-left: 100px;
        width: 320px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .trade,
    .manufacturability {
        margin-top: 50px;
        padding: 50px;
        display: flex;
        /* Use flexbox for layout */
        align-items: center;
        /* Vertically center items within the flex container */
    }


    .trade-off_img,
    .man_img {
        width: 320px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
        margin-right: 100px;
        /* Add some spacing between the image and the text */
    }

}

/* Laptop / Desktop screens *1200 */
@media screen and (min-width: 1200px) {
    p {
        font-size: 28px;
    }

    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo {
        width: 275px;
        height: auto;
        padding: 40px;
        margin-left: 300px;
        margin-bottom: -50px;
    }

    .top_bar {
        list-style: none;
        padding: 0;
        display: flex;
        margin-bottom: 20px;
    }

    .top_bar li {
        margin: 0px 60px;
        /* Adjust the spacing between each navigation link */
    }

    .top_bar li a {
        text-decoration: none;
        color: #000000;
        /* Set the link text color */
        font-size: 18px;
        /* Adjust the font size as needed */
    }

    .top_bar li a:hover {
        color: #9b3123;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    footer {
        background-color: #f2f2f2;
        padding: 10px;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container img {
        margin-top: 10px;
        width: 200px;
        /* Adjust the width of the logo */
        height: auto;
    }

    .logo-container p {
        margin-top: -5px;
        font-size: 12px;
    }

    .bottom_bar {
        list-style: none;
        padding: 0;
        margin: 5px 0;
        /* Add spacing around the navigation links */
        display: flex;
        /* Display navigation links as a row */
        flex-wrap: wrap;
        /* Wrap to the next line if space is limited */
        justify-content: center;
        /* Center the navigation links horizontally */
    }

    .bottom_bar li {
        margin-right: 10px;
        font-size: 18px;
    }

    .bottom_bar li a:hover {
        color: #809BCE;
        /* Set the link text color on hover */
        text-decoration: underline;
    }

    .bottom_bar li a {
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }

    .footer-icons {
        display: flex;
        /* Display the icons as a flex row */
        justify-content: center;
        /* Center the icons horizontally */
        align-items: center;
        /* Center the icons vertically */
        margin-top: 10px;
        /* Add some spacing from the footer content above */
    }

    .footer-icons a {
        margin: 0 5px;
        /* Add some spacing between the icons */
    }

    .footer-icons img {
        width: 20px;
        height: auto;
    }

    .main {
        position: relative;
        background: url('../images/home_bg.png') center/cover no-repeat;
        background-size: contain;
        color: #000;
        /* Set the color of the text */
        text-align: center;
        padding: 275px 0px;
        /* Increase the padding to enlarge the div and create more space */
    }

    .main h1 {
        font-size: 54px;
        /* Set the font size for the heading */
        font-weight: bold;
        /* Set the font weight for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -30px;
        /* Use negative margin to move the heading further up */
    }

    .main h2 {
        font-size: 32px;
        /* Set the font size for the subheading */
        font-style: italic;
        font-weight: lighter;
        margin-bottom: 20px;
        /* Reduce the margin to move the heading up */
        margin-top: -50px;
        /* Use negative margin to move the heading further up */
    }

    .future {
        margin-top: 60px;
        padding: 100px;
    }

    .future h2 {
        font-size: 36px;
        font-weight: lighter;
    }

    .future p {
        font-size: 24px;
        font-weight: lighter;
        margin-bottom: 50px;
        font-style: italic;
    }

    /* CSS styles for the button */
    .explore-button {
        display: inline-block;
        padding: 10px 30px;
        background-color: #9b3123;
        color: #fff;
        font-size: 24px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 8px;
    }

    .explore-button:hover {
        background-color: #809BCE;
    }

    .working {
        padding: 100px;
        margin-top: 80px;
    }

    .working h2 {
        font-weight: lighter;
        font-size: 36px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -100px;
        /* Use negative margin to move the heading further up */
    }

    .working h3 {
        font-size: 24px;
        font-weight: bold;
        margin-top: -30px;
    }

    /* Flexbox container for the industries */
    .industries-container {
        display: flex;
        flex-wrap: wrap;
        /* Wrap items to next line if they exceed the container width */
        max-width: 100vw;
    }

    /* Individual industry card */
    .industries {
        width: 380px;
        height: auto;
        background-color: #9b3123;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin: 20px;
        /* Add spacing between the industry cards */
        margin-bottom: 50px;
    }

    .industries p {
        color: #f2f2f2;
    }

    /* Styling for the "Learn More" button inside the card */
    .learn-more-btn {
        background-color: #f2f2f2;
        color: #9b3123;
        border: none;
        padding: 12px 20px;
        margin-top: 40px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 24px;
        transition: background-color 0.3s ease;
    }

    .learn-more-btn:hover {
        background-color: #809BCE;
    }

    .ev-card,
    .industrial-card,
    .soldier-card {
        /* Your styles for the card */
        background-color: #f2f2f2;
        padding: 60px;
        /* Add some spacing around the card */
        max-width: 700px;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }

    #ab_ev,
    #ab_ie,
    #ab_me {
        width: 250px;
        height: auto;
        display: block;
        /* Ensure the image is treated as a block-level element */
        margin: 0 auto;
        /* Set the left and right margins to auto */
    }

    .ev-card h2,
    .industrial-card h2,
    .soldier-card h2 {
        margin-top: 20px;
        color: #9b3123;
        text-align: center;
        font-size: 36px;
        /* Adjust the font size as needed */
    }

    .ev-card p,
    .industrial-card p,
    .soldier-card p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 24px;
        /* Adjust the font size as needed */
    }

    .contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #f2f2f2;
        padding: 100px;
        margin-top: 100px;
    }

    .contact h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 50px;
        margin-top: 0;
        text-align: left;
        font-style: italic;
    }

    .contact-content {
        flex: 1;
        /* Allow the content to take up the remaining space */
    }

    .contact p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 18px;
        font-style: italic;
    }

    .contact-button {
        /* Styles for the button */
        padding: 10px 30px;
        background-color: #9b3123;
        color: #f2f2f2;
        font-size: 24px;
        font-style: lighter;
        text-decoration: none;
        border-radius: 10px;
    }

    .contact-button:hover {
        background-color: #809BCE;
    }

    .partners {
        padding: 100px;
        margin-top: 100px;
    }

    .partners h2 {
        font-size: 36px;
        /* Set the font size for the heading */
        margin-bottom: 50px;
        /* Reduce the margin to move the heading up */
        margin-top: -100px;
        /* Use negative margin to move the heading further up */
    }

    .partners p {
        margin-top: -40px;
        color: #9b3123;
        font-size: 24px;
    }

    .partner-logo {
        margin-right: 50px;
        width: 250px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .andrew-card,
    .neil-card,
    .jeff-card,
    .meera-card {
        /* Your styles for the card */
        background-color: #9b3123;
        padding: 60px;
        /* Add some spacing around the card */
        max-width: 700px;
        /* Set a maximum width for the card */
        margin: 0 auto;
        /* Center the card horizontally */
        display: flex;
        /* Use flexbox for layout */
        flex-direction: column;
        /* Stack the elements vertically */
        align-items: center;
        /* Center the elements horizontally */
        justify-content: center;
        /* Center the elements vertically */
        border-radius: 10px;
        /* Add some rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        /* Add a box shadow for a card-like effect */
    }

    .andrew-card h2,
    .neil-card h2,
    .jeff-card h2,
    .meera-card h2 {
        color: white;
        font-size: 36px;
        /* Adjust the font size as needed */
    }

    .andrew-card h3,
    .neil-card h3,
    .jeff-card h3,
    .meera-card h3 {
        font-size: 36px;
        /* Adjust the font size as needed */
        margin-top: -30px;
        font-style: italic;
        color: #f2f2f2;
    }

    .andrew-card p,
    .neil-card p,
    .jeff-card p,
    .meera-card p {
        color: #f2f2f2;
    }

    #contact-home {
        padding: 100px;
    }

    .contact-main h1 {
        font-size: 48px;
        text-align: center;
    }

    .contact-main h2 {
        font-size: 28px;
        color: #9b3123;
        margin-top: -40px;
        text-align: center;
        font-style: italic;
    }

    .contact_form {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background-color: #f2f2f2;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .fcf-form-class label {
        display: block;
        margin-bottom: 5px;
        font-size: 24px;
    }

    .fcf-form-class input[type="text"],
    .fcf-form-class textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 24px;
        box-sizing: border-box;
    }

    .fcf-form-class textarea {
        resize: vertical;
        min-height: 150px;
    }

    .fcf-form-class input[type="submit"] {
        background-color: #9b3123;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 24px;
    }

    .fcf-form-class input[type="submit"]:hover {
        background-color: #809BCE;
    }

    #team-main {
        margin-top: -70px;
        padding: 100px;
    }

    #team-main h1 {
        font-size: 36px;
    }

    #team-main p {
        font-size: 24px;
    }

    .team {
        display: flex;
        /* Use flexbox to create a row layout */
        flex-wrap: wrap;
        justify-content: space-around;
        /* Spread the team members evenly in the row */
        margin: 20px;
        /* Optional margin around the team members row */
    }


    .team_member {
        flex: 1;
        /* Allow each team member div to take equal space in the row */
        text-align: center;
        margin: 40px;
    }

    .team_member img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        /* Make the image circular */
        display: block;
        margin: 0 auto;
        /* Center the image horizontally */
    }

    .team_member img.clicked {
        border: 10px solid #9b3123;
        /* Set the border to red with 2px width */
    }

    .team_member img:hover {
        border: 10px solid #809BCE;
    }

    .mission-main {
        padding: 100px;
    }

    .mission-main h1 {
        margin-top: -30px;
        text-align: center;
        text-decoration: bold;
        font-size: 36px;
    }

    .mission-main p {
        font-size: 28px;
    }

    br {
        /* Adjust the margin to reduce spacing between breaks */
        margin-bottom: 5px;
        /* Change this value as needed */
    }

    .agility-image {
        position: relative;
        background: url('../images/agility.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        padding: 200px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .agility-image h1,
    .sustainability-image h1,
    .innovation-image h1 {
        font-size: 48px;
        text-align: center;
        text-decoration: bold;
    }

    .agility,
    .sustainability,
    .innovation {
        padding: 100px;
        font-size: 24px;
    }

    .sustainability-image {
        position: relative;
        background: url('../images/sustainability.png') center/cover no-repeat;
        color: black;
        /* Set the color of the text */
        text-align: center;
        padding: 200px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }


    .innovation-image {
        position: relative;
        background: url('../images/innovation.png') center/cover no-repeat;
        color: rgb(0, 0, 0);
        /* Set the color of the text */
        text-align: center;
        padding: 200px 0px;
        /* Increase the padding to enlarge the div and create more space */
        background-size: 100% 100%;
        /* Stretch the background image to cover the entire div */
    }

    .technologies-main {
        padding: 100px;
    }

    .technologies-main h1 {
        margin-top: -20px;
        font-size: 36px;
        text-decoration: none;
        margin-bottom: 100px;
    }

    .styled-text {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
    }

    .technologies-main p {
        font-style: italic;
    }

    .our-tech {
        padding: 100px;
        margin-bottom: -250px;
    }

    .our-tech h1 {
        font-weight: bold;
        color: #9b3123;
        font-style: italic;
        font-size: 36px;
    }

    .electrode h2,
    .trade h2,
    .cycle h2,
    .manufacturability h2 {
        font-size: 36px;
    }

    .electrode,
    .cycle {
        margin-top: 60px;
        padding: 100px;
        display: flex;
        /* Use flexbox for layout */
        align-items: center;
        /* Vertically center items within the flex container */
    }

    .content {
        flex: 1;
        /* Let the text content take all available space */
        padding-right: 10px;
        /* Add some spacing between the text and image */
    }

    .electrode_plating,
    .cycle_img {
        margin-left: 50px;
        width: 500px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
    }

    .trade,
    .manufacturability {
        margin-top: 60px;
        padding: 100px;
        display: flex;
        /* Use flexbox for layout */
        align-items: center;
        /* Vertically center items within the flex container */
    }

    .trade-off_img,
    .man_img {
        width: 500px;
        /* Adjust the width to make the image smaller */
        height: auto;
        /* Let the height adjust automatically to maintain the image's aspect ratio */
        margin-right: 50px;
        /* Add some spacing between the image and the text */
    }

}