/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header Styles */
header {
    text-align: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.title {
    font-size: 2.5rem;
    color: #6C757D; /* Changed color to gray */
    margin-bottom: 20px;
}

.monitor-img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    z-index: 3;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Parallax Container */
.parallax-container {
    height: 100vh; /* Full viewport height */
    background-image: url('air quality monitor.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px; /* Adjust for nav bar height */
}

/* Foreground Content */
.foreground-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 200px; /* Adjust as needed */
}

/* Background Image Overlay */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

/* Parallax Effect */
.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-image: url('parallax-image.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    transform: translateY(-25%);
    z-index: 0;
}

/* Text Styles */
h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    color: black;
    font-size: 1.5rem;
}

/* Section Styles */
section {
    text-align: center;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

h2 {
    margin-bottom: 30px;
    color: #6C757D; /* Changed color to gray */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
}

.form-group button {
    padding: 10px 20px;
    background-color: #6C757D; /* Changed color to gray */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #495057; /* Changed hover color to darker gray */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #6C757D; /* Changed color to gray */
    color: #fff;
    position: relative;
    z-index: 2;

}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    color: #333;
}

        /* Side Navbar Styles */
.sidenav {
     height: 100%;
     width: 200px;
     position: fixed;
     z-index: 1;
     top: 0;
     left: 0;
     background-color: rgba(0, 0, 0, 0.5);
     padding-top: 20px;
     color: #fff;
}

.sidenav a {
     padding: 10px 20px;
     text-decoration: none;
     display: block;
     color: #fff;
     transition: background-color 0.3s ease;
}

.sidenav a:hover {
      background-color: #555;
}

        /* Main Content Styles */
.main {
      margin-left: 200px; /* Adjust based on the width of the side navbar */
      padding: 20px;
}

        /* Product Section Styles */
.product-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 50px 0;
}

.product-info {
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 30px;
      margin: 20px;
      max-width: 300px;
      text-align: center;
}

.product-image {
      width: 200px;
      height: 200px;
      margin: 0 auto 20px;
      overflow: hidden;
      border-radius: 50%;
}

.product-image img {
      width: 100%;
      height: auto;
      border-radius: 50%;
}

.product-name {
      font-size: 1.5rem;
      margin-bottom: 10px;
}

.product-description {
      margin-bottom: 20px;
}

.product-price {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 10px;
}

.add-to-cart-btn {
      padding: 10px 20px;
      background-color: #333;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
      background-color: #555;
}

.team-member img{
  width: 20%;
  height: 20%;
  border-radius: 50%;
  margin-right: 10px;
}

.swot-img{
  padding: 80px;
  width: 80%;
  height: 80%;
  right: 10px;
  border-radius: 20px;

}
