/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #FFFFFF;
    color: #4A4A4A;
}

/* Hero Section */
.hero {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    max-height: 90vh; /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keep content aligned to the left */
    padding-left: 15%; /* Adjust padding to nudge content to the right */
}

.hero-signup {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    max-height: 90vh; /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keep content aligned to the left */
    padding-left: 15%; /* Adjust padding to nudge content to the right */
}

.contact-hero {
    background-color: #000000; 
    color: #FFFFFF; /* White Text */
    max-height: 90vh; /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keep content aligned to the left */
    padding-left: 15%; /* Adjust padding to nudge content to the right */
}

.hero-about {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    max-height: 1366px; /* Full Viewport Height */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Keep content aligned to the left */
    padding-left: 15%; /* Adjust padding to nudge content to the right */
}

/* Slightly Right-Aligned Content Area */
.hero-content {
    max-width: 100%; /* Constrain the width of the text */
    text-align: left; /* Align text to the left */
    margin-top: 20px;
}

/* Headline Styling */
.hero-content h1 {
    font-size: 3rem;
    max-width: 100%;
    white-space: nowrap;
    margin-bottom: 25px; /* Adjust spacing below the headline */
    color: #FDE07A; /* Yellow Accent */
}

/* Subheadline Styling */
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px; /* Match the spacing of h1 */
    color: #FFFFFF;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background-color: #FDE07A; /* Yellow Button */
    color: #4A4A4A; /* Brownish Text */
    padding: 10px 25px; /* Slightly wider for balance */
    text-decoration: none;
    border-radius: 25px; /* Increased to create a pill-like shape */
    border-color: transparent;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Add spacing above the button */
}

.cta-button:hover {
    background-color: #E5C56E; /* Slightly Darker Yellow */
    color: #333333; /* Darker Text on Hover */
    cursor: pointer;
    
}

/* Depressed button effect */
.cta-button:active {
    transform: translateY(2px); /* Push the button down */
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
    
}

/* Navbar Styling */
.navbar {
    display: flex;
    align-items: center;
    padding: 20px 10%;
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FDE07A; /* Yellow Accent */
    text-transform: uppercase; /* Make text uppercase */
    flex: 1; /* Push the navigation links to the right */
    margin-left: -10%; /* Align the "T" with the hero section's content */
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;

}.nav-links li {
    padding: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF; /* White Text */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FDE07A; /* Yellow Accent on Hover */
}

/* Call-to-Action Button in Navbar */
.cta-button-nav {
    background-color: #FDE07A; /* Yellow Button */
    color: #4A4A4A; /* Brown Text */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button-nav:hover {
    background-color: #E5C56E; /* Slightly Darker Yellow */
    color: #333333; /* Darker Text on Hover */
}

.logo i {
    font-size: 1.5rem; /* Match the size of the text */
    color: #FDE07A; /* Yellow Accent */
    margin-left: -1px; /* Slight adjustment for alignment */
    transform: rotate(-45deg); /* Rotate counterclockwise by 45 degrees */
    display: inline-block; /* Ensure rotation works properly */
    backface-visibility: hidden;
}

/* Typing Effect */
.typing-effect {
    display: inline;
    color: #FDE07A; /* Yellow Accent */
    font-size: 3rem; /* Keep the original size */
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid transparent; /* Used for alignment */
    text-shadow: 0px 0px 0px rgba(246, 255, 163, 0);    
    

}




/* cursor2 Animation */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    height: 90vh; /* Full Viewport Height */
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: flex-start; /* Align content to the left */
    position: relative;
    padding-left: 15%; /* Adjust spacing for left-aligned text */
}

.hero-signup {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    height: 90vh; /* Full Viewport Height */
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: flex-start; /* Align content to the left */
    position: relative;
    padding-left: 15%; /* Adjust spacing for left-aligned text */
}

/* Hero Section */
.contact-hero {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    height: 100vh; /* Full Viewport Height */
    display: flex; /* Flexbox layout */
    align-items: flex-start; /* Center content vertically */
    justify-content: flex-start; /* Align content to the left */
    position: relative;
    flex-grow: 1;
    padding-left: clamp(54.9px, 19.15vw - 77.605px, 280.5px); /* Adjust spacing for left-aligned text */
}


.hero-about {
    background-color: #000000; /* Black Background */
    color: #FFFFFF; /* White Text */
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: flex-start; /* Align content to the left */
    position: relative;
    padding-left: 15%; /* Adjust spacing for left-aligned text */
    height: auto;
    position: relative;
    overflow: visible;
}

.hero-products {
    height: 668px; 
    position: relative; 
    display: flex; 
    align-items: center; 
    text-align: left;
}

/* Hero Content Block */
.hero-content {
    max-width: 40%; /* Constrain the width of the text */
    text-align: left;
    z-index: 2; /* Ensure content stays above background elements */
}

/* Hero Image */
.hero-image {
    position: relative;
    left: 11.5%;
    bottom: 2%;
    z-index: 1; /* Place the image behind the text */
    
    
}

.hero-image img {
    width: 500px; /* Maintain image aspect ratio */
    max-height: 500px; /* Adjust image height */
    display: block; /* Prevent extra spacing below the image */
}

/* Blinking cursor2 */
.cursor2 {
    display: inline-block;
    width: 10px;
    height: 1em; /* Match the height of the text */
    background-color: #FFFFFF; /* White cursor2 block */
    margin-left: -5px;
    vertical-align: top; /* Align with the bottom of the text */
    animation: blink 1s steps(1, start) infinite; /* Smooth blink */
}

@keyframes blink {
    50% {
        opacity: 0; /* cursor2 disappears halfway through the animation */
    }
}

/* Adjust margin above and below the section */
.info-section::before,
.info-section::after {
    content: '';
    display: block;
    height: 60px; /* Set the top and bottom spacing */
    background-color: transparent; /* Black background to separate */
}

.info-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.info-section ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 30px;
}

.info-section ul li {
    font-size: 1rem;
    margin: 10px 0;
}

.info-block i {
    font-size: 2rem;
    color: #FDE07A; /* Yellow accent for icons */
    margin-bottom: 10px;
}

/* Info Section Styling */
.info-section {
    background-color: #000000; /* Black background for text below heading */
    padding: 20px 15%; /* Adjust padding for alignment */
    text-align: left;
    color: #FFFFFF; /* White text */
}

/* Typing Section Styling */
.typing-section {
    background-color: #FFFFFF; /* White background for heading */
    padding: 20px 15%;
    margin-bottom: -10px; /* Reduce spacing between sections */
    text-align: left;
    z-index: 1000;
}

.typing-section h2 {
    font-size: 2.5rem;
    color: #000000; /* Black text */
    margin-bottom: 20px;
    display: inline-block; /* Needed for typing animation */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: visible; /* Hide text overflow during animation */
}


/* Info Content Styling */
.info-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF; /* White text */
    margin-top: 3%;
    max-width: 75%;
    width: 401px;
    font-weight: bold;
   
}
/* Info Block Styling */
.info-block {
    background-color: transparent; /* Remove background panels */
    padding: 20px 0; /* Add some vertical spacing */
    border-radius: 0; /* Remove rounded corners */
    color: #FFFFFF; /* White text */
    box-shadow: none; /* Remove shadow */
    text-align: left; /* Align text to the left */
    margin-top: 40px;
}

/* Update icon styling for white text */
.info-block i {
    font-size: 2rem;
    color: #FDE07A; /* Keep yellow icons */
    margin-bottom: 10px;
}

/* Headings in Info Blocks */
.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #FFFFFF; /* White text */
}

/* Paragraphs in Info Blocks */
.info-block p {
    font-size: 1rem;
    color: #FFFFFF; /* White text */
}

/* Container Styling */
.info-blocks {
    background-color: #000000; /* Black background for entire section */
    padding: 40px 0%; /* Add padding around the section */
    display: grid;
    margin-bottom: -2%;
    margin-right: -20%;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    
    
   
}

@media (max-width: 1120px) {
    .info-blocks {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        grid-template-rows: repeat(3, auto); /* 3 rows */
        display: grid;
    }
}

.cta-bottom-right {
    position: relative; /* Position it normally in the document flow */
    margin-top: 40px; /* Add space above the text block */
    margin-right: 0; /* Align it to the grid structure */
    text-align: left; /* Align text to the left */
    color: #FFFFFF; /* White text */
}

.cta-bottom-right p {
    font-size: 1rem; /* Standard paragraph text */
    margin-bottom: 10px; /* Space below the text */
    line-height: 1.5; /* Line height for better readability */
}

.cta-bottom-right p span {
    font-size: 1.8rem; /* Larger size for "...So" */
    font-weight: bold; /* Bold for emphasis */
    display: inline-block; /* Ensures proper alignment */
}

.cta-button {
    display: inline-block;
    background-color: #FDE07A; /* Yellow Button */
    color: #4A4A4A; /* Brownish Text */
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px; /* Rounded button */
    font-weight: bold;
    position: relative; /* Create stacking context for ::before */
    overflow: hidden; /* Hide any overflow */
    z-index: 0; /* Base stacking level */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Start outside the left boundary */
    width: 200%; /* Ensure it fully covers the button */
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-45deg); /* Diagonal shine effect */
    z-index:0; /* Ensure it’s behind the button content */
    transition: left 0.5s ease-in-out;
    backface-visibility: hidden;
    
}

.cta-button:hover::before {
    left: 150%; /* Move it across the button */
}

.cta-button span {
    position: relative; /* Ensure text stays above the shine */
    z-index: 1; /* Place text above everything */
}


.cta-bottom-right .cta-button:hover {
    background-color: #FDE07A; /* Slightly darker yellow */
    color: #ffffff; /* Darker text on hover */
}

.info-blocks .info-block:nth-child(6) {
    position: relative; /* Ensure the block can be moved using relative positioning */
    left: -10%;
    top: -3%; /* Move vertically downward */
}

.info-blocks .info-block:nth-child(6) h3 {
    font-size: 3rem; /* Adjust the font size for the h3 */
    font-weight: bold; /* Adjust the weight */
    color: #ffffff; /* Change the color (example: yellow) */
    text-align: left; /* Align text to the left */
}

.info-blocks .info-block:nth-child(6) p {
    font-size: 1.3rem; /* Adjust the font size for the p */
    font-style: normal; /* Optional: make text italic */
    color: #FFFFFF; /* Change the color (example: white) */
    text-align: left; /* Align text to the left */
    text-indent: 60px;
    margin-top: 20px; /* Add some spacing if needed */
}

.info-blocks .info-block:nth-child(6) a {
    font-size: 1rem; /* Adjust the font size for the p */
    font-style: normal; /* Optional: make text italic */
    text-align: left; /* Align text to the left */
    margin-top: 17px; /* Add some spacing if needed */
}

.info-blocks .info-block:nth-child(6) a {
    position: relative; /* Ensure the block can be moved using relative positioning */
    left: 60px;  /* Move horizontally to the left */ 
    top: 0px; /* Move vertically downward */
}

.info-blocks .info-block:nth-child(1) {
    margin-right: 3.5%;
}

.hammer {
    display: inline-block;
    font-size: 3rem; /* Match your design */
    color: #FDE07A; /* Hammer color */
    transform-origin: bottom center; /* Pivot point at the bottom of the handle */
    animation: hammer-swing 5s infinite ease-in-out; /* Smooth loop */
    will-change: transform;
    backface-visibility: hidden;

}

@keyframes hammer-swing {
    0% {
        transform: rotate(-10deg); /* Upright position */
    }
    50% {
        transform: rotate(20deg); /* Hammering motion */
    }
    100% {
        transform: rotate(-10deg); /* Back to upright */
    }
}

/* Footer Container */
.footer {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* White text */
    padding: 1.2% 10%; /* Padding for spacing */
    padding-left: 10.8%;    
    margin: 0; /* Ensure no extra spacing */
    width: 100%; /* Full-width footer */
    box-sizing: border-box; /* Include padding in width calculation */
    z-index: 100;
    
}

/* Footer Content */
.footer-container {
    display: flex;
    justify-content: space-between; /* Space links and logo evenly */
    align-items: center; /* Align vertically */
    flex-wrap: wrap; /* Wrap content on smaller screens */
    gap: 20px; /* Add space between items */
}

/* Footer Links */
.footer-links {
    flex: 1;
    text-align: left;
}

.footer-links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 56px; /* Adds spacing between the links */
    justify-content: left; /* Centers the links horizontally */
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #FFFFFF; /* White text */
    font-size: 0.75rem;
}

.footer-links ul li a:hover {
    color: #FDE07A; /* Yellow hover effect */
}

/* Footer Logo */
.footer-logo {
    flex: 1;
    text-align: right; /* Center align the text */
    display: flex; /* Use flexbox for inline alignment */
    align-items: right; /* Align vertically */
    justify-content: right; /* Center align horizontally */
    gap: 10px; /* Space between logo and text */
    margin-right: 20px;
}


.logo-text {
    font-size: 0.7rem;
    font-weight: none;
    color: #ffffff; /* Yellow logo text */
}

.logo-tagline {
    font-size: 0.7rem;
    color: #FFFFFF; /* White tagline */
    margin-top: 0px;
    display: in-line; /* Stack below logo text */
}


.privacy-policy {
    background-color: #ffffff; /* Black background */
    color: #000000; /* White text */
    padding: 40px 15%;
    line-height: 1.6;
}

.privacy-section {
    margin-left: clamp(-10px, 3.23vw - 20.32px, 40px);
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000; /* Yellow text */
}

.privacy-policy p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.privacy-section {
    padding: 40px 10%;
    background-color: #FFFFFF; /* White background */
    color: #000000; /* Black text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.privacy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333333;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #555555;
}

.privacy-section p {
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    margin-bottom: 15px;
    color: #333333;
}

.privacy-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.privacy-section a {
    color: #007BFF; /* Blue for links */
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Adjust top and bottom margins for headers */
.privacy-section h1 {
    margin-top: 40px; /* Add space above */
    margin-bottom: -20px; /* Add space below */
}

.privacy-section h2 {
    margin-top: 50px; /* Add space above */
    margin-bottom: 50px; /* Add space below */
}

/* Adjust top and bottom margins for paragraphs */
.privacy-section p {
    margin-top: 10px; /* Add space above */
    margin-bottom: 15px; /* Add space below */
}

/* Adjust top and bottom margins for lists */
.privacy-section ul {
    margin-top: 20px; /* Add space above */
    margin-bottom: 25px; /* Add space below */
}

/* Adjust top and bottom margins for list items */
.privacy-section ul li {
    margin-top: 5px; /* Add space above each list item */
    margin-bottom: 10px; /* Add space below each list item */
}
.section-4-list {
    margin-top: 20px !important; /* Adjust this value to control the space above */
}

.privacy-image-container {
    text-align: left;
    margin-bottom: 20px; /* Add spacing between the image and the heading */
}

.privacy-image-container img {
    max-width: 100%; /* Ensure the image is responsive */
    height: 400px; /* Maintain aspect ratio */
    margin-bottom: 30px; 
    margin-top: 50px;
}

.cookie-image-container {
    text-align: left;
    margin-bottom: 20px; /* Add spacing between the image and the heading */
}

.cookie-image-container img {
    max-width: 100%; /* Ensure the image is responsive */
    height: 400px; /* Maintain aspect ratio */
    margin-bottom: 30px; 
    margin-top: 50px;
}

.nav-link {
    text-decoration: none; /* Remove the underline */
    color: inherit; /* Inherit the color from parent */
}

.nav-link:hover {
    color: inherit; /* Ensure no hover color change */
}

.footer-logo {
    display: flex; /* Use flexbox for alignment */
    flex-direction: row; /* Align items in a row */
    align-items: center; /* Align vertically */
    justify-content: right; /* Center horizontally */
    gap: 5px; /* Adjust spacing between the text elements */
    text-align: center; /* Center align the text */
    margin: 0 auto; /* Ensure it's centered within the footer */
    z-index: 1;
}

/* General Text Alignment */
.terms-content {
    margin-left: clamp(20px, 12.90vw - 21.2903px, 220px);
    margin-right: 10%; /* Ensures consistent alignment on the right */
    text-align: left; /* Aligns text to the left */
}

/* Spacing for Headings */
.terms-content h1 {
    margin-top: 70px; /* Space above */
    margin-bottom: 50px; /* Space below */
    font-size: 2.5rem; /* Adjust font size if needed */
}

.terms-content h2 {
    margin-top: 25px; /* Space above */
    margin-bottom: 15px; /* Space below */
    font-size: 1.8rem; /* Adjust font size if needed */
}

/* Spacing for Paragraphs */
.terms-content p {
    margin-top: 15px; /* Space above */
    margin-bottom: 15px; /* Space below */
    line-height: 1.6; /* Improves readability */
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
}

/* Spacing for Lists */
.terms-content ul {
    margin-top: 15px; /* Space above */
    margin-bottom: 20px; /* Space below */
    padding-left: 20px; /* Indents the list */
}

.terms-content ul li {
    margin-bottom: 10px; /* Adds spacing between list items */
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px); /* Standard font size */
    line-height: 1.5; /* Enhances readability */
}

#cursor2 {
    border-right: 13px solid rgb(255, 255, 255); /* cursor2 styling */
    display: inline-block;
    width: 0; /* cursor2 width */
    height: 1em; /* Match text height */
    vertical-align: top; /* Align with text */
    animation: blink 1s step-end infinite; /* Blinking effect */
}

.contact-cursor2 {
    border-right: 13px solid rgb(255, 255, 255); /* cursor2 styling */
    display: inline-block;
    width: 0; /* cursor2 width */
    height: 1em; /* Match text height */
    vertical-align: top; /* Align with text */
    animation: blink 1s step-end infinite; /* Blinking effect */
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.highlight-section {
    display: flex;
    align-items: center;
    margin: auto;
    margin-top: 30px;
    margin-bottom: -30px;
    max-width: 1200px;
}

.ourvalues-highlight-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #000;
    color: white;
    padding-top: 100px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

.highlight-image {
    flex: 1;
    margin-right: 20px;
    margin-top: 130px;
    margin-bottom: 60px;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    object-fit: cover;
}


.highlight-text {
    flex: 1;
    text-align: left;
    font-size: 2rem;
    margin-left: 10%;
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20%;
    color: #333; 
}

.narrow-paragraph {
    max-width: 10px; /* Set the width */
    display: block; /* Ensure it behaves like a block element */
    margin-top: -9%; /* Center the paragraph */
    line-height: 2.4; /* Adjust line spacing */
    height: -10px;
    font-size: 1rem; /* Maintain font size */
}

.highlight-text2 {
    background-color: #000000; /* Background color of the box */
    padding: 20px; /* Space inside the box */
    line-height: 2.4;
    margin-left: 140px;
    margin-top: 100px;
    font-family: Arial, sans-serif; /* Font style */
    color: #ffffff; /* Text color */
}

.highlight-image2 {
    margin-right: 200px;
    margin-top: -375px;
}

.highlight-text3 {
    background-color: #ffffff; /* Background color of the box */
    padding: 20px; /* Space inside the box */
    line-height: 2.4;
    position: absolute;
    left: 670px;
    margin-left: 140px;
    font-family: Arial, sans-serif; /* Font style */
    color: #000000; /* Text color */
}

.highlight-image3 {
    margin-right: 270px;
    position: absolute;
    bottom: -2045px;
    left: 18px;
    transform: rotate(50deg);
    
}

.h2-text3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.typing-strip {
    background-color: black;
    color: white;
    text-align: left;
    padding: 28px 28px 28px 17px;
    height: 110px;
    font-size: 2.3em;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    overflow: hidden; /* Prevents any weird layout overflow issues */
}

#animated-text-careers {
    caret-color: transparent; /* Hides the thin caret */
    user-select: none; /* Prevents text selection */
    pointer-events: none; /* Prevents interaction */
    display: inline; /* Keeps it inline with the cursor2 */
}

#animated-cursor2-careers {
    width: 9.4px; /* Adjust thickness */
    height: 1em; /* Matches text height */
    margin-left: 6px;
    background-color: white; /* Matches text color */
    display: inline; /* Keeps it aligned with text */
    vertical-align: top; /* Align with text baseline */
    animation: blink 0.8s step-end infinite; /* Custom blinking */
    position: relative;

}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.highlight-text4 {
    background-color: #ffffff; /* Background color of the box */
    padding: 20px; /* Space inside the box */
    line-height: 2.4;
    margin-left: 140px;
    margin-top: 70px;
    font-family: Arial, sans-serif; /* Font style */
    color: #000000; /* Text color */
}

.highlight-image4 {
    margin-right: 200px;
    margin-top: -465px;
}

.highlight-text5 {
    background-color: #000000; /* Background color of the box */
    padding: 20px; /* Space inside the box */
    line-height: 2.4;
    position: absolute;
    left: 670px;
    margin-left: 140px;
    font-family: Arial, sans-serif; /* Font style */
    color: #ffffff; /* Text color */
}

.highlight-image5 {
    margin-right: 270px;
    position: absolute;
    bottom: -3600px;
    left: 145px;
}

.h2-text5 {
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Container for the search bar */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: black; /* Matches the black background */
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 100%;
    max-width: 1139px;
}

/* Input field styling */
.search-input {
    width: 100%;
    max-width: 1170px;
    padding: 10px 15px;
    font-size: clamp(22.4px, 8.889vw - 6.5px, 32px);
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white; /* White underline */
    outline: none; /* Removes focus outline */
    font-family: 'Roboto', sans-serif;
}

/* Placeholder styling */
.search-input::placeholder {
    color: white;
    opacity: 0.8;
}

/* Button styling */
.search-button {
    margin-left: 15px;
    padding: 10px 15px;
    background-color: transparent;
    color: white;
    font-size: clamp(18px, 5.556vw - 0.06px, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover effect for the button */
.search-button:hover {
    background-color: white;
    color: black;
}

/* Icon inside the button */
.search-button i {
    font-size: 1.2em;
}

.mission-section {
    padding: 0;
    background-color: #ffffff;
    position: relative;
    left: clamp(-2px, 1.419vw - 6.537px, 20px);
    max-width: 1240px;
    margin-top: 75px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer; /* Makes the entire header clickable */
    backface-visibility: hidden;
}

.mission-section-products {
    padding: 0;
    background-color: #ffffff;
    position: relative;
    left: clamp(-2px, 1.419vw - 6.537px, 20px);
    max-width: 1240px;
    margin-top: 5px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer; /* Makes the entire header clickable */
    backface-visibility: hidden;
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    color: #333;
    font-weight: bold;


}

.mission-header-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 17.61px;
    color: #333;
    font-weight: bold;


}

.mission-header-golive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 17.61px;
    color: #333;
    font-weight: bold;


}

.mission-header-pcskills {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 17.61px;
    color: #333;
    font-weight: bold;


}

.mission-title {
    color: #000000; /* Styled to appear as a clickable link */
    border-bottom: 2px #f3f3f3 solid;
    display: flex;
    
}



.expand-arrow {
    font-size: 80%;
    color: #000000;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    text-decoration: none; 
    will-change: transform;
    backface-visibility: hidden;
    margin-left: auto;
}


.mission-text {
  
    margin-top: 60px;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    line-height: 1.6;
    color: #333;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    width: clamp(268.8px, 61.1vw + 72.93px, 1215.5px);
    
    
}

.mission-text-products {
  
    margin-top: 60px;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    line-height: 1.6;
    color: #333;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    width: clamp(268.8px, 61.1vw + 72.93px, 1215.5px);
    
    
}

.mission-text p {
    margin: 0;
    margin-bottom: 70px;
}

.mission-text-products p {
    margin: 0;
}

.mission-text.open {
    height: auto; 
    overflow: hidden;
}

.mission-text-products.open {
    height: auto; 
    overflow: visible;
    margin-bottom: 60px;
}

.email-container {
    text-align: center;
    margin-top: 80px; 
    margin-bottom: 80px;
    display: flex; 
    flex-direction: row; 
    padding-left: clamp(20px, 19.88vw - 81.796px, 290px);

}

.email-input {
    padding: 10px;
    font-size: 1.3rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    width: 945px;
    height: 57px;
    margin-right: 10px;
}

.submit-button {
    padding: 10px 20px;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #FDE07A;
    color: #000;
    border: none;
    border-radius: 25px;
}

.submit-button:hover {
    background-color: #f4d257;
}

.golive-section {
    padding: 0;
    background-color: #ffffff;
    position: relative;
    left: 2%;
    max-width: 800%;
    font-family: 'Roboto', sans-serif;
}

.golive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 110%;
    color: #333;
    font-weight: bold;
}

.golive-title {
    color: #000000; /* Styled to appear as a clickable link */
    text-decoration: underline;
    text-decoration-color: #f3f3f3;
    
}

.golive-title:hover {
    text-decoration: underline; /* Removes underline on hover */
    text-decoration-color: #f3f3f3;
    
}

.goliveexpand-arrow {
    font-size: 80%;
    color: #000000;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    text-decoration: none; 
    will-change: transform;
    backface-visibility: hidden;
}

.golive-text {
  
    margin-top: 60px;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    line-height: 1.6;
    color: #333;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    
    
}

.golive-text p {
    margin: 0;
}

.golive-text.open {
    height: auto; /* Height will dynamically adjust to content */
    overflow: visible;
    margin-bottom: 60px;
}

.PCskills-section {
    padding: 0;
    background-color: #ffffff;
    position: relative;
    left: 2%;
    max-width: 800%;
    font-family: 'Roboto', sans-serif;
    cursor2: pointer; /* Makes the entire header clickable */
}

.PCskills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 110%;
    color: #333;
    font-weight: bold;


}

.PCskills-title {
    color: #000000; /* Styled to appear as a clickable link */
    text-decoration: underline;
    text-decoration-color: #f3f3f3;
    
}

.PCskills-title:hover {
    text-decoration: underline; /* Removes underline on hover */
    text-decoration-color: #f3f3f3;
    
}

.PCskillsexpand-arrow {
    font-size: 80%;
    color: #000000;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    text-decoration: none; 
}

.PCskills-text {
  
    margin-top: 60px;
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    line-height: 1.6;
    color: #333;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    
    
}

.PCskills-text p {
    margin: 0;
}

.PCskills-text.open {
    height: auto; /* Height will dynamically adjust to content */
    overflow: visible;
    margin-bottom: 50px;
}

html, body {
    overflow-x: hidden;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    padding: 20px 10%; /* Reduce the horizontal padding */
    background-color: #000000;
    color: #FFFFFF;
    max-width: 100vw; /* Ensure it never exceeds the viewport width */
    overflow: hidden; /* Prevent extra width */
}

@media (max-width: 715px) {
    .nav-links {
        display: none; /* Hide menu items */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        right: 0;
        background-color: black; /* Match your navbar */
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex; /* Show menu when toggled */
    }

    .menu-toggle {
        display: block; /* Show hamburger icon */
        font-size: 30px;
        cursor: pointer;
        color: white;
        background: none;
        border: none;
        position: absolute;
        right: 20px;
        top: 15px;
    }
}

/* Hide hamburger icon on large screens */
.menu-toggle {
    display: none;
}

/* Show hamburger icon only below 1006px */
@media (max-width: 715px) {
    .menu-toggle {
        display: block; /* Show only on small screens */
    }
}

/* Default height for 1344px and below */
.homepagebannertext {
    height: 125px;
    width: 400px;
    
}

/* When screen width is 1345px or more, set height to 62px */
@media (min-width: 1498px) {
    .homepagebannertext {
        height: 62px;
        width: 1200px;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #FDE07A, 0 0 10px #FDE07A;
    }
    50% {
        box-shadow: 0 0 20px #FDE07A, 0 0 30px #FDE07A;
    }
    100% {
        box-shadow: 0 0 5px #FDE07A, 0 0 10px #FDE07A;
    }
}

@keyframes button-press {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(0.95);
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
}

.cta-button:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    will-change: transform;
    backface-visibility: hidden;

}


/* Default button styles */
.cta-button {
    background-color: #FDE07A; /* Keeps the glow effect without a solid fill */
   
    color: rgb(0, 0, 0);
    padding: 1rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    
}

/* Glow effect on hover */
.cta-button:hover {
    animation: glow 1.5s infinite alternate;
    background: transparent;
    box-shadow: 0 0 20px 10px #FDE07A;
    color: #FDE07A;
    opacity: 1 !important; /* Override any animation reversion */
    
}

@keyframes fade-in {
    0% {
        opacity: 0;
       
    }
    100% {
        opacity: 1;
        
    }
}

.home-hero-p {
    animation: fade-in 2s ease-in-out forwards;
    animation-delay: 3.3s;
    opacity: 0;
    padding-right: 10%;
}

@keyframes fade-in-cta {
    0% {
        visibility: hidden;
        opacity: 0;
        
    }
    100% {
        visibility: visible;
        opacity: 1;
        ;
    }
}

.home-cta{
    animation: fade-in-cta 2s ease-in-out forwards;
    animation-delay: 3.9s;
    opacity: 0;
    animation-fill-mode: forwards; 
   
    
   
}






  
  @keyframes clipReveal {
    0% {
        clip-path: inset(50% 0 50% 0); /* Thin horizontal line in center */
    }
    100% {
        clip-path: inset(0 0 0 0); /* Fully reveals the image */
    }
}



/* Image Wrapper */
.hero-image span div {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Apply Clip-Path Animation to the Image */
.hero-image img {
    width: 100%;
    height: auto;
    clip-path: inset(50% 0 50% 0);
    animation: clipReveal 1.5s ease-in-out forwards;
    animation-delay: 5.15s;
}

/* White Dot - Starts Hidden */
.white-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px; /* Initially invisible */
    height: 0px;
    background-color: white;
    border-radius: 50%; /* Makes it a circle */
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    animation: tvFlash 0.2s linear 4.7s , throb 0.6s infinite alternate 4.7s;
}

/* TV Flash Effect */
@keyframes tvFlash {
    0% { width: 0px; height: 0px; opacity: 0; }
    40% { width: 100px; height: 2px; opacity: 1; } /* Quick horizontal flash */
    60% { width: 2px; height: 50px; opacity: 1; } /* Quick vertical stretch */
    80% { width: 20px; height: 20px; opacity: 1; } /* Shrinks into a small dot */
    100% { width: 10px; height: 10px; opacity: 1; } /* Final dot size */
}

/* Throbbing (Pulsating) Effect */
@keyframes throb {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.8; }
}

/* Expand Horizontal Line from the Dot */
.white-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 3px;
    background-color: white;
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    animation: expandLine 0.3s ease-in-out forwards 4.9s, moveUp 1.5s ease-in-out forwards 5.15s, wipeOut1 0.5s ease-in-out forwards 6.85s;
    z-index: 1000;
    
    
}

/* Expanding Horizontal Line */
@keyframes expandLine {
    0% { width: 5px; opacity: 1; }
    100% { width: 100%; opacity: 1; }
}

/* Moving Line Up */
@keyframes moveUp {
    0% { top: 50%; }
    100% { top: 0%; }
}

/* Moving Line down */
@keyframes movedown {
    0% { top: 50%; }
    100% { top: 100%; }
}

.white-line-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 3px;
    background-color: white;
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    animation: expandLine 0.3s ease-in-out forwards 4.9s, movedown 1.5s ease-in-out forwards 5.15s, wipeOut2 0.5s ease-in-out forwards 6.85s;
    z-index: 1000;
}

@keyframes wipeOut1 {
    0% { clip-path: inset(0 0 0 0); } /* Fully visible */
    100% { clip-path: inset(0 0 0 100%); } /* Fully hidden */
}

@keyframes wipeOut2 {
    0% { clip-path: inset(0 0 0 0); } /* Fully visible */
    100% { clip-path: inset(0 100% 0 0); } /* Fully hidden */
}

@keyframes shimmer-pass {
    0% {
        visibility: visible;
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.home-cta {
    position: relative;
    overflow: hidden; /* Ensures the shimmer stays within the button */
}

.home-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    animation: shimmer-pass 0.5s ease-in-out;
    animation-delay: 8s;
    z-index: 0;
    will-change: transform;
    backface-visibility: hidden;
    visibility: hidden;
    
}

@media (max-width: 1590px) {
    .hero-image {
         
        left: 0%;
        margin-right: 11.5%;
        width: 500px !important; /* Set a fixed size (adjust as needed) */
        height: auto !important; /* Maintain aspect ratio */
        max-width: none !important; /* Prevents any shrinking */
        flex-shrink: 0 !important;
        margin-left: auto; /* Pushes the image to the right */
       
        
    }
}

@media (max-width: 1506px) {
    .info-blocks {
        transform: translateX(calc((100vw - 1506px) / 8)); /* Moves left as screen shrinks */
    }
}

@media (max-width: 1506px) {
    .hero-content {
        transform: translateX(calc((100vw - 1506px) / 8)); /* Moves left as screen shrinks */
    }
}

@media (max-width: 1506px) {
    .animated-text-home {
        transform: translateX(calc((100vw - 1506px) / 8)); /* Moves left as screen shrinks */
    }
}

@media (max-width: 1506px) {
    .info-content p {
        transform: translateX(calc((100vw - 1506px) / 8)); /* Moves left as screen shrinks */
    }
}

@media (max-width: 1120px) {
    .info-blocks > :nth-child(2),
    .info-blocks > :nth-child(4),
    .info-blocks > :nth-child(6) {
        transform: translateX(50px); /* Moves selected items 40px to the right */
    }
}

@media (max-width: 1120px) {
    .info-blocks, 
    .hero-content, 
    .animated-text-home, 
    .info-content p {
    transform: translateX(calc((100vw - 1506px) / 12.5)); /* Moves left more slowly as screen shrinks */
    }
}

  .hero-image {
  display: flex;  /* Allows natural sizing */
  justify-content: center; /* Center the image if needed */
  align-items: center;
  width: auto;  /* Match image width */
  height: auto; /* Match image height */
}

.hero-image picture {
  display: block; /* Prevent inline spacing issues */
  width: auto;
  height: auto;
}

.hero-image picture img {
  display: block; /* Removes extra space from inline elements */
  width: auto;  /* Let image keep its natural width */
  height: auto; /* Let image keep its natural height */
  max-width: 100%; /* Ensures it fits within smaller screens */
}

@media (max-width: 986px) {
  .hero-image {
    width: auto; /* Adjusts to fit new image */
    height: auto;
  }
}

@media (max-width: 986px) {
    .hero-image {
      width: 242px !important;
      height: 464px !important;
  
      margin-right: auto; /* Unlocks the right margin */
      margin-left: auto; /* Centers the image naturally if needed */
      transform: translateX(calc((100vw - 986px) / 1000));
      will-change: transform;
      backface-visibility: hidden;
      margin-left: 12%;
      
    }
  }
  
  @media (max-width: 740px) {
    .typing-section {
      display: none; /* Hides the section completely */
    }
  }
  


.info-blocks .info-block {
    max-width: 275px;
}

.info-blocks .info-block:nth-child(6) {
    width: 350px; 
}

@media (max-width: 1120px) {
    .info-blocks {
        display: grid; /* Ensure grid layout */
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Prevents columns from unevenly resizing */
        grid-template-rows: repeat(3, auto);
        gap: 20px;
    }

    .info-blocks .info-block {
        width: 100%; 
        min-width: 0; 
    }

    
    .info-blocks .info-block:nth-child(2),
    .info-blocks .info-block:nth-child(4),
    .info-blocks .info-block:nth-child(6) {
        transform: translateX(50px); 
        
        
        position: relative; /
    }
}

@media (max-width: 740px) {
    .hero {
        margin-bottom: -20%;
    }
}

@media (max-width: 740px) {
    .info-content p {
    position: relative;  
    margin-top: 15%;
    margin-bottom: -10%;
    left: 52%;
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
    opacity: 0;
    animation: info-content-p-fadein 2s ease-in-out forwards;
    animation-delay: 8.5s; 
    }
}

@keyframes info-content-p-fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@media (min-width: 741px) {
    .info-content p {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .info-content p.info-content-p-fadein {
        opacity: 1;
        animation: info-content-p-fadein-above741px 0.5s ease-in-out forwards;
        
    }
}

@keyframes animated-text-home-fadein {
    0% {
        opacity: 0;
        margin-left: -20px; /* Move left without affecting final layout */
    }
    100% {
        opacity: 1;
        margin-left: 0; /* Moves to correct position */
    }
}

.animated-text-home {
    opacity: 0;
}

.animated-text-home.fade-in {
    animation: animated-text-home-fadein 0.5s ease-in-out forwards;
}

@keyframes info-content-p-fadein-above741px {
    0% {
        opacity: 0;
        margin-left: -20px; 
    }
    100% {
        opacity: 1;
        margin-left: 0; 
    }
}

@keyframes info-block-fadein-rightmove {
    0% {
        opacity: 0;
        margin-left: -20px; 
    }
    100% {
        opacity: 1;
        margin-left: 0; 
    }
}

/* Initially hidden */
.info-blocks .info-block {
    opacity: 0;
    contain: paint;
    will-change: contents;
}

/* Animation applies when the class is added */
.info-blocks .info-block.fade-in {
    animation: info-block-fadein-rightmove 0.5s ease-in-out forwards;
}

/*important bug fix for the font-weight cycling on wdith decrease*/
.info-blocks .info-block:nth-child(1) {
    contain: paint;
    will-change: contents;
}

@media (max-width: 606px) {
    /* Move .info-section further down */
    .info-section {
        /*margin-top: 30vh; /* Pushes it down */
    }
}

/* Only affects the homepage */
.homepage-body {
    background-color: black;
}


@media (max-width: 606px) {


    .hero {
        display: block;
        position: unset;
        padding: 0;
        
    }

    .hero-content {
        
        display: flex;
        flex-direction: column;
        align-items: left; 
        justify-content: center;
        gap: 20px; 
        width: 100vw !important;
        max-width: 98%;
        Height: auto;
        transform: none;
        position: relative;
        padding-bottom: unset;
        margin-bottom: unset;
        overflow: hidden;
        transform: none;
        
        
    }

    .hero-p-image-606 {
        display: flex;
        flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        margin-top: 30%;
    }

    .cta-button {
        animation: none !important;
    }

    .hero-cta-606 {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 57%;
        animation: fade-in-cta 2s ease-in-out forwards;
        visibility: hidden;
        opacity: 0;
        
    }


    .hero-image {
        position: relative;
        scale: 186%;
        left: 20%;
        margin-top: clamp(60px, calc(104px - (606px - 100vw) * 0.2), 104px);
        width: 40vw !important;
        height: auto !important;
        transform: none;
        
        
    }

    .info-section {
        position: relative;
        top: clamp(501px, 23.35px + 3.0869 * 100vw - 0.8469 * 100vh, 1648px);    
        height: 1459px;
        transform: none;
        background: transparent;
    }

    

    .home-hero-p {
        width: 48vw;
        height: 20vw;
        font-size: 6vw !important;
        position: relative;
        left: 11vw;
        transform: none;
        padding-right: 0;

       
    }

    .homepage-container {
       
        height: clamp(3026px, calc(3300px - (606px - 100vw) * 4.14), 3300px);
        display: block;
    }

    .homepagebannertext {
        position: relative;
        max-height: 615px;
        height: clamp(342px, 100vw, 615px);
        width: 100vw;
        left: 2vw;
    }   

    .homepage-body {
        height: 2117px;
        display: block;
        left: 0;
        scroll-behavior: smooth;

    }
    
    
    .typing-effect {
        font-size: 23vw; 
        line-height: 1.1;
        max-width: 100vw;
        height: inherit;
        display: contents;
        position: relative;

        
        
        
    }

    .cursor2 {
        font-size: 23vw;
        width: 0.2em;
        margin-left: 2vw;
        position: absolute;

    }

    .home-cta {
        width: 33vw;
        scale: 1.2;
        position: relative;
        margin: auto;
        font-size: 1rem;
        will-change: transform;
        transform-style: preserve-3d;
        will-change: transform;
        transition: none;
        text-align: center;
        min-width: max-content;
        animation: none;
        
        
    }

    .info-content p {
        font-size: 4.5vw;
        left: 4%;
        top: -50px;
        margin-bottom: 90px;
        transform: none;
        font-weight: normal;
        
        
    }

    .info-content {
        width: 90vw !important;
        transform: none;
                    
        

    }

    
    .info-blocks {
        position: relative;
        padding-top: 0;
        top: clamp(
            -113px, 
            calc(
                -87px 
                + ((539px - 100vw) * -0.15951) 
                + ((869px - 100vh) * 0.13115)
            ), 
            -15px
        );
        left: clamp(42px, calc(57px - (606px - 100vw) * 0.065), 57px);
    }

    .info-blocks .info-block:nth-child(2),
    .info-blocks .info-block:nth-child(4) {
        position: relative;
        left: clamp(-36px, calc(-28px - (606px - 100vw) * 0.035), -28px);
    }

    .info-blocks .info-block:nth-child(6) {
        position: relative;
        left: clamp(-96px, calc(-74px - (606px - 100vw) * 0.333), -74px);
    }

    .info-section::after {
        position: relative;
        bottom: 23vh;
        background-color: transparent;
    }

    .info-blocks .info-block:not(:nth-child(5)):not(:nth-child(6)) {
        max-width: 179px;
    }
   
}

@media (max-width: 539px) {
    
    .info-blocks .info-block:nth-child(5) {
        position: relative;
        left: clamp(85px, calc(115px - (539px - 100vw) * 0.129), 115px);
        top: clamp(-24px, calc(-22px - (539px - 100vw) * 0.0122), -22px);
        min-width: 205px;
    }

.info-blocks .info-block:nth-child(6) {
    position: relative;
    left: clamp(-224.1px, calc(-224.1px + (539px - 100vw) * 0.202), -191px);
    top: clamp(236px, calc(245px - (539px - 100vw) * 0.055), 245px);
       
}


.info-blocks .info-block:not(:nth-child(5)):not(:nth-child(6)) {
    min-width: 179px;
}

.homepage-container {
    height: clamp(2730px, 1345.95px + 3.6810 * 100vw, 3330px);
}
}

@media (max-width: 715px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: clamp(-348px, calc(-348px + ((715px - 100vw) * 0.1)), -194px); 
        width: clamp(188px, 50vw, 344px); 
        height: 100vh; 
        background-color: #000000e6;
        z-index: 9999;
        transition: right 0.3s ease-in-out;
        box-shadow: -4px 0 6px rgb(255 255 255 / 67%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px clamp(20px, 6vw, 50px);

    }

    .nav-links.active {
        right: 0;
        padding: 20px clamp(20px, 6vw, 50px); 
    }

    .nav-links li {
        padding: 20px 0;
    }

    .nav-links a {
        font-size: clamp(28px, 6vw, 48px); 
        font-weight: 900; 
        color: white;
        text-decoration: none;
    }

    .menu-toggle {
        position: fixed;
        top: 15px;
        right: 5vw;
        font-size: clamp(24px, 5vw, 30px); 
        cursor: pointer;
        color: white;
        background: none;
        border: none;
        z-index: 10001;
        transition: font-size 0.2s ease-in-out;
        
    }
}

.footer-links ul {
    margin-left: 4vw; 
}

@media (max-width: 1502px) {
    .footer-links {
        position: relative;
        left: 10px;
        will-change: transform, contents;
        backface-visibility: hidden;
        contain: paint;
        width: 407px;
   

    }
           
@media (max-width: 1120px) {
    .footer-links ul {
            
        will-change: transform, contents;
        backface-visibility: visible;
        contain: paint;
   
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
       .footer-links {
        text-align: center;
        margin-bottom: 20px;
        z-index: 1;
        position: relative;
        left: clamp(16px, -0.0877vw + 83.37px, 36px);
        
    }

    .footer-logo {
        text-align: center;
        position: relative;
        bottom: 12px;
        right: clamp(-2px, 0.0746vw - 42.26px, 15px);;
    }
}


@media (max-width: 768px) {
    .footer-links ul {
        transform: none;
        margin-left: 0;
        will-change: transform, contents;
        backface-visibility: hidden;
        contain: paint;
   
        }
}

@media (max-width: 539px) {
    .footer-links {
        position: relative;
        left:  clamp(8px, 26.92vw - 109.12px, 36px);;
    }

    .footer-logo {
        position: relative;
        left: clamp(-27px, 27.88vw - 148.12px, 2px);;
    }
}

@media (max-width: 434px) {
    .footer {
        transform: none;
        padding: 20px;
        will-change: transform, contents;
        backface-visibility: hidden;
        contain: paint;
   
        }

        .footer-links {
            position: relative;
            left: clamp(3px, 51.72vw - 191.48px, 33px);;
        }
    
        .footer-logo {
            position: relative;
            left: clamp(-30px, 51.72vw - 224.48px, 0px);;
        }
}

}

html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    scroll-behavior: smooth;
}

@media (max-width: 1024px) {
    .cta-button {
        animation: fade-in-cta 2s ease-in-out forwards 3.7s, glow 2s infinite alternate  !important; /* Same glow effect but always running */
        background: transparent;
        box-shadow: 0 0 20px 10px #FDE07A;
        color: #FDE07A;
        will-change: box-shadow;
        
    }

    .cta-about {
        animation: fade-in-cta 2s ease-in-out forwards 0s, glow 2s infinite alternate  !important; /* Same glow effect but always running */
        background: transparent;
        box-shadow: 0 0 20px 10px #FDE07A;
        color: #FDE07A;
        will-change: box-shadow;
        
    }

    #cta-info-blocks {
        animation: fade-in-cta 2s ease-in-out forwards, glow 2s infinite alternate  !important; /* Same glow effect but always running */
        background: transparent;
        box-shadow: 0 0 20px 10px #FDE07A;
        color: #FDE07A;
        will-change: box-shadow;
    }

    .cta-signuppage {
        animation: fade-in-cta 0s ease-in-out forwards, glow 2s infinite alternate  !important; /* Same glow effect but always running */
        background: transparent;
        box-shadow: 0 0 20px 10px #FDE07A;
        color: #FDE07A;
        will-change: box-shadow;
    }
}

@media (max-width: 606px) {
    
    .hero-cta-606 {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 57%;
        opacity: 0;
        visibility: hidden;
        will-change: visibility, opacity;
        transition: opacity 1s ease-in-out, visibility 1s ease-in-out;

    }

    .hero-cta-606.fade-in-cta {
    opacity: 1;
    visibility: visible;
    }

    /* Delayed glow effect after fade-in completes */
    .home-cta {
        animation: glow 2s infinite alternate !important;
        background: transparent;
        color: #FDE07A;
        will-change: box-shadow !important;
    }
}

@media (max-width: 375px) {
    .info-section {
        top: clamp(-150px, 262.93px + 2.5455 * 100vw - 0.8987 * 100vh, 930px);
    }
    
    .info-blocks p {
        font-size: 4.15vw;
        
    }

    .info-blocks .info-block:not(:nth-child(5)):not(:nth-child(6)) {
        min-width: clamp(155px, 155px + (18 * (100vw - 320px) / 55), 173px);
    
    }

    .info-blocks {
        left: clamp(43px, calc(43px + ((375px - 100vw) * 0.14545)), 51px);
    }

    .info-blocks .info-block:nth-child(5) {
        left: clamp(63px, calc(86px - ((375px - 100vw) * 0.41818)), 86px);
    }

    .info-blocks .info-block:nth-child(6) {
        top: clamp(213px, calc(221px - ((375px - 100vw) * 0.14545)), 221px);
    }

    .footer-links ul {
        gap: 33px;
    }

    .homepage-container {
        height: clamp(2467px, calc(2676px - ((375px - 100vw) * 3.81818)), 2676px);
    }

    .footer-links {
        position: relative;
        left: clamp(9px, 50.91vw - 153.91px, 37px);;
    }

    .footer-logo {
        position: relative;
        left: clamp(-63px, 52.73vw - 231.73px, -34px);
    }

}

@media (max-width: 1870px) and (min-width: 1121px) {
.homepage-container {
    height: 1805px;
}

.info-section {
    position: relative;
    top: clamp(0px, calc((836px - 100vh) * 0.85035), 481px);
}

.typing-section {
    top: clamp(0px, calc((836px - 100vh) * 0.85853), 443px);
    position: relative;
    z-index: 0;
}

.hero-image {
    top: clamp(-15px, calc(-15px + ((836px - 100vh) * 0.43992)), 212px);
}

.hero-content {
    top: clamp(0px, calc((836px - 100vh) * 0.44767), 231px);
    position: relative;
}
}

@media (min-height: 837px) and (max-height: 1366px) and (min-width: 1121px) and (max-width: 1870px) {
    .hero-image {
        top: clamp(
            -253px, 
            calc(
                -253px 
                - ((1366px - 100vh) * -0.44802)
            ), 
            -16px
        );
    }

    .hero-content {
        top: clamp(
            -238px, 
            calc(
                -238px 
                - ((1366px - 100vh) * -0.44802)
            ), 
            -1px
        );
    }

    .typing-section {
        top: clamp(
            -480px, 
            calc(
                -480px 
                - ((1366px - 100vh) * -0.91304)
            ), 
            3px
        );
    }
    
    .info-section {
        top: clamp(
            -455px, 
            calc(
                -455px 
                - ((1366px - 100vh) * -0.86578)
            ), 
            3px
        );
    }
}


@media (min-width: 741px) and (max-width: 1120px) {
    .hero-content {
        top: clamp(0px, calc(0px + ((836px - 100vh) * 0.42829)), 221px);
        position: relative;
    }

    .hero-image {
        position: relative;
        top: clamp(-15px, calc(-15px + ((836px - 100vh) * 0.45349)), 219px);
    }

    .typing-section {
        position: relative;
        top: clamp(0px, calc(0px + ((836px - 100vh) * 0.85271)), 440px);;
        z-index: 0;
    }

    .info-section {
        position: relative;
        top: clamp(-5px, calc(-5px + ((836px - 100vh) * 0.85659)), 437px);
    }

    
}

@media (min-width: 816px) and (max-width: 1120px) {
    .homepage-container {
        height: 2049px;
}
}

@media (min-width: 741px) and (max-width: 815px) {
    .homepage-container {
        height: 2081px;
}
}

@media (min-width: 607px) and (max-width: 740px) {
    .info-section {
    position: relative;
    top: clamp(0px, calc(0px + ((836px - 100vh) * 0.94961)), 490px);;
}

.hero-image {
    position: relative;
    top: clamp(-15px, calc(-15px + ((836px - 100vh) * 0.45349)), 219px);
}

.hero-content {
    position: relative;
    top: clamp(-5px, calc(-5px + ((836px - 100vh) * 0.41667)), 210px);
}

.homepage-container {
    height: clamp(1832px, calc(1832px + ((740px - 100vw) * 0.50376)), 1899px);
}
}

@media (min-width: 540px) and (max-width: 606px) {
    .info-blocks {
        top: clamp(
            -97px, 
            calc(
                -91px 
                + ((606px - 100vw) * -0.09091) 
                + ((836px - 100vh) * 0.17017)
            ), 
            4px
        );
    }

    .homepage-container {
        height: clamp(3059px, calc(3259px + ((606px - 100vw) * -3.0303)), 3259px);;
    }
}



@media (min-height: 837px) and (max-height: 1366px) and (min-width: 741px) and (max-width: 1120px) {
    .hero-image {
        top: clamp(
            -254px, 
            calc(
                -254px 
                - ((1366px - 100vh) * -0.44991)
            ), 
            -16px
        );
        position: relative;
    }

    .hero-content {
        top: clamp(
            -224px, 
            calc(
                -224px 
                - ((1366px - 100vh) * -0.41966)
            ), 
            -2px
        );
    }

    .typing-section {
        top: clamp(
            -480px, 
            calc(
                -480px 
                - ((1366px - 100vh) * -0.91115)
            ), 
            2px
        );
    }

    .info-section {
        top: clamp(
            -484px, 
            calc(
                -484px 
                - ((1366px - 100vh) * -0.91115)
            ), 
            -2px
        );
    }
}

@media (min-height: 837px) and (max-height: 1366px) and (min-width: 607px) and (max-width: 740px) {
    .hero-image {
        top: clamp(
            -254px, 
            calc(
                -254px 
                - ((1366px - 100vh) * -0.44991)
            ), 
            -16px
        );
    }

    .hero-content {
        top: clamp(
            -224px, 
            calc(
                -224px 
                - ((1366px - 100vh) * -0.42722)
            ), 
            2px
        );
    }

    .info-section {
        top: clamp(
            -460px, 
            calc(
                -460px 
                - ((1366px - 100vh) * -0.89414)
            ), 
            13px
        );
    }


}

.about-page {
    overflow-y: visible !important; /* Overrides the global overflow-y */
    
}

.about-content {
    margin: 0 auto;
}

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto;
}

@media (max-width: 388px) {
    .info-content p {
        font-weight: bold;
    }
}

.mission-text {
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.mission-text-products {
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.founder-image-picture {
    position: absolute;
    top: 0;
    right: 0;  
    width: auto;  
    height: 999px; 
    min-height: 999px; 
    overflow: hidden;"
}

.founder-image {
    width: 100vw; 
    height: 1361px; 
    object-fit: cover; 
    object-position: right; 
    transform: translateY(-24%);
}

@media (max-width: 1292px) {
    .founder-image {
        width: 100vw;
        height: 1361px;
        object-fit: cover;
        object-position: left;
        position: relative;
        right: 500px;
        transform: translateY(-24%);
        overflow: visible;
    }
}

@media (max-width: 1086px) {
    .founder-image {
        object-position: right;
        right: -240px;
        width: unset;
    } 
}


@media (max-width: 640px) {
    .founder-story {
        line-height: 1.3;
    }

    .founder-image {
        scale: 0.9;
        object-position: right;
        right: -431px;
        width: unset;
        left: unset;
    }
}

.our-story-dropdown-smallscreen {
    visibility: hidden;
}

@media (max-width: 488px) {
   .our-story-dropdown {
        visibility: hidden;
   } 

   .our-story-dropdown-smallscreen {
    visibility: visible;
   }
}

@media (max-width: 488px) {
    #our-story-dropdown-text {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    #our-story-dropdown-text.open {
        max-height: 1000px; /* Adjust as needed */
        opacity: 1;
    }
}

@media (max-width: 484px) {
    .our-story-dropdown-header {
        position: relative;
        top: -23px;
    }
}

@media (max-width: 409px) {
    .our-story-dropdown-header {
        position: relative;
        top: -45px;
    }

    
}

.story-arrow {
    font-size: 0.8rem;
    color: #ffffff;
    position: relative;
    left: 146px;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    display: inline-block;
   
}

.whatwedo-img {
    position: relative; 
    left: clamp(-74px, -21.34vw + 325.058px, 66px); 
    margin-top: -15%;
}

.whatwedo-arrow {
    font-size: 0.8rem;
    color: #000000;
    position: relative;
    left: 76px;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    display: inline-block;
   
}

.whatwedo-dropdown {
    display:none;
    pointer-events: none;
}

.whatwedo-dropdown-text {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    height: auto;
    position: relative;
    left: -110px;
    margin-top: 40px;
}

.whatwedo-dropdown-title {
    display: block; 
    font-family: 'Roboto', sans-serif; 
    width: 344px; 
    padding-bottom: 7px; 
    color: #000000; 
    font-weight: 600; 
    font-size: 42px; 
    border-bottom: 2px #f3f3f3 solid; 
    line-height: 1.1;
}

.ourvalues-arrow {
    font-size: 0.8rem;
    color: #ffffff;
    position: relative;
    left: 76px;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    display: inline-block;
   
}

.ourvalues-dropdown {
    display:none;
    pointer-events: none;
    background: transparent;
    position: relative;
    width: 293px;
    text-align: left;
    top: -240px;
    margin-bottom: -340px;
    margin-left: auto;
    margin-right: auto;
    left: -110px;
}

.ourvalues-dropdown-title {
    display: block; 
    font-family: 'Roboto', sans-serif; 
    width: 324px; 
    padding-bottom: 7px; 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 42.79px; 
    border-bottom: 2px #f3f3f38a solid; 
    line-height: 1.1;
}

#ourvalues-dropdown-text {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    height: auto;
    position: relative;
    left: -78px;
    margin-top: 40px;
    line-height: 2rem;
    max-height: 500px;
}

#ourvalues-dropdown-text ul {
    font-size: 110%;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    width: 471px;
    padding-bottom: 1%;
    white-space: normal;
    margin-left: 4px;
}

#ourvalues-dropdown-text p {
    font-size: 110%;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    width: 72%;
}

.ourvalues-column {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    left: 100px;
}

.ourvalues-image {
    width: 560px;
    padding-left: 6px;
}

.ourvalues-image img {
    scale: 1;
    position: relative;
    left: clamp(-64px, 12.8vw - 219.36px, 20px);
}

.whytb-column {
    display: flex;
    flex-direction: row;
    position: relative;
    left: -30px;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
}

.whytb-arrow {
    font-size: 0.8rem;
    color: #000000;
    position: relative;
    left: 13px;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    display: inline-block;
   
}

.whytb-dropdown {
    display:none;
    pointer-events: none;
}

.whytb-image {
    width: 560px;
}

.whytb-image img {
    scale: 0.95;
    position: relative;
    left: clamp(-90px, -16.01vw + 209.787px, 15px);
}

.join-us h2 {
    margin-top: 146px; 
    font-size: clamp(23.36px, 0.544vw + 21.61px, 31.79px); 
    margin-bottom: 47px;
}

.whytb-dropdown-text ul {
    margin-right: 30%;
    font-size: 110%;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    width: 470px;
    padding-left: 10px;
    margin-left: 3px;
}

.whytb-dropdown-text p {
    margin-right: 30%;
    font-size: 110%;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    width: 420px;
}

.whytb-dropdown {
    background: transparent;
    position: relative;
    width: 293px;
    text-align: left;
    top: -314px;
    margin-bottom: -450px;
    margin-left: auto;
    margin-right: auto;
    left: -57px;
}

.whytb-dropdown-header {
    left: 130px;
    position: relative;
}

.cta-about {
    margin-top: 30px;
    margin-bottom: 120px;
    margin-left: -1px;
    font-size: 17.4px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 12px;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-font-smoothing: antialiased;  
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.whyus-section {
    display: flex; 
    flex-direction: row; 
    padding-top: 100px;
    padding-bottom: 90px;
}
       
@media (max-width: 1213px) {

    .founder-image-picture {
        height: 1035px;
    }

    .highlight-text {
        display: none;
        position: absolute;
    }

    .whyus-section {
        padding-top: 180px;
        padding-bottom: 180px;
    }

    .ourvalues-highlight-section {
    padding-top: 170px;
    padding-bottom: 150px;
    }

    .highlight-image {
        display: block;
        margin: 0 auto; 
        position: relative;
        margin-bottom: 130px;
    }

    .highlight-image img {
        left: 0px;
        width: auto;
    }

    .highlight-text {
        height: 594px;
    }

    .narrow-paragraph {
        height: 349.77px;
    }

    .highlight-text ul {
        height: 378.86px;
    }

    .highlight-text h2 {
        height: 179.09px;
    }

    .whatwedo-dropdown {
        display: none;
    }

    #whatwedo-dropdown-text {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        width: 500px;
    }

    #whatwedo-dropdown-text.open {
        max-height: 1000px; /* Adjust as needed */
        opacity: 1;
        
    }

    .whatwedo-dropdown {
        display: block;
        pointer-events: unset;
    }
    .highlight-section {
        flex-direction: column;
        margin-top: 163px;
    }

    .ourvalues-dropdown {
        display: none;
    }

    #ourvalues-dropdown-text {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        width: 500px;
    }

    #ourvalues-dropdown-text.open {
        max-height: 1000px; /* Adjust as needed */
        opacity: 1;
        
    }

    .ourvalues-dropdown {
        display: block;
        pointer-events: unset;
    }
    .ourvalues-column {
        flex-direction: column;
    }

    .ourvalues-text {
        display: none;
        position: absolute;
    }

    .ourvalues-image {
        display: block;
        margin: 0 auto; 
        position: relative;
        margin-bottom: 130px;
        top: -120px;
    }

    .ourvalues-image img {
        
        width: auto;
    }

    .whytb-dropdown {
        display: none;
    }

    #whytb-dropdown-text {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        width: 500px;
    }

    #whytb-dropdown-text.open {
        max-height: 1000px; /* Adjust as needed */
        opacity: 1;
    }

    .whytb-dropdown {
        display: block;
        pointer-events: unset;
    }
    .whytb-column {
        flex-direction: column;
    }

    .whytb-text {
        display: none;
        position: absolute;
    }

    .whytb-image {
        display: block;
        margin: 0 auto; 
        position: relative;
        margin-bottom: 130px;
        top: -210px;
        left: -6px;
    }

    .whytb-image img {
        
        width: 532px;
    }

    .join-us h2 {
        margin-top: 74px;
        margin-bottom: 70px;
    }

    .join-us a {
        left: clamp(35px, 33.82vw - 73.21px, 337px);
        transition: unset;
        top: 30px;
    }

    .cta-about {
        margin-top: clamp(10px, -2.24vw + 37.18px, 30px);
        margin-bottom: 110px;
    }
}

@media (max-width: 664px) {
    .join-us p {
        width: clamp(292px, 31.39vw + 191.93px, 400px);
    }

}

@media (max-width: 574px) {
    .highlight-image img {
        left: clamp(-70px, 53.85vw - 290.79px, 0px);
    }

    .whatwedo-dropdown {
        left: clamp(-40px, 30.77vw - 166.16px, 0px);
    }

    .whatwedo-dropdown-title {
        width: clamp(271px, 56.15vw + 40.79px, 344px);
    }

    .whatwedo-arrow {
        left: clamp(5px, 54.62vw - 218.95px, 76px);
    }

    .ourvalues-image {
        left: clamp(-91px, 50.28vw - 281.57px, 0px);
    }

    .ourvalues-dropdown-title {
        width: clamp(253px, 47.33vw + 101.55px, 324px);

    }

    .ourvalues-arrow {
        left: clamp(6px, 46.67vw - 143.35px, 76px);
    }    

    .whytb-image {
        left: clamp(-68px, 49.21vw - 288.41px, -6px)
    }

}

@media (max-width: 544px) {
    #whatwedo-dropdown-text {
        width: clamp(294px, 100.89vw - 28.84px, 520px);
        left: clamp(-119px, -23.88vw + 10.91px, -87px);
    }

    #ourvalues-dropdown-text {
        left: clamp(-78px, -24.55vw + 55.54px, -23px);
        width: 500px;
    }

    #ourvalues-dropdown-text ul {
        width: clamp(290px, 80.8vw + 31.45px, 471px);
        margin-left: clamp(4px, -3.13vw + 21.03px, 11px);
    }

    .whytb-dropdown {
        left: clamp(-57px, -38.84vw + 154.26px, 30px);
    }

    .whytb-dropdown-text ul {
        width: clamp(290px, 80.8vw + 31.45px, 471px);
    }

    .whytb-dropdown-text p {
      
        width: clamp(290px, 80.8vw + 31.45px, 471px);
    }
    .whytb-dropdown-header {
        left: clamp(36px, 41.96vw - 98.27px, 130px);
    }    
}

@media (max-width: 500px) {
    .join-us h2 {
        width: 84%;
    }
}

@media (max-width: 470px) {
    .ourvalues-dropdown {
    left:clamp(-110px, -20vw - 16px, -80px);
    }
}

@media (max-width: 448px) {
    .whytb-image img {
        width: clamp(392px, 109.38vw + 41.97px, 532px);
        left: clamp(16px, -10.94vw + 65.02px, 30px);
    }
}


@media (max-width: 409px) {
    .highlight-image img {
        width: 132%;
        left: clamp(-71px, -14.61vw - 11.25px, -58px);
    }

    .whatwedo-dropdown {
        left: 13px;
    }

    .whatwedo-img {
        margin-top: clamp(-95px, 16.85vw - 148.93px, -80px);
        
    }

    #whatwedo-dropdown-text {
        left: clamp(-76px, -57.3vw + 158.36px, -25px);
    }
}

@media (max-width: 387px) {
    #ourvalues-dropdown-text p {
        width: 68%;
    }
}

@media (max-width: 378px) {
    .ourvalues-image img {
        width: 86%;
        left: clamp(-66px, -12.07vw - 20.36px, -59px);
    }

    .ourvalues-image {
            width: 150%;
           
    }
    
}

@media (max-width: 360px) {
    .privacy-image-container img {
        height: auto;
    }
}

@media (max-width: 405px) {
    .cookie-image-container img {
        height: auto;
    }
}

.contact-text {
    font-size: 1.1rem; 
    line-height: 1.8rem; 
    max-width: 800px;
}

@media (max-width: 1246px) {
    .contact-text {
        max-width: clamp(500px, 81.97vw - 220.3px, 800px);
    }
}

.contact-typing-effect {
    font-size: 72px; 
    font-weight: 600; 
    margin-left: 0%; 
    margin-top: 150px; 
    white-space: nowrap; 
    height: 2em; 
    width: 10%;
}

.contact-message {
    display: flex; 
    flex-direction: column; 
    margin-top: 30px; 
    padding-left: 155px; 
    height: 365px;
    margin-left: 0px;
}

@media (max-width: 880px) {
    .contact-typing-effect {
        margin-left: clamp(-20px, 5.291vw - 46.56px, 0px);
    }
    
    .contact-message {
        margin-left: clamp(-168px, 44.44vw - 391.072px, 0px);
    }
}



@media (max-width: 660px) {
    .contact-text {
        max-width: clamp(390px, 69.62vw + 40.508px, 500px)
    }
}

.contact-main {
    padding-left: clamp(54.9px, 19.15vw - 77.605px, 280.5px);
}

@media (max-width: 1128px) {
    .contact-main {
        margin-top: -30px;
    }
}

@media (max-width: 920px) {
    .contact-main {
        margin-top: -40px;
    }
}

@media (max-width: 532px) {
    .contact-main {
        margin-top: -70px;
    }
}

@media (max-height: 803px) {
    .contact-message {
        height: 405px;
    }
}

@media (max-width: 502px) {
    .contact-main {
        padding-left: clamp(37px, 10.11vw + 4.174px, 54.9px);
    }

}

@media (max-width: 484px) {
    .contact-typing-effect {
        font-size: clamp(49.2px, 14.34vw + 2.6344px, 72px);
    }

    .contact-main {
        margin-top: clamp(-90px, 12.58vw - 130.8872px, -70px);
    }

    .contact-message {
        margin-top: clamp(30px, -12.58vw + 90.8872px, 50px);
    }
}

@media (max-width: 464px) {
    .contact-text {
        max-width: clamp(285px, 75.54vw + 39.0904px, 390px);
    }
}

.contact-cursor2 {
    border-right: 13px solid rgb(255, 255, 255);
}

@media (max-width: 424px) {
    .contact-message {
        height: 415px;
    }
}

@media (max-width: 420px) {
    .contact-cursor2 {
        border-right: 12px solid rgb(255, 255, 255);
    }
}

@media (max-width: 380px) {
    .contact-cursor2 {
        border-right: 11px solid rgb(255, 255, 255);
    }
}

@media (max-width: 340px) {
    .contact-message {
        height: 445px;
    }
}

@media (max-width: 325px) {
    .contact-cursor2 {
        border-right: 10px solid rgb(255, 255, 255);
    }
}

.signup-typingeffect {
    font-size: 450%; ; 
    margin-top: -290px; 
    margin-left: clamp(-75px, 6.79738562vw - 119.0951101px, 8px); 
    white-space: nowrap; 
    height: 2em; 
    width: 10%; 
    z-index: 1;
}

.highlight-text2 {
    width: 520px; 
    margin-left: clamp(10px, 21.24183007vw - 127.2342213px, 270px);
}

@media (max-width: 645px) {
    .signup-typingeffect {
        white-space: unset;
        width: 320px;
        margin-top: -414px;
        font-size: 65px;
        margin-left: clamp(-49px, -2.1875vw - 34.90625px, -42px);
    }

    .highlight-text2 {
        margin-left: clamp(-6px, 5vw - 22.25px, 10px);
    }
}

.signup-launching-text {
    color: #FFF; 
    font-size: 3.2rem; 
    margin-top: 50px; 
    width: 560px; 
    margin-bottom: 10%;
}

@media (max-width: 583px) {
    .signup-launching-text {
        width: 530px;
        line-height: 1.5;
    }
}

@media (max-width: 695px) {
    .highlight-text2 {
        width: clamp(330px, 51.35vw + 163.1175px, 520px);
    }
}

@media (max-width: 1590px) {
    .email-input {
        width: clamp(255px, 63.99vw - 71.441px, 945px);
    }
}

.highlight-section2 {
    background-color: #000; 
    color: #FFF; 
    height: 590px;
    margin-top: -110px;
}

@media (max-width: 654px) {
    .highlight-section2 {
        height: auto;
    }
}

.cta-signuppage {
    font-size: 1rem; 
    margin-top: 0px; 
    height: 57px; 
    width: 169px; 
    white-space: nowrap;
}

@media (max-width: 477px) {
    .email-container {
        flex-direction: column;
    }

    .email-input {
        width: clamp(285px, 98.68vw - 35.742px, 435px);
    }

    .cta-signuppage {
        margin-left: clamp(63px, 47.37vw - 91.161px, 135px);
        margin-top: 90px;
        margin-bottom: 20px;
    }
}

@media (max-width: 423px) {
    .signup-launching-text {
        font-size: clamp(40.2px, 11.22vw + 3.734px, 51.2px);
        width: 430px;
        margin-bottom: 50px;
    }
}

@media (max-width: 327px) {
    .signup-launching-text {
        width: 410px;
    }
}

.products-text {
    font-size: 300%;
    margin-top: 400px;
    margin-left: clamp(849px, calc(34.482vw + 320.19px), 965px);
    white-space: nowrap;
    height: 2em;
    width: 10%;
    z-index: 1;
}

@media (max-width: 1532px) {
    .products-text {
        margin-left: clamp(-141px, 35.35vw - 522.77px, 19px);
    }
}

@media (max-width: 1078px) {
    .products-text {
    margin-left: clamp(-90px, -7.97vw - 4.11px, -30px);
    }
}

.repositioned-img-container {
    display: none;
}
  
.schedulepro-img {
    display: block;
}

.text-and-image-row {
    display: flex; 
    flex-direction: row;
    
}

.text-and-image-row2 {
    margin-top: 15px; 
    margin-bottom: -20px;
}
 
.schedulepro-text {
    margin-right: 70px; 
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px);
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 45%; 
    line-height: 1.8; 
    margin-top: 20px;
}

.career1-text {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 560px;
    line-height: 1.8; 
    margin-top: -16px;
    position: relative;
    left: 54px;
}

.career4-text {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 560px;
    line-height: 1.8; 
    margin-top: -16px;
    position: relative;
    left: 77px;
}

.career5-text {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 560px;
    line-height: 1.8; 
    margin-top: -16px;
    position: relative;
    transform: translateX(-13px);
}

.schedule-pro {
    display: flex; 
    flex-direction: column; 
    margin-top: 85px;
}

.career1 {
    display: flex; 
    flex-direction: column; 
    margin-top: 95px;
    margin-bottom: -40px;
    width: 1090px;
}

.mission-text-products {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    height: 0px;
    width: 1030px;
}

.schedulepro-jpg {
    width: 500px;
    height: 300px;
}

.rightnow-jpg {
    width: 500px;
    height: 300px;
}

.repositioned-img-container-pcskills {
    width: 400px;
    height: 300px;
}

.text-and-image-row-career2 {
    width: 1090px; 
    align-self: center; 
    margin-top: 95px;
    margin-bottom: 125px;
   
}

.text-and-image-row-career3 {
    width: 1500px;
    align-self: center;
}

.text-and-image-row-career4 {
        align-self: center;
}

.text-and-image-row-career5 {
    align-self: center;
    margin-top: clamp(35px, 4.37vw + 20.8px, 75px);
    margin-bottom: 100px;
}

.career3-text {
    flex-direction: column;
    display: flex;
    margin-top: 73px;
    margin-left: -93px;
}

.career1-title {
    display: flex; 
    flex-direction: row; 
    margin-bottom: 20px;
}

.career2-title {
    display: flex; 
    flex-direction: row; 
    margin-bottom: 20px;  
}

.career3-title {
    display: flex; 
    flex-direction: row; 
    margin-bottom: 20px;
}
.career3-p {
    line-height: 2.4; 
    width: 502px; 
    text-align: justify;
}

.career3 {
    background-color: rgb(255, 255, 255); 
    color: rgb(0, 0, 0); 
    position: relative; 
    left: 50%; 
    right: 50%; 
    margin-left: -50vw; 
    margin-right: -50vw; 
    width: 100vw; 
    margin-top: 0px;
    height: 755px;
}

.typing-strip-container {
    width: 1086px;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.career1-p {
    line-height: 2.4; 
    max-width: 506px; 
    text-align: justify;
}

.career5-p {
    line-height: 2.4; 
    max-width: 506px; 
    text-align: justify;
}

.career2-p {
    line-height: 2.4; 
    max-width: 530px; 
    text-align: justify;
}

.latb-career4 {
    width: 500px;
    height: 318px;
}

#job-notification {
    position: absolute; 
    top: 60%; 
    left: 72%; 
    transform: translateY(-50%); 
    color: white; 
    font-size: 16px; 
    visibility: hidden; 
    white-space: nowrap; 
    background: transparent; 
    padding: 5px 10px; 
}

.careers-header {
    width: 1910px; 
    object-fit: cover; 
    object-position: center -392px; 
    position: absolute; 
    right: 0;
}

.careers-hero-title {
    font-size: 450%; 
    margin-left: clamp(380px, 74.749vw - 422.8px, 975px); 
    margin-top: clamp(-457px, -34.95vw - 171.367px, -388px); 
    white-space: nowrap; 
    height: 2em; 
    width: 10%; 
    z-index: 1;
}

@media (max-width: 1458px) {
    .careers-header {
        left: 0;
        object-position: -450px -392px;
    }
}

@media (max-width: 1278px) {
    .careers-header {
        right: 0;
        left: unset;
        object-position: 185px -392px;
    }
}

@media (max-width: 1074px) {
    .careers-header {
        left: 0;
        right: unset;
        object-position: -650px -392px;
    }

    .careers-hero-title {
        margin-left: clamp(162px, 73.464vw - 364px, 425px);
    }
}

@media (max-width: 671px) {
    .careers-hero-title {
        margin-left: clamp(22px, 59.83vw - 239.5px, 162px);
        font-size: clamp(48px, 4.9vw + 43px, 72px);
    }
}

@media (max-width: 436px) {
    .careers-hero-title {
        margin-top: clamp(-388px, -7.12vw - 313.293px, -369px);
        font-size: clamp(48px, 14.77vw - 0.056px, 64.4px);
        margin-left: clamp(15px, 6.31vw - 5.536px, 22px);
    }
}

@media (max-width: 1241px) {
    .schedule-pro {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 55px;
    }
    
    .search-bar {
        max-width: 541px;
    }

    #job-notification {
        left: 3%;
        top: 106%;
    }

    .career1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: unset;
        margin-bottom: 60px;
    }

    .career1-title {
        align-self: center;    
        margin-bottom: clamp(10px, 22.42vw - 62.9px, 60px);
    }

    .career2-title {
        align-self: center;
    }
  
    .repositioned-img-container {
      display: block;
      order: 2; 
    }
  
    .text-and-image-row {
      order: 3;
      flex-direction: column;
      align-items: center;
      width: unset;
    }

    .text-and-image-row2 {
        margin-bottom: -40px;
    }
  
    .schedulepro-img {
      display: none;
    }
  
    .mission-section-products {
      order: 4;
      width: 500px;
      margin-top: 40px;
    }

    .typing-strip-container {
        width: 498px;
    }

    .schedulepro-text {
        width: 496px;
        margin-right: 0px;
        margin-top: 50px;
    }

    .career1-text {
        width: 500px;
        margin-right: 0px;
        left: 0px;
    }

    .career4-text {
        margin-left: clamp(20px, 50.505vw - 524.439px, 420px);
        margin-right: clamp(20px, 50.505vw - 524.439px, 420px);
    }

    .career5-text {
        width: unset;
        max-width: 560px;
        transform: translateX(0px);
        margin-left: clamp(20px, 50.505vw - 524.439px, 420px);
        margin-right: clamp(20px, 50.505vw - 524.439px, 420px);
        margin-bottom: 22px;
    }

    .career3 {
        height: auto;
        width: unset;
        left: unset;
        right: unset;
        margin-left: 0; 
        margin-right: 0;
        margin-top: unset;
    }

    .career3-text {
        margin-left: 0px;
        margin-top: clamp(3px, 4.37vw - 11.23px, 43px);
    }

    .ric-career3 {
        order: 1;
        
    }

    .career3-title {
        align-self: center;
        order: 2;
        z-index: 1;
        position: absolute;
        left: clamp(85px, 87.44vw - 199px, 280px);
        width: 230px;
    }

    .career3-p {
        order: 3;
        position: relative;
        bottom: clamp(-50px, -1.092vw - 36.44px, -40px);
        margin-bottom: clamp(30px, 6.55vw + 8.7px, 90px);
        width: unset;
    }

    .career1-p {
        order: 3;
        margin-bottom: clamp(-25px, 02.729vw - 33.87px, 0px);
    }

    .career5-p {
        order: 3;
        margin-bottom: clamp(-45px, 4.913vw - 61px, 0px);
        align-self: center;
    }

    .career2-p {
        order: 3;
        margin-top: clamp(-30px, 3.275vw - 40.65px, 0px);
    }
    
    .text-and-image-row-career2 {
        width: unset;
        margin-top: clamp(52px, 4.694vw + 36.7px, 95px);
        margin-bottom: clamp(15px, 6.55vw - 6.3px, 75px);
        margin-left: clamp(20px, 50.505vw - 524.439px, 420px);
        margin-right: clamp(20px, 50.505vw - 524.439px, 420px);
        right: 0px;
    }
    

    .mission-text-products {
        width: 500px;
    }
}

@media (max-width: 548px) {
    .career1-p {
        text-align: left;
    }

    .career2-p {
        text-align: left;
    }

    .career3-p {
        text-align: left;
    }

    .career5-p {
        text-align: left;
    }
}

.ondemand-title {
    display: flex; 
    flex-direction: row;
    position: relative;
    top: 20px;
}

.career2-title {
    display: flex; 
    flex-direction: row;
}
  
.repositioned-img-container-ondemand {
    display: none;
}

.repositioned-img-container-career2 {
    display: none;
}
  
.ondemand-img {
    display: block;
}

.text-and-image-row-ondemand {
    display: flex; 
    flex-direction: row;
}
 
.ondemand-text {
    margin-right: 70px; 
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px); 
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 45%; 
    line-height: 1.8; 
}

.career2-text {
    margin-right: 34px; 
    margin-left: -70px;
    margin-top: -25px;
    font-size: 16px; 
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 47.8%; 
    line-height: 2.4; 
}

.Ondemand {
    display: flex; 
    flex-direction: column; 
    margin-top: 85px;
}

.career2 {
    display: flex; 
    flex-direction: column; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.typing-strip-section {
    display: flex; 
    flex-direction: row; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

.golive-text {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    height: 0px;
    width: 1030px;
}

@media (max-width: 1241px) {
    .Ondemand {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 35px;
    }
   
    .ondemand-title {
        
        position: relative;
        top: 0px;
        left: 20px;
    }
       
    .repositioned-img-container-ondemand {
      display: block;
      order: 2; 
    }
     
    .text-and-image-row-ondemand {
      order: 3;
      flex-direction: column;
      align-items: center;
    }
  
    .ondemand-img {
      display: none;
    }
  
    .golive-section {
      order: 4;
      width: 500px;
      margin-top: 10px;
    }

    .ondemand-text {
        width: 496px;
        margin-right: 0px;
        margin-top: 70px;
        margin-bottom: 30px;
    }
    
    .golive-text {
        width: 500px;
    }
}

.screwdriver-repositioned {
    display: none;
}

.repositioned-screwdriver-white {
    display: none;
}

@media (max-width: 1241px) {

    .career2-text {
        width: 496px;
        margin-right: 0px;
        margin-left: 0px;
        right: 0px;
    }

    .screwdriver {
        display: none;
    }

    .screwdriver-white {
        display: none;
    }

    .text-and-image-row-career5  {
        margin-bottom: 40px;
    }

    .screwdriver-repositioned {
        display: block;
        width: clamp(285px, 91.63vw - 13.2px, 1124px);
    }

    .repositioned-screwdriver-white {
        display: block;
        width: clamp(285px, 91.63vw - 13.2px, 1124px);
    }

    .repositioned-img-container-career2 {
        display: block;
        order: 2; 
        align-self: center;
    }

    .career2-title {
        align-self: center;
        margin-bottom: clamp(13px, 4.039vw - 0.13px, 50px);
    }

    .career2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 35px;
    }
}

.repositioned-img-container-pcskills {
    display: none;
}
  
.pcskills-img {
    display: block;
}

.text-and-image-row-pcskills {
    display: flex; 
    flex-direction: row;
}
 
.pcskills-text-p {
    margin-right: 70px; 
    font-size: clamp(17.41px, 0.0129vw + 17.369px, 17.61px); 
    font-family: 'Roboto', sans-serif; 
    font-weight: normal; 
    width: 45%; 
    line-height: 1.8; 
    margin-top: 20px;
}

.PCskills {
    display: flex; 
    flex-direction: column; 
    margin-top: 85px;
}

.PCskills-text {
    font-family: Roboto, sans-serif;
    font-weight: normal;
    height: 0px;
    width: 1030px;
}

@media (max-width: 1241px) {
    .PCskills {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 35px;
    }
  
    .repositioned-img-container-pcskills {
      display: block;
      order: 2; 
    }
  
    .text-and-image-row-pcskills {
      order: 3;
      flex-direction: column;
      align-items: center;
    }
  
    .pcskills-img {
      display: none;
    }
  
    .PCskills-section {
      order: 4;
      width: 500px;
    }

    .pcskills-text-p {
        width: 496px;
        margin-right: 0px;
        margin-top: 70px;
        margin-bottom: 45px;
    }

    .PCskills-text {
        width: 508px;
    }
}

.repositioned-img-container-pcskills {
    position: relative; 
    top: 30px;
}

@media (max-width:548px) {
    .schedulepro-jpg {
        width: 100%;
        aspect-ratio: 5 / 3;
        display: block;
        height: auto;
        position: relative;
    }

    .latb-career4 {
        width: 100%;
        aspect-ratio: 5 / 3.18;
        display: block;
        height: auto;
        position: relative;
    }

    .rightnow-jpg {
        width: 99%;
        aspect-ratio: 5 / 3;
        display: block;
        height: auto;
        position: relative;
        right: 2px;
    }

    .repositioned-img-container-pcskills {
        width: clamp(320px, calc(35.874vw + 203.65px), 400px);
        aspect-ratio: 4 / 3;
        display: block;
        height: auto;
        left: 5px;
    }

    .schedulepro-text {
        max-width: 496px;
        width: auto;

    }

    .career1-text {
        max-width: 500px;
        width: auto;

    }

    .mission-section-products {
    width: clamp(270px, calc(103.139vw - 65.20px), 500px);
    }

    .mission-text-products {
        width: clamp(263px, calc(106.278vw - 82.39px), 500px)
    }

    .ondemand-text {
        width: auto;
        max-width: 496px;
    }

    .career2-text {
        width: auto;
        max-width: 500px;
    }

    .golive-section {
        width: clamp(270px, calc(103.139vw - 65.20px), 500px);
    }

    .golive-text {
        width: clamp(263px, calc(106.278vw - 82.39px), 500px);
    }

    .pcskills-text-p {
        width: auto;
        max-width: 496px;
    }

    .PCskills-section {
        width: clamp(263px, calc(106.278vw - 82.39px), 500px);
    }

    .PCskills-text {
        width: clamp(263px, calc(106.278vw - 82.39px), 500px);
    }
}

.mission-text-products p,
.mission-text-products ul {
  opacity: 0;
  transition: opacity 0.3s ease 0.25s; /* Delay the fade-in slightly */
}

.mission-text-products.open p,
.mission-text-products.open ul {
  opacity: 1;
}

.golive-text p,
.golive-text ul {
  opacity: 0;
  transition: opacity 0.3s ease 0.25s; /* Delay the fade-in slightly */
}

.golive-text.open p,
.golive-text.open ul {
  opacity: 1;
}

.PCskills-text p,
.PCskills-text ul {
  opacity: 0;
  transition: opacity 0.3s ease 0.25s; /* Delay the fade-in slightly */
}

.PCskills-text.open p,
.PCskills-text.open ul {
  opacity: 1;
}

@media (max-width: 494px) {
    .career2-title {
        align-self: auto;
    }

    .career1-title {
        align-self: baseline;
    }
}


@media (max-width: 522px) {
    .typing-strip-section {
        height: 149px;
    }
}

.typing-strip-container {
  position: relative;
}


@media (max-width: 814px) {
    .careers-header {
        object-position: unset;
        object-fit: contain;
        width: 100%;
    }
}

@media (max-width: 616px) {
    .careers-header {
        width: 616px;
        min-width: 616px;
        max-width: none;
    }
}

.about-us-title {
    font-size: 300%; 
    color: white; 
    z-index: 1; 
    position: relative; 
    left: clamp(-704px, -41.5vw + 72.8px, -60px); 
    top: 181px;
}

.about-section1 {
    padding-left: clamp(22px, 16.32vw - 30.184px, 275px); 
    min-width: 100vw; 
    margin-bottom: -20px; 
    margin-top: clamp(0px, -6.452vw + 120.645px, 100px); 
    position: relative; 
    top: -50px;
}

.products-header-image {
    width: 1910px; 
    height: 836px; 
    object-fit: cover; 
    object-position: center -150px; 
    transform: scale(1.3);
}

.hero-about2 {
    height: 668px; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
}

.signup-hero {
    height: 668px; 
    position: relative; 
    display: flex; 
    align-items: center; 
    text-align: left;
}

@media (max-width: 404px) {
    .about-us-title {
        top: 151px;
        left: clamp(0px, 37.975vw - 123.26px, 30px);
    }

    .products-text {
        margin-left: clamp(32px, 78.481vw - 223.566px, 94px);
        top: -13px;
        position: absolute;

    }

    .products-header-image {
        object-position: center -225px;
    }

    .about-section1 {
        margin-top: 70px;
    }

    .hero-products {
        height: 528px;
    }

    .hero-about2 {
        height: 528px;
    }

    .signup-hero {
    height: 528px;
    } 

    .signup-typingeffect {
        margin-top: -277px;
    }
}

