html {
    scroll-behavior: smooth;
}

body{
    font-family: Poppins, sans-serif;
    margin: auto;
    color: auto;
    line-height: 1.4;
    background-color: rgb(245, 245, 245);
    text-align: center;
}

h1{
    font-size: xx-large;
}

p {
    font-weight:500;
}

a {
    text-decoration:none;
}

.navbar {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    background-color: #008080;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 20px;
    max-height: 70px;
}

.navbar-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.nav-logo img {
    height: 100px; 
    width: auto; 
    border: none; 
    border-radius: 0; 
    box-shadow: none; 
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-grow: 1;
    justify-content: flex-end;
    padding-bottom: 28px;
    font-size: larger;
}

.nav-menu a:hover {
    transform: scale(1.05);
}

.nav-menu a, .nav-menu .login-button {
    text-decoration: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
}

.nav-menu .login-button {
    background-color: #ffffff;
    color: #000000;
}

.nav-menu .login-button:hover {
    background-color: #f0f0f0;
}

.top-links a:hover {
    transform: scale(1.05);
    color:#008080;
}

.search-bar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 300px; 
    padding-bottom: 28px;
}

.search-bar-container input {
    width: 100%;
    max-width: 400px;
    padding: 10px 40px 10px 15px; 
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
    color: #333;
    background-color: #fff;
}

.search-bar-container .search-icon {
    position: absolute;
    right: 15px;
    color: #aaa;
    font-size: 18px;
    pointer-events: none; 
}

.nav-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px 10px;
        max-height: 300px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none; 
    }

    .nav-menu.active {
        display: flex; 
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    .nav-toggle i {
        font-size: 30px;
        cursor: pointer;
        color: #fff;
    }
    
    .search-bar-container{
        display: none;
    }

    .nav-logo img{
        padding-top: 25px;
    }
}

.top-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; 
    padding: 10px 0; 
}

.top-links a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .top-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 15px 0;
        flex-wrap: wrap; 
    }

    .top-links a {
        font-size: 14px; 
        color: #333; 
    }
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    padding: 20px;
    padding-bottom: 30px;
}

.box {
    width: 220px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FBF9F7;
    border-radius: 10px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border: 4px solid #008080;
}

.box:hover{
    transform: scale(1.05);
    transition: transform 0.5s;
}

.box img {
    width: 170px;
    object-fit: cover; 
    margin-bottom: 10px; 
}

.box p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .box {
        width: 45%; 
    }
}

@media screen and (max-width: 480px) {
    .box {
        width: 45%; 
    }

    .box img {
        width: 120px; 
    }
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee span {
    flex-shrink: 0; 
    margin-right: 20px; 
}

.marquee img {
    width: 100px; 
    height: auto;
}

@keyframes marquee {
    0% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-50%); 
    }
}

@media screen and (max-width: 768px) {
    .marquee img {
        width: 80px; 
    }
}

.ad1 img{
    width: 1513px;
}

@media screen and (max-width: 768px) {
    .ad1 img {
        width: 100%;
    }
}

.line-with-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0; 
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #000; 
    margin: 0 20px; 
}

.text {
    font-size: 18px; 
    font-weight: bold;
    color: #000; 
    text-transform: uppercase;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1513px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.item-box {
    width: 17%; 
    height: 300px;
    margin: 0 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

.item-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.item-box img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 5px;
}

.item-box p {
    margin: 5px 0;
}

.text1 {
    font-size: 18px;
    font-weight: bold;
}

.text2 {
    font-size: 14px;
    color: #666;
}

.text3 {
    font-size: 16px;
    color: #333;
}

.add-to-cart {
    padding: 8px 15px;
    background: linear-gradient(90deg, #00A2A2, #005252);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #005f73;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
    .item-box {
        width: 41%; 
    }
}

.reviews-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
    height: 300px;
  }
  
  .review-box {
    flex: 1 1 calc(20% - 30px); 
    background-color: #ffffff;
    border: 4px solid #008080; 
    border-top: 8px solid #008080;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-width: 100px;
  }
  
  .quote-icon {
    font-size: 60px;
    color: #fff; 
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; 
    height: 60px; 
    line-height: 60px; 
    background-color: #008080; 
    border-radius: 50%; 
    text-align: center; 
  }
  
  .review-text {
    padding-top: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 20px 0;
  }
  
  .review-author {
    font-size: 18px;
    font-weight: bold;
    color: #008080; 
  }
  
  @media screen and (max-width: 768px) {
    .review-box {
      flex: 1 1 60%; 
      margin-bottom: 20px;
    }
  
    .reviews-container {
      gap: 15px;
    }
  }

  form { max-width:420px; margin:50px auto; }

  .feedback-input {
    color:black;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent;
    border:2px solid #008080;
    transition: all 0.3s;
    padding: 13px;
    margin-bottom: 15px;
    width:100%;
    box-sizing: border-box;
    outline:0;
  }
  
  .feedback-input:focus { border:2px solid #005252; }
  
  textarea {
    height: 150px;
    line-height: 150%;
    resize:vertical;
  }
  
  [type="submit"] {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    width: 100%;
    background:#008080;
    border-radius:5px;
    border:0;
    cursor:pointer;
    color:white;
    font-size:24px;
    padding-top:10px;
    padding-bottom:10px;
    transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
  }
  [type="submit"]:hover { background: #005252; }

  @media screen and (max-width: 768px) {
    .reviews-container{
        margin-bottom: 600px;
    }

    #form{
        padding-left: 20px;
        padding-right: 20px;
    }
  }

  .newsletter-section {
    margin: 20px auto; 
    text-align: center; 
    font-size: 16px;
    color: #333; 
  }
  
  .newsletter-label {
    display: inline-flex;
    align-items: center;
    gap: 10px; 
    cursor: pointer;
  }
  
  .newsletter-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #008080; 
    cursor: pointer; 
  }

.footer {
    background: linear-gradient(180deg, #008080, #003333);  
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 10px;
  }
  
  .icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .icon:hover {
    background-color: #fff;
    color: #008080; 
  }
  
  .icon i {
    font-size: 20px;
  }
  
  .footer-text {
    font-size: 14px;
    margin-top: 10px;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .social-icons {
      gap: 15px; 
    }
  
    .icon {
      width: 40px;
      height: 40px; 
    }
  
    .icon i {
      font-size: 16px; 
    }
  
    .footer-text {
      font-size: 12px;
    }
  }
  
  .review-box:hover{
    transform: scale(1.05);
    transition: transform 0.5s;
  }