body {
    margin: 0;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* About Section */
.about {
    background-color: #f4f4f4;
    padding: 40px 20px;

}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: bolder;
}

.about p {
    color: #393737;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-image img {
    max-width: 20%;
    height: auto;
    border-radius: 8px;
    background-color: rgb(134, 129, 129);
    margin-left: 40%;
}

.about-text {
    flex: 1;
    margin-left: 20px;
}

.about-text h3 {
    margin-top: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        margin-left: 0;
    }
}

/* Categories Section */
.categories {
    background-color: #fff;
    padding: 40px 20px;
}

.categories .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.category-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Equal spacing between items */
}

.category-item {
    text-align: center;
    flex: 1;
    max-width: 300px; /* Adjust based on your design */
    margin: 0 10px;
}

.category-item img {
    width: 100%;
    height: 100%; /* Fixed height for equal size */
    object-fit: cover; /* Ensure images cover the area */
    border-radius: 50%;
    margin-bottom: 10px;
}

.category-item h3 {
    color: #333;
    font-size: 1.5em;
    margin: 0;
}
.button-container {
    text-align: center;
    margin-top: 20px; /* Adjust as needed for spacing */
}

.explore-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #4b5662; /* Change color as needed */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}


@media (max-width: 768px) {
    .category-item {
        max-width: 100%;
        margin: 20px 0; /* Adjust margin for small screens */
        font-size: 10px;
    }

    .category-item img {
        width:100%;
        height: 100%; /* Adjust height for smaller screens */
    }
}
@media (max-width: 480px) {
    .category-item {
        font-size:8px;
        margin: 10px 0; /* Adjust margin for very small screens */
    }

    .category-item img {
        width:100%;
        height: 100%; /* Further adjust height for very small screens */
    }
}

/* Services Section */
.services {
    background-color: #f4f4f4;
    padding: 40px 20px;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Equal spacing between items */
}

.service-item {
    text-align: center;
    flex: 1;
    max-width: 350px; /* Adjust based on your design */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%; /* Full width of container */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensure images cover the area */
    border-radius: 10px; /* 10px border-radius for rounded corners */
    margin-bottom: 15px;
}

.service-item h3 {
    color: #333;
    font-size: 1.5em;
    margin: 10px 0;
}

.service-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        max-width: 100%;
        margin: 20px 0; /* Adjust margin for small screens */
    }

    .service-item img {
        height: 150px; /* Adjust height for smaller screens */
    }
}


/* About the Owner Section */
.about-owner {
    background-color: #fff;
    padding: 40px 20px;
}

.about-owner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.owner-photo {
    width: 150px; /* Fixed width for round image */
    height: 150px; /* Fixed height for round image */
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensure the image covers the circular area */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.owner-details {
    flex: 1;
}

.owner-details h2 {
    color: #333;
    margin-bottom: 15px;
}

.owner-details p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .owner-info {
        flex-direction: column;
        align-items: center;
    }

    .owner-photo {
        width: 120px; /* Adjust width for smaller screens */
        height: 120px; /* Adjust height for smaller screens */
    }
}

/* Top Brands Section */
.top-brands {
    background-color: #f4f4f4;
    padding: 40px 20px;
}

.top-brands .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-brands h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.brand-logos {
    display: flex;
    justify-content: space-around; /* Distribute space evenly between items */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping if necessary */
}

.brand-logos img {
    width: 100px; /* Fixed width */
    height: 100px; /* Fixed height */
    border-radius: 50%; /* Make images round */
    object-fit: cover; /* Ensure images cover the round shape without distortion */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Spacing around each image */
}

@media (max-width: 768px) {
    .brand-logos img {
        width: 80px; /* Adjust size for smaller screens */
        height: 80px; /* Adjust size for smaller screens */
    }
}

.blog-intro {
    background: #f9f9f9; /* Light background for contrast */
    padding: 40px 20px; /* Generous padding */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center align text */
    margin: 20px auto; /* Center the section with margin auto */
    max-width: 1200px; /* Limit maximum width */
}

.blog-intro-content h2 {
    font-size: 36px; /* Large heading */
    margin-bottom: 20px; /* Space below heading */
    color: #333; /* Dark text color for contrast */
    font-weight: 700; /* Bold heading */
}

.blog-intro-content p {
    font-size: 18px; /* Larger text for readability */
    line-height: 1.6; /* Line height for readability */
    color: #555; /* Slightly lighter text color */
    margin-bottom: 30px; /* Space below paragraph */
}

.blog-intro-button {
    background: #444; /* Primary button color */
    color: #fff; /* Text color */
    padding: 12px 24px; /* Padding for the button */
    border-radius: 25px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Button font size */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.blog-intro-button:hover {
    background: #0056b3; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}