* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}
.navbar {
    background-color: #111;
    color: #fff;
    padding: 10px 0;
}
.top_txt {
    background-color: #df6722;
    color: #ccc;
    font-size: 1.0rem;
    padding: 10px 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head_txt p {
    margin: 0;
}
.sing_in_up a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sing_in_up a:hover {
    color: #dfe95a;
}
.logo {
    width: 300px;           
    height: auto;
    object-fit: contain;   
    display: block;
    max-width: 150px;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
nav.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}
nav.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-item {
    position: relative;
}
.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #ffcc00;
    color: #111;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav.navbar {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    nav.navbar ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
    }
}
.nav-item i.fa-cart-shopping {
    background-color: #010407;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-left: 5px;
}
.nav-item i.fa-cart-shopping:hover {
    background-color: #3399ff;
}
#cartvalue {
    display: inline-block;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}
.section-hero {
    padding: 4rem 0;
    background-color: #eaf3fb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-hero .container {
    align-items: flex-start;
    justify-content: space-between;
}

.grid-two--cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
.section-hero--content {
    max-width: 600px;
}
.Hero-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #111;
}

.hero-para {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
.section-hero-image figure {
    max-width: 100%;
    text-align: center;
}

.section-hero-image img {
    max-width: 200%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
    .grid-two--cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-hero--content {
        max-width: 100%;
    }

    .Hero-heading {
        font-size: 2rem;
    }

    .hero-para {
        font-size: 1rem;
    }

    .section-hero-image {
        margin-top: 2rem;
    }
}
.section-extra-product {
    padding: 4rem 0;
    background-color: #f2f7ff;
}

.grid-three--cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.div-extra {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div-extra:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.grid-two--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.extra-text p {
    font-size: 1rem;
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.extra-text h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
}

.btn-show-now {
    display: inline-block;
    background-color: #0059b3;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-show-now:hover {
    background-color: #007bff;
}

.extra-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.section-policy {
    padding: 4rem 0;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.grid-four--cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.div-policy {
    background-color: #f2f7ff;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
    width: 100%;
}

.div-policy:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.icons {
    font-size: 2rem;
    color: #0059b3;
    margin-bottom: 1rem;
}

.div-policy-text p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: #333;
}
@media (max-width: 992px) {
    .grid-four--cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .grid-four--cols {
        grid-template-columns: 1fr;
    }
}
.section-why--choose {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.section-common--heading {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.section-common--subheading {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.grid-three--cols {
    display: grid;
    grid-template-columns: 1fr 350px 1fr; 
    gap: 30px;
    justify-items: center;
}
.Choose-left-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.Choose-right-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why--choose--div {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 20px;
}

.why--choose--div:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.common-text--highlight {
    font-size: 32px;
    font-weight: bold;
    color: #1f7ed7;
}

.section-common--title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.section-common--title + p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.Choose-center-div figure {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.Choose-center-div img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .grid-three--cols {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .Choose-center-div {
        margin-top: 30px;
    }

    .why--choose--div {
        padding: 20px;
    }
}
.section-footer {
    background-color: #a9d6e7;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .content_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .content_1 > div {
    flex: 1 1 200px;
  }
  
  .content_1 img {
    width: 150px;
    margin-bottom: 15px;
  }
  
  .content_1 p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
  }
  
  .content_2 h4, .content_3 h4, .content_4 h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
  }
  
  .content_2 a, .content_3 a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
  }
  
  .content_2 a:hover, .content_3 a:hover {
    color: #0f0801;
  }
  
  .content_4 p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .f-mail {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .f-mail input[type="email"] {
    padding: 10px 40px 10px 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .f-mail i {
    position: absolute;
    right: 10px;
    color: #777;
  }
  
  .f-design {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #b197f7;
    padding-top: 15px;
    background-color: #eeb7b7;
  }
  
  .f-design-txt p {
    font-size: 20px;
    color: #070f20;
    margin: 0;
  }
  @media (max-width: 768px) {
    .content_1 {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .content_1 > div {
      width: 100%;
    }
  }
  #cart-count {
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    vertical-align: top;
  }
  .bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bottom-buttons .btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.bottom-buttons .btn:hover {
    background-color: #ffcc00;
    color: #333;
    transform: scale(1.1);
}

  