
      body {
        background-color: white;
        font-family: 'Montserrat', sans-serif;
      }
  .banner-section {
        }
        .banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .banner-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

/* Oval shape for the image */
.custom-oval {
    border-radius: 10%;
    border: 1px solid #fff; /* White border */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
    max-width: 100%;
    height: auto;
    object-fit: cover;  Ensures it covers the space 
}

/* Centering the image */
.image-container {
    max-width: 300px; /* Adjust as needed */
    overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .image-container {
        max-width: 250px;
    }
}


  input[type="search"] {
    border-radius: 25px;
    padding: 10px 15px;
}


    /*HERO SECTION*/
    .b-blue {
      background-color:  #3b82f6 !important; 
    }
    .b-red {
      background-color: #000 !important;
    }
    .btn-outline-primary {
      border-color: #fff !important; 
    }

    .text-blue {
      color: #8b5cf6 !important;
    }

    .text-red {
      color: #000 !important;
    }
    .border-red {
      border: 2px solid #000 !important;
    }

    .border-blue {
      border: 2px solid #000 !important;
    }

    /* Cart button - Always visible */
    #cartButton {
        position: fixed;
        bottom: 20px;
        right: 20px;
        border: 1px solid grey;
        padding: 12px;
        border-radius: 20%;
        font-size: 18px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
        cursor: pointer;
        display: block; /* Always visible */
        transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    }

    /* Hover effect */
    #cartButton:hover {
        transform: rotate(45deg); /* Rotate button smoothly */
    }

    #cartIcon {
        font-size: 16px; /* Adjust icon size */
    }

    #cartCount {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #f8f9fa;
        color: grey;
        font-size: 12px;
        border-radius: 50%;
        padding: 5px;
        width: 18px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

  /* PRODUCT SECTION */
  .carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .thumb-item {
    cursor: pointer;
  }

  .thumb-item img {
    transition: border 0.3s ease-in-out;
}

/* Glow effect when thumbnail is active */
.thumb-item.active img {
    border: 2px solid #8B0000;  /* Blue border */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
}

  .btn-custom {
    background-color: #ff6347;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #ff4500;
  }



  /* Small tweaks for larger screens */
  @media (min-width: 992px) {
    .product-title {
      font-size: 3rem;
    }
  }

  /* Responsive design tweaks */
  @media (max-width: 768px) {
    .carousel-inner img {
      height: auto;
    }

    .product-title {
      font-size: 2rem;
    }

    .product-price {
      font-size: 1.5rem;
    }

    .thumb-item img {
      width: 50px;
      height: 50px;
    }


  }
   

      .navbar {
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
      }

      .navbar a.nav-link {
        margin-left: 20px;
        font-size: 1.1rem;
      }
      .navbar a.nav-link:hover {
        color: #000;
      }
      
      
/* Styling for the top bar */
.top-bar {
    font-size: 18px; /* Slightly larger font for better visibility */
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

/* Scrolling effect from left to right */
.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation for sliding text from left to right */
.top-bar .d-flex {
    display: flex;
    animation: slideRight 15s linear infinite;
}

/* Animation for sliding text from left to right */
@keyframes slideRight {
    0% {
        transform: translateX(-100%); /* Start off-screen on the left */
    }
    100% {
        transform: translateX(100%); /* End off-screen on the right */
    }
}

/* Adjust the text and icon appearance */
.top-bar i {
    font-size: 22px; /* Slightly larger icon for better visibility */
    margin-left: 12px; /* Added more space between the text and icon */
    color: #f5a623; /* Bright orange color for the icon to make it stand out */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .top-bar {
        font-size: 16px; /* Smaller font on mobile */
    }

    .top-bar .d-flex {
        animation-duration: 12s; /* Slightly slower animation on smaller screens */
    }

    .top-bar .container {
        padding: 0 10px; /* Padding adjustment for mobile */
    }
}



    /* Custom Styling for Footer */
    .footer-title {
    cursor: pointer;
    font-size: 1.2rem;
  }
  .toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  .social-icons a {
    font-size: 1.5rem;
    transition: 0.3s ease;
  }
  .social-icons a:hover {
    color: #007bff;
  }
  .text-decoration-none {
    text-decoration: none !important;
  }
  @media (max-width: 768px) {
    .footer-title {
      font-size: 1rem;
    }
  }


     .product-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .product-img {
        width: 100%;
        height: 500px;
        height: auto;
      }
      .banner-title, .banner-subtitle {
        font-weight: bold;
      }
      .product-card-body {
        padding: 15px;
      }
      .social-icons a {
        padding-right: 10px;
        font-size: 1.5rem;
      }

    .product-title {
      font-size: 1.25rem;
      font-weight: bold;
      color: #333;
    }

    .product-price {
      font-size: 1.1rem;
      color: #000;
      font-weight: bold;
    }

    .product-description {
      font-size: 0.9rem;
      color: #777;
    }

    /* Custom Padding */
    .product-card-body {
      padding: 20px;
    }

    .product-card-body .btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }



    /* General styles for pagination container */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Styling pagination list */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Styling individual pagination items */
.pagination li {
    margin: 0 5px;
}

/* Styling the links */
.pagination a {
    text-decoration: none;
    padding: 8px 12px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect */
.pagination a:hover {
    background-color: #007BFF;
    color: white;
}

/* Style for active page */
.pagination .active {
    background-color: #007BFF;
    color: white;
}

/* Styling for previous and next buttons */
.pagination .prev,
.pagination .next {
    font-weight: bold;
}

/* Media Query for responsive design */
@media screen and (max-width: 600px) {
    .pagination a {
        font-size: 14px;
        padding: 6px 10px;
    }
}

.thank-you-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .thank-you-card {
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .thank-you-icon {
            font-size: 60px;
            color: #28a745;
        }

        .thank-you-message {
            color: #495057;
        }

        .btn-custom {
            background-color: #28a745;
            color: white;
            font-weight: bold;
        }

        .btn-custom:hover {
            background-color: #218838;
        }