body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    
    background: linear-gradient(to right, white 40%, #848484 60%);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    margin-left: 20px;
}

nav ul {
    list-style-type: none;
    margin-right: 20px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: font-size 0.3s, color 0.3s; /* Add transitions for smooth animation */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

footer {
    background-color: #37475A;
    padding: 10px 0;
    text-align: center;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    padding: 10px 20px;
    background-color: orange;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: darkorange;
}

/* Styles for scrolling images */
.scrolling-images-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrolling-images-container::-webkit-scrollbar {
    display: none;
}

.scrolling-images {
    display: inline-flex;
    padding: 10px;
}

.scrolling-images img {
    width: auto;
    height: 400px;
    margin-right: 10px;
}
/* Add your existing CSS styles here */

/* Styles for the contact form */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: darkorange;
}

/* Styles for error messages */
form small {
    display: none;
    color: red;
    margin-top: 5px;
}

form.error small {
    display: block;
}
/* Dropdown container */
.dropdowns {
    display: flex;
}

/* Dropdown */
.dropdown {
    position: relative;
    margin-right: 10px;
}

/* Dropdown button */
.dropbtn {
    background-color: gray;
    color: white;
    padding: 10px;
    margin: 1px;
    border: none;
    cursor: pointer;
    width: 200px;
    transition: transform 0.5s, background-color 0.5s, box-shadow 0.5s, color 0.5s; /* Add transitions for smooth animation */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add box-shadow for depth */
}

.dropbtn:hover {
    font-size: 25px;
    transform: scale(1.1); /* Zoom in effect on hover */
    background-color: gray; /* Darken the background color */
    border-radius: 10%;
    color: white; /* Lighten the text color */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Add a stronger box-shadow for depth */
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 301px;
    border: 2px solid gary; /* Add border */
    max-height: 400px; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Dropdown links */
.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
    font-size: 20px;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  background-color: darkorange;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Style the search button */
.dropdown-content button {
  padding: 12px 16px;
  background-color: gray;
  color: white;
  border: none;
  cursor: pointer;
}


/* Search input */
#searchInput,#searchInput2,#searchInput3,#searchInput4, #searchInput5,#searchInput6 {
    width: 200px; /* Take up full width */
    padding: 10px; /* Adjust padding */
    box-sizing: border-box; /* Include padding in width */
    border: 2px solid #ccc; /* Add border */
    border-radius: 4px; /* Add border radius */
    
}
p{
    color: gray;
    font-size: 20px;
    text-shadow: auto;
}
h1,h2,h4{
    color: darkslategray;
}


/* Our Team Section Styles */
.our-team {
  padding: 0px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.team-member {
  display: inline-block;
  margin-bottom: 50px;
  margin-right: 20px;
}

.member-info h3 {
  margin-top: 5px;
}

/* Round-shaped Image Styles */
.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.ceo-founder {
  text-align: center;
  padding: 10px 0;
  margin: 40px 0;
}

/* CEO's Photo Styles */
.ceo-founder .team-member img {
  width: 250px; /* Adjust the width as needed */
  height: 250px; /* Adjust the height as needed */
  border-radius: 50%;
  object-fit: cover;
}
/* Our Achievements Section Styles */
.our-achievements {
  text-align: center;
  padding: 10px 0;
}

/* Achievement Styles */
.achievement {
  display: inline-block;
  margin-bottom: 50px; /* Add margin between achievements */
  margin-right: 20px; /* Add horizontal margin */
}

/* Achievement Image Styles */
.achievement img {
  width: 200px; /* Adjust the width as needed */
  height: 200px; /* Adjust the height as needed */
  object-fit: cover;
  border-radius: 50%;
}

/* Achievement Info Styles */
.achievement-info {
  margin-top: 10px;
}

.achievement-info h3 {
  margin: 5px 0;
}
/* Our Achievements Section Styles */


/* Installation Guide Video Section Styles */
.installation-guide {
  text-align: center;
  
}

/* Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  max-width: 711px; /* Set max-width to prevent the video from becoming too large */
  margin: 0 auto; /* Center the video horizontally */
}

.video-container iframe {
  width: 100%;
  height: 400px; /* Set the height of the video */
}






































































/* Responsive Styles */
@media (max-width: 768px) {
  .video-container iframe {
    height: 250px; /* Adjust the height for smaller screens */
  }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Decrease logo size on smaller screens */
        margin-left: 10px; /* Adjust logo margin */
    }

    nav ul {
        margin-right: 10px; /* Adjust navigation margin */
    }

    nav ul li {
        margin-right: 10px; /* Adjust navigation item margin */
    }

    main {
        padding: 10px; /* Decrease main padding */
    }

    /* Reduce padding and font size for form elements on smaller screens */
    form label,
    form input[type="text"],
    form input[type="email"],
    form textarea,
    form button {
        padding: 8px;
        font-size: 14px;
    }
}