*{
	margin: 0;
	padding: 0;
	font-family: Helvetica, sans-serif;
    box-sizing: border-box; 

}
/* Header and Slider Styling */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #021234;
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 60s ease-in-out;
}

.image-slide.active {
    opacity: 1;
}

.text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 100%;
}

.text-box h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 1.5rem;
    color: #f0f0f0; /* Slightly lighter color */
}

nav{
	display: flex;
	padding: 2% 6%;
    background: none;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 280px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
    color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
}

nav .fa{
	display: none;
}

/* Slider styles */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%); /* This reduces brightness */
}

.image-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 60s ease-in-out;
}

.image-slide.active {
    display: block;
    animation: fade 1s;
}
/* Ensure that the menu is on top of the text box */
nav {
    z-index: 3; /* Ensure the menu has a higher z-index */
}

.text-box {
    z-index: 1; /* Lower z-index for the text box to stay behind the menu */
}

/* Overlay that dims the content behind the menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 2; /* Ensure it's above the text, but below the menu */
    display: none; /* Hidden by default */
}

/* Show overlay when the menu is active */
.nav-active .overlay {
    display: block; /* Show the overlay when the menu opens */
}

/* When the menu is active, dim the text box */
.nav-active ~ .text-box {
    opacity: 0.3; /* Reduce the text opacity */
}


@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .text-box {
        width: 90%; /* Restrict the width to ensure it fits within the mobile view */
        max-width: 200px; /* Set a maximum width */
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .text-box h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .text-box p {
        font-size: 1.2rem;
        color: #f0f0f0;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

    .slider img{
            min-width: 200px; /* Reduced min-width for smaller screens */
            max-width: 100%; /* Ensure it doesn't exceed screen width */
    }
}


/*----------- hypermill and ironcad -----------*/

.product {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.product h1{
    font-size: 40px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap as needed */
}

.product-col {
    flex-basis: 45%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    background: #EAF0EE; /* Light background for visual separation */
    padding: 20px; /* Padding for inner spacing */
	transition: 0.5;   
}

.product-col img {
    width: 80%;
	height: 50vh;
    border-radius: 10px;
}

.product-col h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 1.5em; /* Adjust font size as needed */
}

.product-col p {
    padding: 0;
    font-size: 1em; /* Adjust font size as needed */
    text-align: center;
}
.product-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .product-col img {
        width: 100%; /* Make the image take the full width of its container */
        height: auto; /* Adjust height proportionally */
    }
    .product-col {
        flex-basis: 100%; /* Make the columns stack */
        padding: 10px; /* Reduce padding for smaller devices */
    }
}

/*------------------------CARD----------------------------*/

.picture {
    text-align: left;
    margin: 20px;
}

.picture h1{
    text-align: center;
    font-size: 3.0em;
}

.picture h3 {
    font-size: 1.8em;
    color: #1E3A75;
    margin-bottom: 10px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px; /* Add space between sections */
}

.text-info {
    flex: 1;
    order: 1;
}

.picture .info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.picture .info i {
    margin-right: 10px;
    font-size: 1em;
    color: #ff5900;
}

.picture .info p {
    margin: 0;
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}
.picture .info img{
    width:80%;
    height: auto;
    flex-direction: column;
    margin-bottom: 10px;
}

.picture .button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #1E3A75;
    text-decoration: none;
    border-radius: 4Spx;
    color: #fff;
    margin-top: 15px; /* Adds space between content and button */
    transition: background-color 0.3s ease;
}

.picture .button:hover {
    background-color: #0D2A57;
}

.image-container {
    flex: 1;
    margin-left: 10px;
    order: 2;
}

.milling-image {
    width: 90%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px; /* Rounds image borders slightly */
}

/* Flexbox reversal for alternating layout */
.reverse-layout {
    display: flex;
    flex-direction: row-reverse; /* This will flip the order */
}

@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .text-info {
        text-align: left;
        order: 2; /* Resetting order in mobile */
    }

    .image-container {
        margin-left: 0;
        order: 1; /* Resetting order in mobile */
    }

    .milling-image {
        max-width: 100%;
    }

    .picture h3 {
        font-size: 1.2em;
    }

    .picture .button {
        padding: 10px 20px;
        font-size: 1em;
    }

    /* Remove reverse layout on small screens */
    .reverse-layout {
        flex-direction: column;
    }
}

/*-------Footer--------*/

.footer {
    background-color: #0d3f67; /* Navy blue background */
    color: #fff; /* White text color */
    padding: 40px 10px; /* Adjusted padding for smaller screens */
    text-align: center;
    box-sizing: border-box; /* Ensures padding and border are included in element's width/height */
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #d4f5e6;
}

.footer p {
    font-size: 14px; /* Slightly smaller for better fit */
    margin-bottom: 8px;
    color: #d4f5e6; /* Light green color for better contrast */
}

.footer .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    margin: 10px;
    min-width: 200px; /* Reduced min-width for smaller screens */
    max-width: 100%; /* Ensure it doesn't exceed screen width */
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p a {
    color: #d4f5e6; /* Light green color for links */
    text-decoration: none;
}

.footer-info p a:hover {
    text-decoration: underline;
}

.icons {
    margin-top: 15px;
}

.icons a {
    color: #d4f5e6; /* Light green color for social icons */
    margin: 0 8px;
    font-size: 18px;
}

.icons a:hover {
    color: #ff4500; /* Orange color on hover */
}

.qr-container {
    display: flex; /* Aligns images horizontally */
    justify-content: center; /*Centers the images*/
    gap: 15px; /* Adds space between the images */
}

.qr-code {
    width: 80px; /* Control the size of the images for small screens */
    height: auto; /* Maintain aspect ratio */
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}


@media (max-width: 700px) {
    .footer {
        padding: 30px 10px;
    }
    .footer .row {
        flex-direction: column;
        align-items: center; /* Center content on small screens */
    }
    .footer-col {
        margin: 10px 0;
        flex-basis: 100%; /* Ensure columns take full width */
        max-width: none; /* Allow full width usage */
    }
    .qr-container {
        flex-direction: column; /* Stack QR codes vertically on small screens */
        align-items: center;
    }
    .qr-code {
        width: 70px; /* Adjust image size for smaller screens */
    }
}

/*------------about us page-----------*/

.sub-header{
	height: 80vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background1.jpg);
	background-position: center;
	background-size: cover;
	text-align: center;
	font-size: 30px;
	color: #fff;
}

.sub-header h1{
	margin-top: 120px;
}
.about-section {
    background: #e8f4fc;
    padding: 50px 20px;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-content {
    margin-bottom: 30px;
    text-align: center;
}

.section-heading {
    font-size: 2em;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #003366;
    display: block;
    margin: 10px auto;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #555;
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

/* Animations */
.container {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*------------achieve-------------*/

.highlights-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background: #fff;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
    flex-basis: 45%;
    padding: 20px;
    background: #f2f6fa;
    border-radius: 10px;
    margin-bottom: 5%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, box-shadow 0.3s;
}

.highlight:hover {
    background: #e1e9f5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon-calendar, .icon-projects, .icon-awards, .icon-satisfaction {
    font-size: 3em;
    margin-bottom: 15px;
    color: #0056b3;
}

h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    color: #555;
}

/* Icons */
.icon-calendar:before {
    content: "\f073"; /* Example FontAwesome icon code */
}

.icon-projects:before {
    content: "\f0c2";
}

.icon-awards:before {
    content: "\f091";
}

.icon-satisfaction:before {
    content: "\f005";
}

@media (max-width: 768px) {
    .highlight {
        flex-basis: 100%;
    }
}

/*------------navbar------------*/

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #E1C1AA;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px 14px; /* Reduced padding for smaller size */
    text-decoration: none;
    display: block;
    text-align:left;
    font-size: 14px; /* Smaller font size */
}

.dropdown-content a:hover {
    background-color: #F58659;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
		display: block;
    }
    .dropdown-content a:hover {
        background-color: #F58659;
    }
	.dropdown:hover .dropdown-content {
		display: block;
	}
}

/*------------video------------*/

.video {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}

.video h1 {
    font-size: 2rem; /* Adjusted heading size for better responsiveness */
    margin-bottom: 10px;
}

.video-col {
    max-width: 100%;
    margin: 0 auto;
}

video {
    width: 100%; /* Ensures the video takes the full width of its container */
    height: auto; /* Keeps the aspect ratio */
    max-width: 600px; /* Limits the width on larger screens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for aesthetics */
}

/* Media queries for smaller screens */
@media (max-width: 700px) {
    .video h1 {
        font-size: 1.5rem; /* Smaller font for mobile screens */
    }

    video {
        max-width: 90%; /* Reduces the video size on smaller screens */
    }
}

@media (max-width: 400px) {
    .video h1 {
        font-size: 1.2rem; /* Further reduced font size for very small screens */
    }

    video {
        max-width: 100%; /* Ensures the video still fits on the smallest screens */
    }
}


/*--------------services---------------*/

.service .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            width: 99vw;
            min-height: 100vh;
            background-color: #98B3C1;
        }

.service-col{
            background-color: #fff;
            border: 1px solid #ddd;
            margin: 10px;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            width: 300px;
        }

.service .title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }

.service .more-link {
            text-decoration: none;
            color: #467ADB;
            font-style: italic;
        }

.service .more-link:hover {
            text-decoration: underline;
        }
		
/*---------------training------------------*/

.training-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 20px;
}

.training h1 {
  /* font size */
  font-size: 2em;
  /* margin from top */
  margin-top: 20px;
  /* add padding to the start of each paragraph */
  padding-left: 1em; /* Adjust the value as needed */
}

.training p {
  /* font size */
  font-size: 1.2em;
  /* add space between lines */
  line-height: 1.5;
  /* margin from bottom */
  margin-bottom: 15px;
  /* add padding to the start of each paragraph */
  padding-left: 2em; /* Adjust the value as needed */
}

/* Container for aligning images side by side */
.image-row {
  display: flex;
  justify-content: center;
  gap: 1px; /* Space between images */
}

.training img {
    width: 30%; /* Adjust to make both images fit in a row */
    border: 5px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.training img:hover {
	transform: scale(1.05);
	transition: transform 0.3s ease-in-out;
}

.email {
    background-color: #EAF0EE;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.email .container {
    max-width: 600px;
    margin: 0 auto;
}

.email-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.question {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact {
    font-size: 1em;
}

.contact a {
    color: #007bff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
    box-shadow: 0 0 30px 0px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .email {
        padding: 15px;
    }
    .question {
        font-size: 1.1em;
    }
    .contact {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .email {
        padding: 10px;
    }
    .question {
        font-size: 1em;
    }
    .contact {
        font-size: 0.8em;
    }
}

/*------------events------------*/

.events {
    text-align: center;
    font-size: 5vw; /* Adjusts font size based on viewport width */
    padding: 10vh 5%; /* Responsive padding */
}

.fade-in-animation {
    animation: fadeIn 1s ease-in-out; /* Ensure your fade-in animation is defined */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Optional: Add a media query for smaller screens */
@media (max-width: 480px) {
    .events {
        font-size: 8vw; /* Slightly smaller font size for very small screens */
        padding: 5vh 3%; /* Adjust padding for small screens */
    }
}


/*-----------software---------------*/

.software .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            width: 95vw;
            min-height: 20vh;
        }

.software-col{
            background-color: #fff;
            border: 3px solid #ddd;
            margin: 10px;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            width: 300px;
        }

.software .title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }

.software-links {
    text-align: center;
    padding: 30px 10px;
}

.sub-header h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

.software-links h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #f9f9f9;
    padding: 20px;
    width: 200px;
    max-width: 100%;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.card:hover {
    background-color: #fff;
    border-color: #6200ea;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.card a {
    color: #6200ea;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s;
}

.card a:hover {
    color: #3700b3;
}

/* Media Queries for Mobile Screens */
@media (max-width: 700px) {
    .sub-header h1{
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .software-links h2 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }

    .cards {
        gap: 10px; /* Reduce gap between cards for smaller screens */
    }

    .card {
        width: 180px; /* Slightly reduce card width */
        padding: 15px; /* Adjust padding */
    }

    .card h3 {
        font-size: 1.1em; /* Adjust heading size for smaller screens */
    }
}

@media (max-width: 400px) {
    .software-links h2 {
        font-size: 1.2em; /* Further reduce font size for very small screens */
    }

    .card {
        width: 160px; /* Further reduce card width */
        padding: 10px; /* Adjust padding */
    }

    .card h3 {
        font-size: 1em; /* Adjust heading size for very small screens */
    }
}


/*----------------support----------------*/

.support {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.support p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: #f2f6fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
}

.contact-container a {
    display: block;
    font-size: 1em;
    color: #0056b3;
    text-decoration: none;
    margin: 5px 0;
}

.contact-container a:hover {
    text-decoration: underline;
}

.support-hours {
    margin-top: 20px;
}


/*----------------consulting-------------------*/

.consulting p{
  /* font size */
  font-size: 1em;
  /* margin from top */
  margin-top: 20px;
  /* add padding to the start of each paragraph */
  padding-left: 2em; /* Adjust the value as needed */
}

.consulting h2{
  /* font size */
  font-size: 2em;
  /* margin from top */
  margin-top: 20px;
  /* add padding to the start of each paragraph */
  padding-left: 1em; /* Adjust the value as needed */
}

.consulting .more-link {
            text-decoration: none;
            color: #467ADB;
            font-style: italic;
			padding-left: 2em;
        }

.consulting .more-link:hover {
            text-decoration: underline;
        }
		

/*-----------download---------------*/

.download .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            width: 95vw;
            min-height: 20vh;
        }

.download-col{
            background-color: #fff;
            border: 3px solid #ddd;
            margin: 10px;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            width: 300px;
        }

.download .title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }

.download .more-link {
            text-decoration: none;
            color: #467ADB;
            font-style: italic;
        }

.download .more-link:hover {
            text-decoration: underline;
        }
		
.download h2 {
  /* font size */
  font-size: 2em;
  /* margin from top */
  margin-top: 20px;
  /* add padding to the start of each paragraph */
  padding-left: 1em; /* Adjust the value as needed */
  text-align: center;
}

/*---------------contact-------------------*/

.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe{
	width: 100%;
}

.contact-us {
    width: 80%;
    margin: auto;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
    align-self: center;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p {
    padding: 0;
}

.contact-col div h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.map-links a {
    display: block; /* Makes the links stack vertically */
    margin-bottom:auto; /* Adds space between the Google Maps and Waze sections */
    text-align: center; /* Centers the content */
    font-size: 18px;
    font-weight: 400;
    color: #043687;
}

.map-links i {
    display: block; /* Ensures the icons appear above the text */
    font-size: 24px; /* Adjust icon size as necessary */
    margin-bottom: 12px; /* Adds space between the icon and the link text */
}

.form-container {
    flex: 2;
    width: 100%;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.form-group {
    flex: 1 1 45%;
    margin: 10px 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 90%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.required {
    color: red;
}

.hidden {
    display: none;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive styling */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex-basis: 100%;
    }
}
/*--------------------career-------------------*/

.career-container {
  /* Ensure the text is not centered */
  text-align: left;
}

.career h1 {
  /* font size */
  font-size: 2em;
  /* margin from top */
  margin-top: 20px;
  /* add padding to the start of each paragraph */
  padding-left: 1em; /* Adjust the value as needed */
}

.career p {
  /* font size */
  font-size: 1.2em;
  /* add space between lines */
  line-height: 1.5;
  /* margin from bottom */
  margin-bottom: 15px;
  /* add padding to the start of each paragraph */
  padding-left: 2em; /* Adjust the value as needed */
}