/* scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #afe5ea;
}


::-webkit-scrollbar-thumb {
    background-color: #34a332;
    border-radius: 10px;
}

/* == */

/* body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/*  */

/*  header  */
header {
    position: fixed;
    top: 0;
    height: 90px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 2px #25A541 solid;
}

header div {
    display: flex;
    align-items: center;

}

.logo img {
    height: 45px;
}

.inputbutton input[type="search"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.inputbutton input[type="submit"] {
    padding: 8px 10px;
    background-color: #25A541;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.location select {
    padding: 8px;
    border-radius: 4px;
}

header p i {
    margin-right: 8px;
}

header p a {
    text-decoration: none;
    color: #25A541;
}

/*  */

/* menulist  */
.menulist ul {
    list-style: none;
    position: fixed;
    top: 88px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: #25A541 solid;
    box-shadow: 0 18px 12px -14px #01ff2787;

}

.menulist a {
    text-decoration: none;
    color: #000;
}

/*  */

/*  silding   */

.carousel-container {
    padding-top: 80px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    top: 70px;

}

.carousel-container:hover {
    box-shadow: 20px 5px 10px black;
}



.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-wrapper img {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
}

.carousel-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background-color: #fff;
    color: rgb(57, 240, 16);
    border: 2px solid green;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.carousel-container .prev {
    left: 10px;
}

.carousel-container .next {
    right: 10px;
}

/* //////////// */

/*slider-container card */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #E5ECF9;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.cards {
    min-width: 200px;
    height: 200px;
    margin: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.cards:hover {
    transform: scale(1.05);
}

.image img {
    display: block;
    margin: auto;
    width: 100px;
    height: 70px;
    object-fit: cover;
}

.title {
    padding: 20px;
    text-align: center;
}

.title p {
    font-size: 18px;
}

.title button {
    background-color: #2f9144;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.title button:hover {
    background-color: #04681a;
}

.slider-container .prev,
.slider-container .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    background-color: #fff;
    color: rgb(57, 240, 16);
    border: 2px solid green;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.slider-container .prev {
    left: 10px;
}

.slider-container .next {
    right: 10px;
}

/*  */

/*  */
.widgetContainer {
    margin: 24px;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner_Image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner_Image:hover {
    transform: scale(1.02);
}

.widgetContainerthree {
    margin: 23px;
    padding: 22px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.widgetContainerthree img {
    border-radius: 10px;
    width: 387px;
}

.widgetContainerthree img:hover {
    transform: scale(1.02);
}

/* //////////////////////// */
/* card  */
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.box {
    width: 250px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
}

.box img {
    width: 50%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}


.box h5 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.pricetag {
    font-size: 18px;
    font-weight: bold;
    color: #106c21;
    margin: 8px 0;
}

.pricetag span {
    text-decoration: line-through;
    font-size: 14px;
    color: rgb(134, 8, 8);
    margin-left: 5px;
}

.stars i {
    color: gold;
    font-size: 14px;
}

.icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.icons a {
    background: rgb(2, 115, 21);
    color: rgb(255, 255, 255);
    font-size: 16px;
    padding: 6px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.icons a:hover {
    background: red;
    color: white;
    transform: scale(1.1);
}

.btnone {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btnone:hover {
    background: #218838;
}

/*  */
/* footer  */
.footer-section {
    background: #fff;
    position: relative;
    border-radius: 100px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #000;
    line-height: 28px;
}

.footer-social-icon span {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #000;
    font-size: 16px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.fa-instagram {
    background-image: url(./image\ 8.jpg);
}

.footer-widget-heading h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #000;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #000;
    text-transform: capitalize;
    text-decoration: none;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid #000;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 13px 20px;
    border: 1px solid #000;
    top: 0;
}

.subscribe-form button i {
    color: #000;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #fff;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.copyright-text p a {
    color: #000;
    text-decoration: none;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}