body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Clean and bold */
    font-weight: 700; /* Bold weight */
    font-size: 1rem; /* Adjust size */
    background: linear-gradient(to right, #4caf50, #2196f3);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

   #back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;  /* Hidden by default */
}

#back-to-top:hover {
  background-color: #0056b3;
}
     
        
h1, h2, h3, p {
    font-family: 'Poppins', sans-serif;
}
        .container {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .hero-section {
            background: rgba(0, 0, 0, 0.5);
            padding: 50px 20px;
            text-align: center;
            color: #fff;
        }
        
        .card-section {
    padding: 20px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Aligns items with space between */
}

.card {
    flex: 0 1 calc(50% - 10px); /* Two cards per row with some space */
    margin-bottom: 20px; /* Space between rows */
}

.card-body {
    padding: 20px; /* Padding for card content */
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .card {
        flex: 0 1 calc(100% - 10px); /* Stack cards on small screens */
    }
}

        
     .card-uniform {
    width: 100%; /* Full width in the grid */
    min-height: 320px; /* Set a minimum height that fits your longest card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }

   .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 10px;
          }

       .card-section {
    margin-top: 20px; /* Spacing above the section */
    padding: 10px; /* Optional padding within the section */
    background-color: #f8f9fa; /* Light background for visual separation */
    border-radius: 10px; /* Soft corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


        .card {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: #333;
            width: 100%;
            max-width: 350px;
            text-align: center;
        }

        .card-title {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .card-text {
            color: green;
            font-weight:bold;
        }

       .btn-outline-success {
    color: white;
    border-color: #28a745;
    border-radius: 50px; /* Makes the button round */
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #ff6347; /* Tomato color */
}
        .btn-outline-success:hover {
            color: #fff;
            background-color: #28a745;
            border-color: #28a745;
        }

        footer {
            background-color: #343a40;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        footer p {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        #display {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            text-align: center;
            padding: 20px;
            border: 2px solid #333;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

       .download-container {
    background-color: #007bff;
    padding: 1rem;
    border-radius: 0.5rem;
}

.download-container .btn-primary {
    background-color: #ffffff;
    color: #007bff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.25rem;
}
      /* Navbar logo styling */
.navbar-logo {
    height: 50px;
    width: auto;
}

/* Navbar customization for desktop */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1rem;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #f8c146;
}

/* Dropdown menu styling */
.dropdown-menu {
    background-color: #343a40;
    border: none;
    border-radius: 0;
}

.dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #495057;
    color: #f8c146;
}



/* Style for the menu text */
.menu-text {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    margin-right: 10px; /* Spacing between the text and the hamburger icon */
}

/* Align the text and icon */
.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    width: 20px; /* Adjust size for better alignment with text */
    height: 20px;
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 30 30"%3e%3cpath stroke="rgba%280, 0, 0, 0.5%29" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e');
}



        html, body {
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        .shop-now-btn {
            background-color: #f39c12;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
            display: inline-block;
            margin-top: 20px;
        }

        .shop-now-btn:hover {
            background-color: #e67e22;
            color: #fff;
        }

        @media (min-width: 768px) {
            .card {
                max-width: 250px; /* Adjust the card width for medium screens */
            }
        }

        @media (min-width: 1024px) {
            .card {
                max-width: 300px; /* Adjust the card width for large screens */
            }
        }
.about-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.about-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #343a40;
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #495057;
    text-align: center;
}

.img-fluid.rounded-circle {
    border-radius: 25%;
    max-width: 40%;
}
.shadow-container {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    background-color: pink;
}
 .faq-card {
  border-radius: 40px;
  border: 1px solid #e0e0e0;
  background-color: white; /* Background color of the card */
}

.faq-shadow {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.faq h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: gold; /* Black color for the questions (h5) */
  cursor: pointer; /* Adds a pointer cursor for better UX */
  font-weight: bold;
}

.faq p {
  margin-bottom: 20px;
  color: black; /* Green color for the answers (p) */
  font-weight: bold;
  text-align: center;
}
.faq li {
    font-weight: bold; /* Makes the text bold */
    font-size: 16px; /* Adjusts the font size */
    line-height: 1.6; /* Improves readability with proper spacing */
    margin-bottom: 10px; /* Adds spacing between list items */
    color: black; /* Sets a dark gray color for text */
    padding-left: 10px; /* Adds slight padding for better alignment */
    list-style-type: decimal; /* Ensures ordered numbering style */
}

.faq li a {
    color: #007bff; /* Default blue link color */
    text-decoration: none; /* Removes underline from links */
}

.faq li a:hover {
    text-decoration: underline; /* Adds underline on hover */
    color: #0056b3; /* Darker blue for hover effect */
}

 h4 {
    color: white;
    font-weight: bold;
    text-align: center;
    background-color: green; /* Background color for the main part of the text */
    display: inline-block;
    padding: 10px 20px; /* Padding for the text */
    border-radius: 20px 20px 20px 0; /* Rounded corners to start the teardrop shape */
    position: relative; /* Relative positioning to contain the pseudo-element */
}

h4::after {
    content: ''; /* No content, just a shape */
    width: 20px; /* Width of the teardrop's point */
    height: 20px; /* Height of the teardrop's point */
    background-color: green; /* Same background color */
    position: absolute;
    bottom: -10px; /* Positioning to place the point at the bottom */
    left: 50%;
    transform: translateX(-50%) rotate(45deg); /* Centering and rotating the point */
    border-radius: 0 0 20% 20%; /* Rounding the bottom corners to form the point */
}
.btn.btn-primary.card-button {
    background-color: #007bff; /* Primary color */
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn.btn-primary.card-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
    border-color: #0056b3;
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.btn.btn-primary.card-button:active {
    background-color: #004085; /* Even darker shade on click */
    border-color: #004085;
    transform: scale(0.95); /* Slight press down effect */
}

.btn.btn-primary.card-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); /* Focus outline */
}
 #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        /* Hover effect */
        #back-to-top:hover {
            background-color: #555;
            transform: scale(1.1);
        }

        /* Show button when user scrolls down */
        #back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

.tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tab {
    flex: 0 48%; /* Maintain two tabs per row */
    background-color: #f2f2f2;
    margin: 10px 0;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.tab a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.tab:hover {
    background-color: #e0e0e0;
}
.buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    background-color: #007BFF;
    color: orange;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.buy-btn:hover {
    background-color: green;
}
.buy-btn:active {
    background-color: gray;
}

        .table-container {
    width: 100%;
    overflow-x: auto;
}

.scrollable-table {
    max-height: 500px;
    overflow-y: auto;
}
   .image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 20px;
        }
        .image-box {
            flex: 0 0 30%; /* Adjust width to take 30% of the parent container */
            max-width: 30%;
            position: relative;
        }
        .image-box img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .buy-now-btn {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff5733;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-size: 14px; /* Slightly smaller font size */
        }
/* Custom styles for navigation links */

/* Register link */
.nav-link[href="register.php"] {
    color: #ff5722 !important; /* Change this to your preferred color */
}

/* Login link */
.nav-link[href="login.php"] {
    color: #4caf50 !important; /* Change this to your preferred color */
}
/* Bundles link */
.nav-link[href="#bundles"] {
    color: #ff9800 !important; /* Change this to your preferred color */
}

/* Optionally, you can also define hover effects */
.nav-link:hover {
    text-decoration: underline;
}

/* My Orders link */
.nav-link[href="orders.php"] {
    color: #2196f3 !important; /* Change this to your preferred color */
}

/* About Us link */
.nav-link[href="#about"] {
    color: #9c27b0 !important; /* Change this to your preferred color */
}

/* Optionally, you can also define hover effects */
.nav-link:hover {
    text-decoration: underline;
}
/* Background color for the collapsed menu (when clicked) */
.navbar-collapse {
    background-color: #ff9800; /* Change this to your preferred background color */
}

/* Optional: Adjust the text color inside the collapsed menu */
.navbar-collapse .nav-link {
    color: #fff !important; /* Change the text color inside the menu */
}

/* Adjust the hover effect */
.navbar-collapse .nav-link:hover {
    text-decoration: underline;
}

/* Background color for the three-line (hamburger) icon when active */
.navbar-toggler {
    background-color: #ff5722; /* Change this to your preferred color */
}

.navbar-toggler:hover {
    background-color: #ff7043; /* Optional hover effect for the hamburger icon */
}
/* Style for the 'MENU' text above the hamburger menu */
.menu-text {
    color: white;
    font-weight: bold;
    margin-right: 5px; /* Reduced space between 'MENU' and the hamburger icon */
    display: inline-block;
    vertical-align: middle; /* Aligns the 'MENU' text with the hamburger icon */
    font-size: 1.2rem; /* Adjust font size as needed */
}

/* Make sure the 'MENU' text is hidden when the navbar is expanded (on larger screens) */
@media (min-width: 992px) {
    .menu-text {
        display: none;
    }
}