.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}

.header-notification {
    background-color: #ff9800;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the contact items */
    gap: 10px;
    /* Space between the contact items */
}

.contact-item {
    color: #333;
    /* Color for the contact items */
    display: flex;
    align-items: center;
    /* Align text and icon vertically */
}

.contact-item i {
    margin-right: 8px;
    /* Space between icon and text */
    color: #007BFF;
    /* Change icon color if needed */
}


.header-notification {
    background-color: #ff9800;
    /* Background color for notification */
    color: #fff;
    /* Text color */
    padding: 30px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflow */
    position: relative;
}

.header-notification span {
    display: inline-block;
    position: absolute;
    animation: scroll-left 10s linear infinite;
    color: #22ff22;
    /* Change this to your desired color */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Styles */
.header {
    background: radial-gradient(#424141, #ffd6d6);
    color:whites;
    padding: 10px 0;
}

.navbar {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
    /* Align items to the left and right */
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    /* Space between menu items */
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e67e22;
}

.menu-icon {
    width: 28px;
    margin-left: 20px;
    cursor: pointer;
    display: none;
    /* Hide the menu icon by default */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.owner-section {
    background: #f4f4f4;
    /* Light background for contrast */
    padding: 40px 20px;
    /* Add padding for spacing */
    text-align: center;
    /* Center align text for a clean look */
    border-radius: 10px;
    /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add subtle shadow for depth */
}

.owner-title {
    font-size: 32px;
    /* Larger font size for emphasis */
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.owner-info {
    display: flex;
    flex-direction: column;
    /* Stack items vertically on smaller screens */
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Space between image and text */
    max-width: 800px;
    /* Limit width for readability */
    margin: 0 auto;
    /* Center align container */
}

.owner-photo {
    border-radius: 50%;
    width: 180px;
    /* Slightly larger image for prominence */
    height: 180px;
    object-fit: cover;
    border: 6px solid #444;
    /* Slightly thicker border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.owner-details {
    text-align: center;
    /* Center align text for a balanced look */
    max-width: 600px;
    /* Limit width of the text block */
    margin: 0 auto;
    /* Center align text block */
}

.owner-name {
    font-size: 26px;
    /* Slightly larger font size */
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.owner-description {
    font-size: 20px;
    /* Larger font size for readability */
    color: #666;
    /* Softer color for description */
    line-height: 1.6;
    /* Improved line spacing */
    font-family: 'Lora', serif;
    text-align: center;
    /* Center align text for a clean appearance */
}


.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e67e22;
}

button {
    background-color: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d35400;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Categories Section */
.categories {
    padding: 40px 20px;
}

.categories .row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.categories .col-3 {
    flex: 1;
}

.categories img {
    width: 100%;
    height: 300px;
    /* Set fixed height */
    object-fit: cover;
    /* Ensure images cover the area */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Add some box-shadow to product images */
}

/* Featured Products Section */
.small-container {
    max-width: 1080px;
    margin: auto;
    padding: 25px;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after {
    content: '';
    background: radial-gradient(#fff, #ffd6d6);
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

/* Product Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-4 {
    flex: 1;
    min-width: 220px;
    /* Minimum width for small screens */
    max-width: 220px;
    /* Maximum width for consistency */
    margin-bottom: 20px;
    /* Space below each product */
    box-sizing: border-box;
}

.col-4 img {
    width: 100%;
    height: 200px;
    /* Fixed height for images */
    object-fit: cover;
    /* Ensure images cover the container without distortion */
    border-radius: 10px;
    /* Optional: Add border-radius for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: Add box-shadow for better visual appearance */
}

.rating {
    color: #f39c12;
}

.rating .fas {
    margin-right: 2px;
}

/* New styles for featured products */
.col-4 {
    flex-basis: 22%;
    min-width: 200px;
    margin-bottom: 30px;
    text-align: center;
}

.col-4 img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.col-4 img:hover {
    transform: scale(1.05);
}

.col-4 h4 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.rating {
    margin: 10px 0;
}

.rating i {
    color: #ffa500;
    /* Star color */
    font-size: 18px;
    /* Star size */
    margin-right: 2px;
    /* Space between stars */
}

.col-4 p {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* Testimonial Section Styles */
.testimonial-container {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    padding: 50px 0;
}

.testimonial-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial-card {
    background: radial-gradient(#fff, #ffd6d6);
    ;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 20px;
    padding: 20px;
    text-align: center;
}

.testimonial-content h4 {
    font-size: 18px;
    color: #333;
    margin: 10px 0 5px;
}

.testimonial-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Brands Section Styles */
.brands-container {
    padding: 50px 0;
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
}

.brands-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    flex-basis: 16%;
    max-width: 150px;
    /* Optional: limit the size of the logos */
    margin: 20px;
    text-align: center;
}

.brand img {
    max-width: 100%;
    transition: transform 0.3s ease;
}

.brand img:hover {
    transform: scale(1.1);
}

.footer {
    background-color: #333;
    /* Dark gray */
    color: #fff;
    padding: 15px 0;
    /* Reduced padding */
}

.footer h4 {
    font-size: 10px;
    /* Reduced font size */
    margin-bottom: 8px;
    /* Reduced margin */
}

.footer p {
    font-size: 12px;
    /* Reduced font size */
    margin-bottom: 8px;
    /* Reduced margin */
}

.app-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligns logos to the left */
}

.app-logo img {
    margin-right: 5px;
    width: 100px;
    /* Reduced image size */
    transition: transform 0.3s ease;
}

.app-logo img:hover {
    transform: scale(1.05);
    /* Slightly smaller hover effect */
}

.social-icons {
    display: flex;
    gap: 5px;
    /* Reduced gap between icons */
    align-items: center;
}

.social-icons img {
    width: 40px;
    /* Reduced icon size */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
    /* Slightly smaller hover effect */
}

.footer hr {
    border: none;
    background: radial-gradient(#fff, #ffd6d6);
    ;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    font-size: 110%;
    /* Increase base font size by 10% */
}

/* Header Styles */


/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background-color: #ffd6d6;
    border-bottom: 1px solid #ddd;
}

.hero-content {
    flex: 1;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
}

.buttons button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}

.buttons button:hover {
    background-color: #0056b3;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Base Styles */
/* Base Styles */
/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 30px; /* Consistent gap between product cards */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */
.product {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure the card takes full height of the grid cell */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better appearance */
}

.product img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Max height for the product image */
    object-fit: cover; /* Ensures the image covers the area */
    border-radius: 10px;
    margin-bottom: 15px;
}

.product h2 {
    font-size: 18px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product .price {
    color: #28a745;
    font-size: 16px;
    margin: 5px 0;
}

.product button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: auto;
}

.product button:hover {
    background-color: #0056b3;
}

.product input[type="number"] {
    width: 80px;
    padding: 5px;
    margin: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust grid for small screens */
    }

    .product {
        height: auto; /* Allow product card height to adjust on small screens */
    }

    .product img {
        max-height: 150px; /* Adjust image size for small screens */
    }
}

@media (min-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns on large screens */
    }

    .product img {
        max-height: 250px; /* Increased image height on larger screens */
    }
}

/* Footer Styles */
.footer {
    background-color: #424141;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    padding: 10px;
    min-width: 200px;
    /* Ensures each section has a minimum width */
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer .social-icons {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
}

.footer .social-icons img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.footer .app-logo {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
}

.footer .app-logo img {
    width: 120px;
    margin: 0 10px;
}

.footer .terms-and-conditions {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination a.active {
    background-color: radial-gradient(#fff, #ffd6d6);
    color: white;
    border: 1px solid #333;
}

/* Media Queries for Responsiveness */


.search-form {
    margin-left: 5px;
}


/* Button Styles */
button,
.button {
    display: inline-block;
    padding: 11px 33px;
    font-size: 20px;
    color: #fff;
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    border: none;
    border-radius: 5.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover,
.button:hover {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
}

/* Navigation Styles for Mobile */
.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
}


/* Container Styles */
.container,
.small-container {
    max-width: 1320px;
    margin: 0;
    padding: 0 22px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 14px;
}

.pagination a:hover {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
}

.pagination a.active {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    color: white;
    border: 1px solid #333;
}

.footer {
    margin-top: 30px;
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    /* Distributes space between items */
    flex-wrap: wrap;
    /* Allows items to wrap to the next line on smaller screens */
}

.footer-section,
.footer-col {
    margin-top: 30px;
    flex: 1;
    /* All
    ows each section to grow equally */
    margin: 0 15px;
    /* Adds margin between sections */
}

.footer-section h4,
.footer-col h4 {
    margin-top: 30px;
    color: #ff5733;
    /* Bright color for section titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section a,
.footer-col p {
    color: #b3b3b3;
    /* Subtle color for text */
    display: block;
    margin: 5px 0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-col a:hover {
    color: #ffcc00;
    /* Bright color on hover for emphasis */
}

.footer-section a:active,
.footer-col a:active {
    color: #ff6600;
    /* Slightly darker shade on click */
}

.social-icons img,
.app-logo img {
    margin-right: 10px;
    /* Space between logos */
}

.social-icons img:hover,
.app-logo img:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
    transition: transform 0.3s ease;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 120px;
    height: 70px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #f39c12;
    /* Default color for navigation links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

nav ul li a:hover {
    color: #e67e22;
    /* Color on hover */
}

/* Optional: active link color */
nav ul li a.active {
    color: #d35400;
    /* Color for the active link */
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-intro,
.company-history,
.mission-vision {
    margin-bottom: 40px;
}

.about-intro h1,
.company-history h2,
.mission-vision h2 {
    color: #333;
}

.about-intro p,
.company-history p,
.mission-vision p {
    color: #555;
    line-height: 1.6;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.mission,
.vision {
    flex: 1;
    padding: 20px;
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    border-radius: 8px;
}

.mission h2,
.vision h2 {
    margin-top: 0;
}

.footer {
    background-color: radial-gradient(#fff, #ffd6d6);
    ;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px solid #f39c12;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f39c12;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.app-logo {
    display: flex;
    gap: 10px;
}

.app-logo img {
    border-radius: 5px;
}

/* Contact page styling */
.contact {
    padding: 40px 20px;
    /* Reduced padding for a compact layout */
    background-color: radial-gradient(#fff, #ffd6d6);
    /* Light background color */
    color: #333;
    /* Text color */
}

.contact-header {
    font-size: 28px;
    /* Slightly smaller font size for the header */
    font-weight: bold;
    /* Make the header bold */
    margin-bottom: 15px;
    /* Reduced space below the header */
    text-align: center;
    /* Center the header text */
}

.intro {
    font-size: 16px;
    /* Slightly smaller font size for readability */
    line-height: 1.5;
    /* Adjusted line height for better readability */
    margin-bottom: 25px;
    /* Reduced space below the introduction paragraph */
    text-align: center;
    /* Center the text */
    font-weight: normal;
    /* Ensure the text is normal weight */
}

.contact-info {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center items horizontally */
    margin-bottom: 30px;
    /* Reduced space below contact info */
}

.info-item {
    display: flex;
    align-items: center;
    /* Align items vertically */
    margin: 8px 0;
    /* Reduced space between items */
    font-size: 14px;
    /* Smaller font size for contact info */
}

.info-item i {
    font-size: 20px;
    /* Icon size */
    color: #007bff;
    /* Icon color */
    margin-right: 10px;
    /* Space between icon and text */
}

.contact-form {
    max-width: 500px;
    /* Limit the width of the form */
    margin: 0 auto;
    /* Center the form */
    background: radial-gradient(#fff, #ffd6d6);
    ;
    /* White background for the form */
    padding: 20px;
    /* Reduced padding inside the form */
    border-radius: 8px;
    /* Rounded corners for the form */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.contact-form label {
    font-size: 14px;
    /* Font size for labels */
    margin-bottom: 5px;
    /* Space below labels */
    display: block;
    /* Labels as block elements */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    /* Full width form fields */
    padding: 12px;
    /* Padding inside form fields */
    margin-bottom: 12px;
    /* Space below form fields */
    border: 1px solid #ddd;
    /* Border color */
    border-radius: 4px;
    /* Rounded corners */
    font-size: 14px;
    /* Font size for input fields */
}

.contact-form button {
    padding: 12px 18px;
    /* Padding inside the button */
    border: none;
    /* Remove border */
    background-color: radial-gradient(#fff, #ffd6d6);
    /* Button background color */
    color: #fff;
    /* Button text color */
    font-size: 16px;
    /* Font size for button text */
    cursor: pointer;
    /* Pointer cursor on hover */
    border-radius: 4px;
    /* Rounded corners for the button */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
}

.contact-form button:hover {
    background-color: radial-gradient(#fff, #ffd6d6);
    /* Darker color on hover */
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f39c12;
}

main {
    padding: 20px 0;
}

.terms-and-conditions {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-and-conditions h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.terms-and-conditions h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #555;
}

.terms-and-conditions p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}


/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

main {
    padding: 40px 0;
}

.terms-and-conditions {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.terms-and-conditions h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.terms-and-conditions h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #555;
}

.terms-and-conditions p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.app-logo img {
    margin-right: 10px;
}

.social-icons img {
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #f39c12;
    color: #fff;
}

.pagination a.active {
    background-color: #f39c12;
    color: #fff;
}

/*-------account-page----*/

.account-page {
    width: 50%;
}

.account-page .row {
    margin-left: 50%;
}

.form-container {
    background: #fff;
    width: 300px;
    height: 400px;
    position: relative;
    padding: 20px 0;
    margin-left: 200px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-container span {
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 100px;
    display: inline-block;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 130px;
    transition: transform 2s;
}

.form input {
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
}

form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}

form .btn:focus {
    outline: none;
}

#LoginForm {
    left: -300px;
}

#RegForm {
    left: 0;
}

form a {
    font-size: 12px;
}

#Indicator {
    width: 100px;
    border: none;
    background: #ff523b;
    height: 3px;
    margin-top: 8px;
    transform: translate(100px);
    transition: transform 2s;
}

.wp {
    text-align: center;
    margin: 20px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    /* WhatsApp green color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.contact-button:hover {
    background-color: #128C7E;
    /* Darker green for hover effect */
}

.whatsapp-logo {
    width: 24px;
    /* Adjust size as needed */
    height: auto;
    margin-right: 8px;
    /* Space between logo and text */
}

.searchp {

    margin-right: 0px;
}

/* Remove button styling */
.cart-item button {
    padding: 10px 20px;
    /* Increase padding for a larger button */
    border: none;
    background-color: #ff4d4d;
    color: white;
    cursor: pointer;
    font-size: 16px;
    /* Increase font size for better visibility */
    border-radius: 5px;
    margin: 0;
    /* Remove all margins */
    margin-left: 10px;
    /* Space between the text and the button */
    transition: background-color 0.3s, transform 0.3s;
    /* Smooth transition for hover effects */
}

.cart-item button:hover {
    background-color: #ff1a1a;
    /* Darker shade on hover */
    transform: scale(1.05);
    /* Slightly increase size on hover */
}


/* Base styles for the navbar */
.header {
    background-color: #333;
    /* Adjust as needed */
    padding: 10px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo img {
    max-width: 150px;
    /* Adjust as needed */
    margin-inline: -0p 200px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 auto;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
}

.menu-icon {
    display: none;
    /* Hidden by default */
}

/* Styles for mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
        /* Hide the menu items initially */
        flex-direction: column;
        width: 100%;
        background-color: #555;
        /* Adjust as needed */
        position: absolute;
        top: 60px;
        /* Adjust based on header height */
        left: 0;
        animation: slideIn 0.5s ease-out;
    }

    nav ul.show {
        display: flex;
        /* Show the menu when toggled */
        z-index: 999;
    }

    .menu-icon {
        display: block;
        /* Show the menu icon */
        cursor: pointer;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    header .logo {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    header .logo h1 {
        font-size: 20px;
    }

    nav ul li {
        margin: 10px auto;
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInUp 0.5s forwards;
    }

    nav ul li:nth-child(1) {
        animation-delay: 0.1s;
    }

    nav ul li:nth-child(2) {
        animation-delay: 0.2s;
    }

    nav ul li:nth-child(3) {
        animation-delay: 0.3s;
    }

    nav ul li:nth-child(4) {
        animation-delay: 0.4s;
    }

    nav ul li:nth-child(5) {
        animation-delay: 0.5s;
    }

    .menu-icon {
        display: block;
    }

    .container {
        padding: 15px;
    }


    @keyframes slideIn {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-col {
        width: 100%;
        display: grid;
        place-items: center;
        margin-left: -10px;
    }

    .footer-col .social-icons {
        width: 50%;
    }

    .account-page .row {
        margin-left: -20%;
    }

}

