body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000; 
    background-color: #f4f4f4;
}

header {
    background-color: #cccbcb;
    padding: 10px 0;
}

.header-container {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.company-name {
    text-align: center; 
    margin-top: 5px; 
    margin-bottom: 5px;
}

.company-name a {
    display: inline-block;
    text-decoration: none;
}

.company-name img {
    max-width: 20px; 
    height: auto; 
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-width: 70px;
}

.navlist {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
    overflow: hidden;
    width: 100%; 
}

.navlist li {
    display: inline;
}

.navlist li a {
    display: inline-block;
    color: #000; 
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navlist li a:hover {
    background-color: #000000;
    color: #fff; 
}

.navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(255, 255, 255);
  }
  
  .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;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

.header-right {
    display: flex;
    align-items: center;
}

.header-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right ul li {
    margin-left: 10px;
}

.header-right a {
    color: #000; 
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

.header-lower .navlist {
    flex: 1; 
    justify-content: center; 
}

.header-lower-right {
    display: flex;
    align-items: center;
}

.search-bar {
    padding: 8px 30px 8px 40px; 
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 200px; 
    box-sizing: border-box; 
    background-color: #fff;
    background-image: url('https://img.icons8.com/color/search'); 
    background-size: 20px; 
    background-position: 10px center; 
    background-repeat: no-repeat; 
}

.header-lower-right a {
    margin-left: 10px;
}

.header-lower-right a img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 250px;
}

.h3-web-container {
    overflow: hidden; 
    width: 100%;
    box-sizing: border-box;
}

.h3-web {
    display: inline-block; 
    white-space: nowrap; 
    animation: marquee 25s linear infinite;
    padding-left: 100%; 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.product {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.option {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    width: 160px;
}

.option:hover {
    transform: translateY(-5px);
}

.circle {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.circle img {
    max-width: 60px;
    max-height: 60px;
}

.option p {
    font-size: 1.2em;
}

.stats-section {
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    margin: 40px auto;
    max-width: 100000px;
    background-color: peachpuff;
    font-family: 'Stylish';
    font-size: 22px;
}
.stats-section h2 {
    color: #333;
    margin-bottom: 40px;
}
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.stat {
    flex: 1;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.stat i {
    font-size: 50px;
    color: #00bfff;
    margin-bottom: 20px;
}
.stat h3 {
    color: #333;
    margin: 0;
}
.stat p {
    color: #666;
}

.review-section {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.review-section h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end; 
}

.stars input {
    display: none; 
}

.stars label {
    font-size: 25px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.stars input:checked ~ label,
.stars input:checked ~ label ~ label {
    color: gold;
}

.stars input:hover ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: gold;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #555;
}

#reviews-container {
    margin-top: 20px;
}

.review {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.review h3 {
    margin: 0;
    margin-bottom: 5px;
}

.review p {
    margin: 0;
    color: #555;
}

.review-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.review-buttons button {
    background-color: #f4f4f4;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
    padding: 5px;
    border-radius: 3px;
}

.review-buttons button:hover {
    background-color: #ddd;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-contact {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: left;
}
.footer-contact h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}
.footer-contact h5 {
    margin: 5px 0;
    font-size: 1.1em;
}
.footer-links {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: center;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin: 10px 0;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: #ff6347;
}
.social-media {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: right;
}
.social-media h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}
.social-media a {
    margin: 0 10px;
    transition: transform 0.3s;
}
.social-media a img {
    width: 30px;
    height: 30px;
}
.social-media a:hover {
    transform: scale(1.2);
}

.background-container {
    background: linear-gradient(to right, #ff6e7f, #bfe9ff);
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-screen .spinner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}