/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    scroll-behavior: smooth;
    background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 5px 100px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
     align-items: center;
    width: 80%;
Padding-left:10px;
}

.logo-container {
    margin-right: 300px;
}

.logo-img {
    width: 300px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #0096D6;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #FF8C00;
}

/* Home Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    background: url('biotech-background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

      
}
/* Biocatalysts Section */
#biocatalysts {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 80px 50px;
    text-align: center;
}

.biocatalyst-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
padding-top: 30px;


}

.biocard {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    width: 30%;
height: 20%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.biocard:hover {
    transform: scale(1.05);
    background: rgba(255, 140, 0, 0.8);
    color: white;
}
h1, h2 {
    text-align: center;  /* Ensures both are centered */
    display: block;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 5px;  /* Minimal space between h1 and h2 */
}

h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-top: 0; /* Removes extra spacing */
}



/* Products Section */
#products {
    padding: 80px 50px;
    background-color: #f9f9f9;
    text-align: center;


}

#products ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

#products li {
    font-size: 1.2rem;
    padding: 10px 0;
    border-left: 5px solid #0096D6;
    padding-left: 15px;
    margin-bottom: 10px;
}

/* Contact Section */
#contact {
    padding: 80px 50px;
    text-align: center;
}

/* Footer */
footer {
    background: #0096D6;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}


/* About Us Section */
#Home,#about, #products, #contact {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.container {
    max-width: 1500px;
    margin: auto;
}

h1 {
    color: skyblue;
    font-size: 3.5rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

/* Products Section */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Updated Section Titles */
h1,h2 {
    color: #0096D6; /* Dark Sky Blue */
    font-size: 1.5rem;
    font-family: Arial, sans-serif; /* Same font for all titles */
    font-weight: bold;
    text-transform: uppercase; /* Optional for a professional look */
    margin-bottom: 20px;
}
#biocatalysts {
    padding-top: 30px; /* Add space between hero and biocatalysts */
}

/* Footer Styling */
footer {
    background-color: #FF8C00; /* Dark Sky Blue */
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px; /* Creates space between content and footer */
}

footer h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

footer p {
    font-size: 1.2rem;
    margin: 5px 0;
}