body {
  background: #fafafa;
  color: #333333;
  margin-top: 4rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A5D1A;
}


.bg-steel {
  background-color:#014421;
}

.site-header .navbar-nav .nav-link {
  color: #FFD700;
}

.head{
  color:#ffffff;
}
.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}
.footer-text{
  color:#FFD700;
}
.text-white1{
  color:#ffffff;
}
.account-img2 {
  height: 25px;
  width: 25px;
  margin-right: 20px;
  margin-bottom: 16px;
}


/* Change text color to green when an item is clicked drop down */
.dropdown-item:active, 
.dropdown-item:focus, 
.dropdown-item:hover {
    background-color: #e6f7e6 !important; /* Light green background */
    color: green !important; /* Green text */
}



/* Style for the list group items side bar */
.list-group-item {
  background-color: #f8f9fa; /* Default background color */
  color: Green; /* Text color */
  padding: 10px 15px;
  border: 1px solid #ddd; /* Border around each item */
  text-decoration: none; /* Remove underline from links */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.list-group-item a {
  text-decoration: none;
  color: inherit; /* Use the same color as the list item */
}

/* Hover effect */
.list-group-item:hover {
  background-color: #014421; /* Change background color on hover */
  color: white; /* Change text color on hover */
}

.list-group-item:hover a {
  color: white; /* Make sure link text also changes color on hover */
}

/* Shop Search & Icon Section */
.container11 {
  background: #f8f9fa; /* Light Gray */
  padding: 2px;
  border-radius: 10px;
}

  .article-img {
    width: 30px;
    height: auto;
  }

  .article-img2 {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

  .search-box11 {
    flex-grow: 1; /* Allows search bar to expand */
    max-width: 350px;
  }

  .search-box11 form {
    display: flex;
    align-items: center;
  }

  .search-box11 input {
    border: 2px solid #ddd;
    outline: none;
    padding: 8px 12px;
    border-radius: 25px;
    width: 100%;
    font-size: 14px;
  }

  .search-box11 button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
  }

  .search-box11 button:hover {
    background-color: #45a049;
  }

 .icon-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduces space between icons */
    margin-left: auto; /* Pushes group to the right */
    background-color: #fafafa;
    border-radius: 15px;
  }

 
  /* Ensure no stacking on mobile */
  @media (max-width: 600px) {
    .container {
      flex-wrap: nowrap;  /* Prevents wrapping */
      overflow-x: auto; /* Allows horizontal scrolling if needed */
    }
  }



/* styling for login/update */

  .content-section11 {
    max-width: 450px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
  }

  .header-title11 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: green;
    margin-bottom: 12px;
  }

  .sub-header11 {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
  }

  .form-group11 label {
    font-weight: 600;
    color: green;
  }

  .form-control11 {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-control11:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  }

  .btn-custom11 {
    background-color: green;
    color: white;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .btn-custom11:hover {
    background-color: #0a58ca;
  }

  .border-top11 {
    margin-top: 30px;
    text-align: center;
  }

  a {
    color: green;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .invalid-feedback {
    color: red;
    font-size: 0.9em;
  }

  .form-control.is-invalid {
    border-color: red;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive Design */
  @media (max-width: 576px) {
    .content-section11 {
      padding: 20px;
    }

    .header-title11 {
      font-size: 24px;
    }

    .sub-header11 {
      font-size: 14px;
    }

    .btn-custom11 {
      padding: 12px;
    }
  }




/* styling for caurosel */
/* Base Image Styling */
.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
}

/* Caption Styling */
.custom-caption {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: right;
  max-width: 180px;
  font-size: 16px;
  line-height: 1.3;
  animation: fadeInRight 1s ease-in-out;
}

/* Adjustments for Tablets */
@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }

  .custom-caption {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 14px;
    max-width: 150px;
  }
}

/* Adjustments for Small Phones */
@media (max-width: 576px) {
  .carousel-item img {
    height: 200px;
  }

  .custom-caption {
    top: 8px;
    right: 8px;
    padding: 6px 10px;
    font-size: 12px;
    max-width: 130px;
    line-height: 1.2;
  }
}

/* Smooth Fade-in Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1A5D1A;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}


/* PRODUCT GRID */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* PRODUCT ITEM */
.product-item {
  padding: 5px;
  max-width: 150px;
  cursor: pointer;
}

/* PRODUCT CARD */
.product-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);

}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* IMAGE CONTAINER */
.image-container {
  position: relative;
  width: 100%;
}

.image-container img {
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* LOVE ICON */
.love-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.2rem;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  outline: none;
}

.love-icon:hover {
  transform: scale(1.2);
}

.love-icon.active {
  color: green;
}

/* CARD BODY */
.card-body {
  padding: 10px;
  background: white;
  transition: background 0.3s ease;
  text-align: center;
}

.product-card:hover .card-body {
  background: #e8ffe8;
}

.card-title {
  color: green;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
  }

/* PRICE STYLING */
.price {
  font-size: 1rem;
  font-weight: bold;
  color: #228B22;
  margin: 5px 0;
}

.sub{
  color: #228B22;
}

/* Add to Cart Button */
.btn-add-cart {
  background-color: #1A5D1A;
  color: #fff;
  border: none;
  padding: 8px 16px;
  
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 0.9rem;
}

.btn-add-cart:hover {
  background-color: #228B22;
  transform: scale(1.05);
}

.icon-group {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
}

.icon-group .btn {
  border-color: green;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.3s;
}

.icon-group .btn:hover {
  background: #4caf50;
}
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-label {
    font-size: 9px; /* Tiny text */
    color: black; /* Black text */
    margin-top: 2px; /* Small gap between icon and text */
    text-align: center;
}







/* Product Details */
.sku {
    color: gray;
    font-size: 14px;
}
/* Quantity */


.selected {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.cart-count {
    top: 55%; /* Move it slightly downward */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.quantity-container {
    display: flex;
    align-items: center;
    border: px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100px;
}

.quantity-container input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 13px;
    font-weight: bold;
}

.btn-quantity {
    background: #f8f9fa;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.btn-quantity:hover {
    background: #ddd;
}

.checkmark-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px auto;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        stroke: #28a745;
        stroke-width: 4;
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        animation: checkmark 1s ease-in-out forwards;
    }

    .checkmark-circle {
        stroke-dasharray: 150;
        stroke-dashoffset: 150;
        stroke: #28a745;
        stroke-width: 4;
        animation: circle 0.8s ease-in-out forwards;
    }

    @keyframes circle {
        from { stroke-dashoffset: 150; }
        to { stroke-dashoffset: 0; }
    }

    @keyframes checkmark {
        from { stroke-dashoffset: 50; }
        to { stroke-dashoffset: 0; }
    }


.store-header {
  margin-top: 0rem;
    background: #f8f9fa; /* Light Gray */
        color: white;
        border-radius: 10px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .store-name {
        font-size: 20px;
    }
    
    .store-motto {
        font-size: 12px;
        font-style: italic;
        opacity: 0.9;
    }

    .header-buttons .btn {
        font-size: 18px;
        padding: 6px 10px;
    }

    .cart-btn i, .search-btn i {
        font-size: 20px;
    }

.top-title1 {
  text-align: center;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.top-subtitle {
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  color: #7f8c8d;
  
}



.card-pricing {
  border-radius: 18px;
  background: #fff;
  padding: 2.5rem 2rem;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 340px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Plan Name */
.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* Price */
.pricey {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  text-align: left;
}

.features li {
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
}

.features li:last-child {
  border-bottom: none;
}

/* Button */
.card-pricing .btn {
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
  background: #1e7e34;
  color: #fff;
  border: none;
}

.card-pricing .btn:hover {
  background: #155d27;
  box-shadow: 0 5px 15px rgba(30, 126, 52, 0.3);
}

/* Responsive Grid Layout (Optional) */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}








 .top-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.seller-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.seller-card:hover {
  transform: translateY(-5px);
}

.seller-image-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #1abc9c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seller-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #34495e;
}

.seller-info p {
  margin: 0.3rem 0;
  color: #7f8c8d;
  font-size: 0.95rem;
}
.top-title {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.top-subtitle {
  display: block;
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
}

  
.custom-spinner {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }


.post {
      background: white;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      margin-bottom: 40px;
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }
    .post:hover {
      box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
    }
    .post-image img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      display: block;
    }
    .post-content {
      padding: 20px;
    }
    .post-title {
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: #222;
    }
    .post-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }
    .read-more {
      margin-top: 10px;
      color: #007BFF;
      cursor: pointer;
      font-weight: 600;
      user-select: none;
    }
    .pagination {
      text-align: center;
      margin-top: 40px;
    }
    .pagination a {
      margin: 0 5px;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 4px;
      background: #007BFF;
      color: white;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .pagination a.disabled {
      background: #cccccc;
      pointer-events: none;
      cursor: default;
    }




 .hero-section1 {
    position: relative;
    width: 100vw;
    margin: 0; /* Ensures no margin at all */
    margin-left: calc(-50vw + 50%);
    background: url('/static/images/imagee11coro.png') center center/cover no-repeat;
    min-height: 100vh;
    overflow: hidden;
  }

  .hero-section1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    z-index: 1;
  }

  .hero-section1 .container {
    z-index: 2;
    position: relative;
  }

  /* Modern button font styling */
.btn,
.btn-lg1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

  [data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
  }


.fade-tip {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-tip.show {
  opacity: 1;
}
