@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    background-image: url('img/background.png'); /* Replace with the actual path to your .png image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center 0px; /* Centers horizontally and moves the image 50px down */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    margin:0 ;
    padding-top: 0;
    position: relative;
    min-height: 100vh;
    color: white; /* Optional: To ensure text is visible against the background */
}

.logo-container {
    display: flex;
    align-items: center;
}

.beta-box {
    font-family: 'Outfit', sans-serif;
    background-color: #000000; /* Example color for the beta box */
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
    margin-left: 10px;
    text-transform: uppercase;
    border: 2px solid #ff5722; /* Orange border */
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


.light-source {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%; /* This makes the div a circle */
    position: absolute;
    top: -20px; /* Adjust this value as needed */
    right: 0px; /* Adjust this value as needed */
    box-shadow: 0 0 50px 20px rgba(255, 255, 255, 0.5); /* Optional: To add a glowing effect */
    filter: blur(100px); /* This adds a blur effect to the circle */
}

#product {
    background-color: white; /* Set the background to white */
    color: black; /* Optional: Change text color to black for better contrast */
    padding: 50px; /* Add padding for spacing inside the section */
    text-align: center; /* Center-align the text */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 10px 100px; /* Adjust padding for smaller screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    background: black;
}

.navigation a {
    position: relative;
    font-family: 'Outfit', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 18px; /* Adjust font size for smaller screens */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 40px; /* Adjust margin for smaller screens */
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}

.navigation a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.contactbtn{
    font-family: 'Outfit', sans-serif;
    font-size: 18px; /* Adjust the font size as needed */
    font-weight: 500;
    border-radius: 15px;
    background: #FFF;
    width: 120px;
    height: 50px;
    margin-left: 40px; /* Adjust margin for smaller screens */
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border: none; /* Remove any border that could appear as shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.contactbtn:hover {
    transform: scale(1.1); /* Slightly increase the size of the button */
    background-color: #ddd; /* Change the background color on hover */
}

.contactbtn:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
}

.wrapper {
    position: relative; /* Ensure positioning does not affect scrolling */
    top: 250px; /* Adjust positioning if needed */
    left: 80px; /* Adjust positioning if needed */
    height: auto; /* Content will expand based on content */
    display: flex;
    flex-direction: column; /* Ensure flex items are in a column */
    justify-content: flex-start;
    padding: 20px; /* Add padding for spacing */
    box-sizing: border-box; /* Ensure padding does not affect total width/height */
    margin-bottom: 10px;
}

.logo {
    width: 150px; /* Set the width of the logo */
    height: auto; /* Maintain the aspect ratio */
    font-family: 'Outfit', sans-serif;
    color: white;
}

.headline {
    font-family: 'Outfit', sans-serif;
    max-width: 1200px; /* Adjust this value as needed */
    font-size: 4.5em; /* Adjust the font size as needed */
    line-height: 1.2; /* Adjust line height for better readability */
    margin-bottom: 1px; /* Add space between the headline and paragraph */
    margin-top: 1px; /* Add space between the headline and paragraph */
    font-weight: 600;
}

#about-us {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    height: 100vh;       /* Full viewport height */
    padding: 80px;       /* Optional: Add padding around the section */
    box-sizing: border-box; /* Include padding in height calculations */
    margin-top: 200px;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 3em;          /* Adjust font size as needed */
    line-height: 1.2;        /* Adjust line height for better readability */
    font-weight: 600;
    margin-bottom: 20px;     /* Add space between the title and other content */
    text-align: center;      /* Center the title text */
}

#wrapper-container {
    display: flex;
    flex-direction: row-reverse; /* Reverses the order of the children */
}

.grid {
    background: hsl(0, 0%, 0%);
    width: 100%;
    max-width: 1100px;
    height: 600px;
    display: grid;
    gap: 1vw;
    padding: 1vw;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
    "hero hero hero hero aside2 aside2"
    "aside3 aside3 aside4 aside4 aside2 aside2";
    margin: 0 auto; /* Center the grid horizontally */
}

.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 200px; /* Adjust this as needed */
    margin: left; /* Center the grid */
}

.grid-3x2 .item {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Adjust the height as needed */
    border: 2px solid #464545;
    border-radius: 5px;
}

.box1 {
    border-radius: 20px;
    width: 150px;
    height: 20px; /* Increased height to better accommodate text */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text inside the h2 element */
    background-color: #353535; /* Background color */
    color: #ffffff; /* Text color for better contrast */
    padding: 5px; /* Optional: padding inside the box */
}






.item {
    border: 2px solid #000000;
    border-radius:30px;
    font-family: 'Outfit', sans-serif;
    padding-left: 20px;
    
}
  
.grid .item:nth-child(1) {
    grid-area: hero;
    background: hsl(0, 0%, 13%);

}
.grid .item:nth-child(2) {
    grid-area: aside2;
    background: hsl(0, 0%, 13%);
}
  
.grid .item:nth-child(3) {
    grid-area: aside3;
    background: hsl(0, 0%, 13%);
}
.grid .item:nth-child(4) {
    grid-area: aside4;
    background: hsl(0, 0%, 13%);
}
  
.inbox1 {
    font-family: 'Outfit', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 1em; /* Adjust font size for smaller screens */
}

.inbox2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2em; /* Adjust font size for smaller screens */
    margin-bottom: 20px;         /* Add space below the heading */
    color: rgb(255, 255, 255);
}

.inbox3 {
    font-family: 'Outfit', sans-serif;
    max-width: 600px; /* Match the headline's width */
    font-size: 1em; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust line height for better readability */
    font-weight: 300;
    color: rgb(255, 255, 255);
}

.box2 {
    border-radius: 20px;
    margin-top: 20px;
    width: 90px;
    height: 20px; /* Increased height to better accommodate text */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text inside the h2 element */
    background-color:#FFF; /* Background color */
    color: #fff; /* Text color for better contrast */
    padding: 5px; /* Optional: padding inside the box */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.box2:hover {
    transform: scale(1.1); /* Slightly increase the size of the button */
    background-color: #ddd; /* Change the background color on hover */
}

.box2:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
}


.productbtn {
    margin-top: 10px;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 500;
    border-radius: 15px;
    background: #FFF;
    display: flex;
    width: 100px;
    height: 30px;
    padding: 12px 22px;
    justify-content: center;
    align-items: right;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border: none; /* Remove any border that could appear as shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.productbtn:hover {
    transform: scale(1.1); /* Slightly increase the size of the button */
    background-color: #ddd; /* Change the background color on hover */
}

.productbtn:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
}

.productbtn1 {
    margin-top: 60px;
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 500;
    border-radius: 15px;
    background: #FFF;
    display: flex;
    width: 100px;
    height: 30px;
    padding: 12px 22px;
    justify-content: center;
    align-items: right;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border: none; /* Remove any border that could appear as shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.productbtn1:hover {
    transform: scale(1.1); /* Slightly increase the size of the button */
    background-color: #ddd; /* Change the background color on hover */
}

.productbtn1:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
}

.timeline {
    position: relative;
    margin-left: 20px;
    margin-top: 50px;
    border-left: 1px solid #444; /* Line connecting the dots */
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #444; /* Inactive dot color */
    border-radius: 50%;
    border: 2px solid #2B2B2B; /* Border to match the background */
}

.timeline-dot.active {
    background-color: #FFF; /* Active dot color */
    border-color: #2B2B2B;
}

.timeline-content {
    padding-left: 30px; /* Space between dot and content */
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.2em;
}

.timeline-content p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #AAA; /* Slightly lighter text for the description */
}




.wrapper2 {
    flex: 1;                      /* Allow both wrappers to grow equally */
    margin: 0 10px;               /* Optional: Add space between the wrappers */
    padding: 20px;                /* Optional: Add padding inside the wrappers */
    box-sizing: border-box;      /* Include padding in width calculations */
}

.who-we-are {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3em; /* Adjust font size for smaller screens */
    margin-bottom: 20px; /* Add space below the heading */
    position: relative; /* Make it a positioned element for the ::after pseudo-element */
}

.who-we-are::after {
    content: '';
    display: block;
    width: 100%; /* Full width of the heading */
    height: 1.5px; /* Thickness of the underline */
    background-color: white; /* Color of the underline */
    position: absolute;
    bottom: -10px; /* Adjust the distance between the heading and the underline */
    left: 0;
}


.para {
    padding-left: 5px;
    margin-bottom: 10px;         /* Add space between paragraphs */
}

.para1 {
    padding-left: 5px;
    margin-bottom: 10px;         /* Add space between paragraphs */
}

.para2 {
    padding-left: 5px;
    margin-bottom: 80px;         /* Add space between paragraphs */
}

.box {
    border-radius: 20px;
    width: 200px;
    height: 40px; /* Increased height to better accommodate text */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text inside the h2 element */
    margin-bottom: 20px; /* Space between boxes */
    margin-top: 50px; /* Space between boxes */
    background-color: #212121; /* Background color */
    color: #fff; /* Text color for better contrast */
    padding: 10px; /* Optional: padding inside the box */
}

.wrapper3 {
    flex: 1;                      /* Allow both wrappers to grow equally */
    box-sizing: border-box;      /* Include padding in width calculations */
}

.image {
    position: center; /* Stack images on top of each other */
    max-width: 80%; /* Ensure the image does not exceed the wrapper's width */
    height: auto; /* Adjust if needed */
    border-radius: 15px;
    margin-left: 100px;
    margin-top: 80px;
}

.glow:hover {
    color: #fff; /* Ensure the text is white */
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #9bfa01, 0 0 30px #9bfa01, 0 0 40px #9bfa01, 0 0 55px #9bfa01, 0 0 75px #9bfa01;
    transition: text-shadow 0.6s ease;
}


.para {
    font-family: 'Outfit', sans-serif;
    max-width: 600px; /* Match the headline's width */
    font-size: 2em; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust line height for better readability */
    font-weight: 200;
}

.para1 {
    font-family: 'Outfit', sans-serif;
    max-width: 1200px; /* Match the headline's width */
    font-size: 2em; /* Adjust the font size as needed */
    line-height: 1.5; /* Adjust line height for better readability */
    font-weight: 200;
}

.para2 {
    font-family: 'Outfit', sans-serif;
    max-width: 800px; /* Match the headline's width */
    font-size: 1.2em; /* Adjust the font size as needed */
    line-height: 1.6; /* Adjust line height for better readability */
    font-weight: 300;
}


.learnmorebtn {
    text-decoration: none; /* Remove the underline */
    color: inherit; /* Keep the text color consistent with the rest of your design */
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 500;
    border-radius: 15px;
    background: #FFF;
    display: flex;
    width: 150px;
    height: 30px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex-wrap: wrap;
    border: none; /* Remove any border that could appear as shadow */
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    color: #000000;
}

.learnmorebtn:hover {
    transform: scale(1.1); /* Slightly increase the size of the button */
    background-color: #ddd; /* Change the background color on hover */
    color: inherit; /* Ensure the color doesn't change on hover */
    color: #000000;
}

.learnmorebtn:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
    color: inherit; /* Ensure the color doesn't change on click */
    color: #000000;
}


.about-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    color: #333;
    transition: transform 0.5s ease-in-out;
    /* Adjust the height and other styles as needed */
    min-height: 100vh; /* To ensure it occupies full viewport height */
}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden; /* Hide horizontal scrolling */
    overflow-y: auto; /* Allow vertical scrolling */
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #333; /* Background color of the scrollbar track */
    border-radius: 10px; /* Rounded corners of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #666; /* Color of the scrollbar handle */
    border-radius: 10px; /* Rounded corners of the scrollbar handle */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); /* Optional: Add a shadow for depth */
}

::-webkit-scrollbar-thumb:hover {
    background: #999; /* Color when hovering over the scrollbar handle */
}

.wrapper-container2 {
    padding-top: 100px;
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    align-items: center; /* Center items horizontally */
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 500px; /* Adjust the max-width as needed */
    min-height: 100vh; /* Ensure it takes at least the full height of the viewport */
    margin-bottom: 10px;
}
.contact-form {
    width: 100%;
    background: #1E1E1E;
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
}

.contact-form h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2em; /* Adjust the font size as needed */
    font-weight: 200;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.form-group {
    font-family: 'Outfit', sans-serif;
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 500;
    margin-bottom: 15px;
    
}

.form-group label {
    font-weight: 200;
    display: block;
    color: white;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 200;
    font-family: 'Outfit', sans-serif;
    color: white;color: white;
    background-color: hsl(0, 0%, 18%);
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}


.button-container {
    display: flex;
    justify-content: flex-end; /* Align button to the right */
}

button[type="submit"] {
    font-family: 'Outfit', sans-serif;
    font-size: 1em; /* Adjust the font size as needed */
    font-weight: 500;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

button[type="submit"]:active {
    transition: transform 0.1s ease, background-color 0.3s ease; /* Faster scale on click */
    transform: scale(0.9); /* Slightly decrease the size of the button on click */
    background-color: #ccc; /* Change the background color on click */
}

/* General Section Styling */
#solutions {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #333;
}

/* Features Container */
.features-container {
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

/* Card Container */
.feature-card {
    width: 200px;
    height: 250px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.feature-card:hover .card-inner {
    transform: rotateY(180deg);
}

/* Card Faces */
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.card-front {
    background-color: #fff;
    border: 1px solid #ccc;
}

.card-front img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.card-front h3 {
    font-size: 1.2em;
    color: #333;
}

.card-back {
    background-color: #000000;
    color: #fff;
    transform: rotateY(180deg);
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}

/* Button Styling */
.cta-button {
    margin-top: 80px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #444;
}

.future-innovation {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background: url('path-to-your-background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

/* Section Title */
.future-innovation h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Horizontal Line */
.future-innovation hr {
    width: 80px;
    height: 2px;
    background-color: #fff;
    border: none;
    margin: 20px auto;
}

/* Paragraph Text */
.future-innovation p {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.contactus {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9; /* Light background color */
}

.contactus-container {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    align-items: center; /* Align items vertically */
    text-align: center; /* Center text within each item */
}

.contact-item {
    flex: 1; /* Make all items take equal space */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text within the container */
}


.contact-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #000000; /* Subtle text color */
}

.contact-item a {
    color: #007bff; /* Email link color */
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item.contact-us {
    flex-direction: row; /* Align content horizontally */
    align-items: center; /* Center vertically */
    text-align: left; /* Align text to the left */
}

.contact-item.contact-us img {
    margin-right: 10px; /* Add spacing between icon and text */
}

.contact-item.contact-us p {
    margin: 0;
}

/* Button Styling */
.cta-button2 {
    margin-top: 5px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button2:hover {
    background-color: #444;
}


.footer {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background-color: #000000;
    color: #ffffff;
    padding: 1px 30%;
    text-align: center;
    position: relative;
    font-size: 10px;
  }
  .footer .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer .contact-section div {
    margin: 10px;
    text-align: left;
  }
  .footer .contact-section img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .footer .get-in-touch {
    text-align: right;
  }
  .footer .get-in-touch button {
    background-color: #000000;
    color: #000000;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
  }
  .footer .get-in-touch button:hover {
    background-color: #000000;
    color: #ffffff;
  }
  .footer .links {
    font-size: 10px;
  }
  .footer .links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer .links a:hover {
    text-decoration: underline;
  }



/* For screens smaller than 1024px (Tablet landscape and below) */
@media (max-width: 1920px) {
    .grid-container {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        grid-template-rows: repeat(3, 1fr); /* 3 rows */
        gap: 8px; /* Adjust gap for smaller screens */
    }

    .grid-item {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .inbox2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
    
    .inbox3 {
        font-size: 0.7em; /* Adjust font size for smaller screens */
    }

    .title {
        font-size: 2em;          /* Adjust font size as needed */
    }

    .form-group {
        font-size: 1em; /* Adjust the font size as needed */
    }

    .contact-form h2 {
        font-size: 1.5em; /* Adjust the font size as needed */
    }

    .contact-form {
        width: 100%;
        padding-top: 5px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        border-radius: 30px;
    }

    .timeline-content h3 {
        font-size: 0.7em;
    }
    
    .timeline-content p {
        font-size: 0.5em;
    }

    
    .headline {
        font-size: 4.5em; /* Smaller font size */
        margin-bottom: 15px; /* Adjust margin */
        max-width: 1200px; /* Adjust this value as needed */
    }

    .para {
        font-size: 2em; /* Smaller font size */
    }

    .para1 {
        font-size: 2em;
        padding-left: 5px;
        margin-bottom: 200px;         /* Add space between paragraphs */
    }
    

    .logo {
        width: 100px; /* Set the width of the logo */
    }

    .box1 {
        width: 120px;
        height: 20px; /* Increased height to better accommodate text */
    }

    .box2 {
        width: 60px;
        height: 10px; /* Increased height to better accommodate text */
    }

    .inbox1 {
        font-size: 0.8em; /* Adjust font size for smaller screens */
    }
}


@media (max-width: 1440px) {
    .grid-container {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        grid-template-rows: repeat(3, 1fr); /* 3 rows */
        gap: 8px; /* Adjust gap for smaller screens */
    }

    .grid-item {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .inbox2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
    
    .inbox3 {
        font-size: 0.7em; /* Adjust font size for smaller screens */
    }

    .title {
        font-size: 2em;          /* Adjust font size as needed */
    }

    .form-group {
        font-size: 1em; /* Adjust the font size as needed */
    }

    .contact-form h2 {
        font-size: 1.5em; /* Adjust the font size as needed */
    }

    .contact-form {
        width: 100%;
        padding-top: 5px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        border-radius: 30px;
    }

    .timeline-content h3 {
        font-size: 0.7em;
    }
    
    .timeline-content p {
        font-size: 0.5em;
    }

    
    .headline {
        font-size: 4em; /* Smaller font size */
        margin-bottom: 15px; /* Adjust margin */
        max-width: 1200px; /* Adjust this value as needed */
    }

    .para {
        font-size: 1.5em; /* Smaller font size */
    }

    .para1 {
        font-size: 1.5em;
        padding-left: 5px;
        margin-bottom: 80px;         /* Add space between paragraphs */
    }

    .para2 {
        font-size: 1em; /* Smaller font size */
    }
    

    .logo {
        width: 100px; /* Set the width of the logo */
    }

    .box1 {
        width: 120px;
        height: 20px; /* Increased height to better accommodate text */
    }

    .box2 {
        width: 60px;
        height: 10px; /* Increased height to better accommodate text */
    }

    .inbox1 {
        font-size: 0.8em; /* Adjust font size for smaller screens */
    }
}



/* For screens smaller than 1024px (Tablet landscape and below) */
@media (max-width: 1230px) {

    .navigation a {
        font-size: 10px; /* Smaller font size */
        margin-left: 10px; /* Smaller margin */
    }

    .inbox2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
    
    .inbox3 {
        font-size: 0.7em; /* Adjust font size for smaller screens */
    }

    .title {
        font-size: 2em;          /* Adjust font size as needed */
    }

    .form-group {
        font-size: 0.7em; /* Adjust the font size as needed */
    }

    .contact-form h2 {
        font-size: 1em; /* Adjust the font size as needed */
    }

    .contact-form {
        width: 50%;
        padding-top: 5px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        border-radius: 10px;
    }

    .timeline-content h3 {
        font-size: 0.7em;
    }
    
    .timeline-content p {
        font-size: 0.5em;
    }

    .para {
        font-size: 1.2em; /* Smaller font size */
    }

    .headline {
        max-width: 800px;
        font-size: 3em; /* Smaller font size */
    }

    .para1 {
        max-width: 800px;
        font-size: 1.2em; /* Smaller font size */
    }

    .logo {
        width: 100px; /* Set the width of the logo */
    }

    .box1 {
        width: 120px;
        height: 20px; /* Increased height to better accommodate text */
    }

    .box2 {
        width: 60px;
        height: 10px; /* Increased height to better accommodate text */
    }

    .inbox1 {
        font-size: 0.8em; /* Adjust font size for smaller screens */
    }
}

/* For screens smaller than 1024px (Tablet landscape and below) */
@media (max-width: 1024px) {

    .navigation a {
        font-size: 10px; /* Smaller font size */
        margin-left: 10px; /* Smaller margin */
    }

    .inbox2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
    
    .inbox3 {
        font-size: 0.7em; /* Adjust font size for smaller screens */
    }

    .title {
        font-size: 2em;          /* Adjust font size as needed */
    }

    .form-group {
        font-size: 0.7em; /* Adjust the font size as needed */
    }

    .contact-form h2 {
        font-size: 1em; /* Adjust the font size as needed */
    }

    .contact-form {
        width: 50%;
        padding-top: 5px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
        border-radius: 10px;
    }

    .timeline-content h3 {
        font-size: 0.7em;
    }
    
    .timeline-content p {
        font-size: 0.5em;
    }

    .para {
        font-size: 1.2em; /* Smaller font size */
    }

    .headline {
        max-width: 800px;
        font-size: 3em; /* Smaller font size */
    }

    .para1 {
        max-width: 800px;
        font-size: 1.2em; /* Smaller font size */
    }

    .para2 {
        max-width: 800px;
        font-size: 0.8em; /* Smaller font size */
    }

    .logo {
        width: 100px; /* Set the width of the logo */
    }

    .box1 {
        width: 120px;
        height: 20px; /* Increased height to better accommodate text */
    }

    .box2 {
        width: 60px;
        height: 10px; /* Increased height to better accommodate text */
    }

    .inbox1 {
        font-size: 0.8em; /* Adjust font size for smaller screens */
    }
}


/* For screens smaller than 768px (Tablet portrait and below) */
@media (max-width: 768px) {

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .para {
        max-width: 600px;
        font-size: 1.5em; /* Smaller font size */
    }

    .para2 {
        max-width: 600px;
        font-size: 1em; /* Smaller font size */
    }

    .para1 {
        max-width: 600px;
        font-size: 1.5em; /* Smaller font size */
        margin-bottom: 15px;
    }

    .navigation {
        display: none; /* Hide menu by default */
        flex-direction: column;
        position: absolute; /* Position the dropdown over the entire screen width */
        top: 50%; /* Align it just below the header */
        left: 0;
        width: 100%; /* Ensure it spans the entire width of the screen */
        background-color: #000000; /* Black background */
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
        z-index: 1000; /* Ensure it appears above other elements */
        text-align: center; /* Center the text inside */
    }

    .navigation a{
        color: #ffffff; /* Ensure text is visible on black background */
        padding: 5px 0;
        display: block;
        text-align: center; /* Center the text */
        margin: 5px 0; /* Add spacing between items */
    }

    .navigation.show {
        display: flex; /* Show menu when toggled */
    }

    .menu-toggle {
        display: block; /* Show menu toggle button */
        color: #3a3a3a; /* Set the icon color to white */
    }


    .logo {
        width: 100px; /* Set the width of the logo */
    }

    .navigation a {
        font-size: 12px; /* Smaller font size */
        margin-left: 10px; /* Smaller margin */
    }

    .light-source {
        width: 100px; /* Smaller light source */
        height: 100px; /* Smaller light source */
        filter: blur(50px); /* Adjust blur effect */
    }

    .wrapper {
        left: 50px; /* Adjust position for smaller screens */
        top: 150px; /* Adjust position for smaller screens */
    }

    .headline {
        max-width: 600px;
        font-size: 3em; /* Smaller font size */
        margin-bottom: 15px; /* Adjust margin */
    }

    .learnmorebtn {
        width: 120px; /* Smaller button width */
        height: 40px; /* Smaller button height */
        font-size: 0.9em; /* Smaller font size */
        padding: 10px 20px; /* Adjust padding */
    }

    .contactbtn {
        width: 90px; /* Smaller button width */
        height: 35px; /* Smaller button height */
        font-size: 0.8em; /* Smaller font size */
        padding: 8px 16px; /* Adjust padding */
        margin-left: 20px; /* Adjust margin for smaller screens */
    }

    .image {
        position: absolute; /* Stack images on top of each other */
        max-width: 10%; /* Ensure the image does not exceed the wrapper's width */
        height: auto; /* Adjust if needed */
        opacity: 0; /* Start hidden */
        visibility: hidden; /* Ensure hidden images are not clickable */
        transition: opacity 1s ease-in-out, visibility 1s ease-in-out; /* Smooth transition for opacity and visibility */
        margin-bottom: 10px; /* Add space between images */
        border-radius: 15px;
    }
    
    .image.active {
        opacity: 1; /* Show the active image */
        visibility: visible; /* Make the active image visible */
        max-width: 10%; /* Ensure the image does not exceed the wrapper's width */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 10px; /* Add space between images */
        border-radius: 15px;
    }

    .indicator {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #555; /* Grey dark for non-selected */
        margin: 0 5px;
    }

    .productbtn {
        width: 50px;
        height: 10px;
        font-size: 0.7em; /* Adjust the font size as needed */
    }

    .productbtn1 {
        width: 50px;
        height: 10px;
        font-size: 0.7em; /* Adjust the font size as needed */
    }

    .grid-3x2 {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns */
        grid-template-rows: repeat(3, 1fr); /* Adjust rows accordingly */
        max-width: 150px; /* Make the grid slimmer */
    }

    .box1 {
        width: 100px;
        height: 10px; /* Increased height to better accommodate text */
    }

    .wrapper3 {
        display: none;
    }
}

@media (max-width: 480px) {

    .headline{
        font-size: 1.5em;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contactus {
        font-size: 10px;
    }

    .contact-item p {
        font-size: 10px;
    }

    .cta-button2 {
        font-size: 8px;
        padding: 5px 10px;
    }

    .navigation a {
        font-size: 10px; /* Smaller font size */
        margin-left: 1px; /* Smaller margin */
    }

    .light-source {
        width: 80px; /* Smaller light source */
        height: 80px; /* Smaller light source */
        filter: blur(40px); /* Adjust blur effect */
        top: -10px; /* Adjust position */
        right: 0px; /* Adjust position */
    }

    .wrapper {
        left: 20px; /* Adjust position for smaller screens */
        top: 100px; /* Adjust position for smaller screens */
    }

    .logo {
        width: 50px; /* Set the width of the logo */
    }

    .contactbtn{
        width:50px;
        height: 30px;
        font-size: 8px; /* Adjust the font size as needed */
        margin-left: 5px;
    }

    .para {
        font-size: 1em; /* Adjust the font size as needed */
    }

    .para1 {
        font-size: 1em; /* Adjust the font size as needed */
        margin-bottom: 0px;
    }
    
    .para2 {
        font-size: 0.8em; /* Adjust the font size as needed */
        margin-bottom: 50px;
    }

    .title {
        font-size: 1.2em;          /* Adjust font size as needed */
    }

    #about-us {
        margin-top: 50px;
    }

    .who-we-are {
        font-size: 1em; /* Adjust font size for smaller screens */
        margin-bottom: 20px; /* Add space below the heading */
    }

    .wrapper2 {
        flex: 1;                      /* Allow both wrappers to grow equally */
        margin: 0 0px;               /* Optional: Add space between the wrappers */
        padding: 0px;                /* Optional: Add padding inside the wrappers */
        box-sizing: border-box;      /* Include padding in width calculations */
    }



    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .wrapper3 {
        display: none;
    }

    /* Section Title */
    .future-innovation h2 {
        font-size: 1em;
    }
    
    /* Horizontal Line */
    .future-innovation hr {
        width: 80px;
        height: 2px;
        background-color: #fff;
        border: none;
        margin: 10px auto;
    }
    
    /* Paragraph Text */
    .future-innovation p {
        font-size: 0.8em;
    }

    .footer {
        font-size: 0.4em;
        padding: 1px 10%;
    }

    .footer .links {
        font-size: 0.5em;
    }

    .navigation {
        display: none; /* Hide menu by default */
        flex-direction: column;
        position: absolute; /* Position the dropdown over the entire screen width */
        top: 50%; /* Align it just below the header */
        left: 0;
        width: 100%; /* Ensure it spans the entire width of the screen */
        background-color: #000000; /* Black background */
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
        z-index: 1000; /* Ensure it appears above other elements */
        text-align: center; /* Center the text inside */
    }

    .navigation a{
        color: #ffffff; /* Ensure text is visible on black background */
        padding: 5px 0;
        display: block;
        text-align: center; /* Center the text */
        margin: 5px 0; /* Add spacing between items */
    }

    .contactbtn {
        background-color: #ffffff; /* White background for the button */
        color: #000000; /* Black text for the button */
        padding: 10px 10px;
        border-radius: 5px; /* Rounded corners */
        cursor: pointer;
        margin: 5px 0; /* Center button within menu items */
        display: inline-block; /* Prevent it from stretching */
        margin-right: 200px;
    }

    .navigation.show {
        display: flex; /* Show menu when toggled */
    }

    .menu-toggle {
        display: block; /* Show menu toggle button */
        color: #3a3a3a; /* Set the icon color to white */
    }

    
}


@media (max-width: 375px) {

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation a {
        font-size: 10px; /* Smaller font size */
        margin-left: 1px; /* Smaller margin */
    }

    .light-source {
        width: 80px; /* Smaller light source */
        height: 80px; /* Smaller light source */
        filter: blur(40px); /* Adjust blur effect */
        top: -10px; /* Adjust position */
        right: 0px; /* Adjust position */
    }

    .wrapper {
        left: 20px; /* Adjust position for smaller screens */
        top: 100px; /* Adjust position for smaller screens */
    }

    .logo {
        width: 50px; /* Set the width of the logo */
    }

    .contactbtn{
        width: 50px;
        height: 10px;
        font-size: 5px; /* Adjust the font size as needed */
        margin-left: 5px;
    }

    .para {
        font-size: 0.8em; /* Adjust the font size as needed */
    }

    .para1 {
        font-size: 0.8em; /* Adjust the font size as needed */
        margin-bottom: 0px;
    }
    
    .para2 {
        font-size: 0.6em; /* Adjust the font size as needed */
        margin-bottom: 50px;
    }

    .headline{
        font-size: 1.5em;
    }

    .title {
        font-size: 1.2em;          /* Adjust font size as needed */
    }

    #about-us {
        margin-top: 50px;
    }

    .who-we-are {
        font-size: 1em; /* Adjust font size for smaller screens */
        margin-bottom: 20px; /* Add space below the heading */
    }

    .wrapper2 {
        flex: 1;                      /* Allow both wrappers to grow equally */
        margin: 0 0px;               /* Optional: Add space between the wrappers */
        padding: 0px;                /* Optional: Add padding inside the wrappers */
        box-sizing: border-box;      /* Include padding in width calculations */
    }

    .wrapper3 {
        display: none;
    }
    
}