@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Basic Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    padding-top: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.category-item span,
.city-card h3,
.footer-col h3,
.supplier-info h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p,
.btn,
.btn-primary,
.btn-secondary,
label,
input,
select,
textarea,
.tag,
.supplier-info span,
.footer-col ul,
.footer-col p,
.blog-content p,
.blog-content a {
    font-family: 'Poppins', Arial, sans-serif;
}

/* Color Palette */
:root {
    --primary-color: #01B954;
    --secondary-color: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top dark bar */
body::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: #232323;
    z-index: 1000;
}

header {
    position: absolute !important;
    top: 20px;
    left: 0;
    width: 100vw;
    z-index: 1001;
    background: transparent;
    /* Matches hero background */
    box-shadow: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
    /* Adjust as needed */
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 0;
}

.border-bottom {
    border-bottom: 2px solid #fff;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}


.nav-links-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-container {
    display: none;
    font-size: 2rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.header-buttons .btn {
    margin-left: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Buttons - pill shape, all green */
.btn,
.btn-primary,
.btn-secondary {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 28px !important;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
    background-color: #01a54c !important;
    color: var(--white) !important;
}

/* Add hover effect for all button and input[type=submit] */
button:hover,
input[type="submit"]:hover {
    background-color: #01a54c !important;
    color: var(--white) !important;
    cursor: pointer;
    transition: background 0.2s;
}

/* Hero Section */
#hero {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 117px 68px 117px;
    position: relative;
    min-height: 340px;
    margin-top: 0;
}

#hero>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content,
.search-form {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 520px;
    margin-left: 0;
    gap: 16px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* Outlined and solid buttons in header */
.header-buttons .btn.btn-secondary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none;
    font-weight: 700;
}

.header-buttons .btn.btn-secondary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.header-buttons .btn.btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700;
}

/* Hero Become a Supplier button outlined */
.hero-content .btn {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 700;
    padding: 12px 32px !important;
    font-size: 1.1em;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 8px;
}

.hero-content .btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Search form styling */
.search-form {
    background: rgba(1, 185, 84, 0.5);
    padding: 24px 24px 24px 24px;
    border-radius: 44px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    color: #fff;
    margin-right: 0;
    margin-top: 0;
}

.search-form label {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 6px;
}

.search-form select,
.search-form input {
    width: 100%;
    padding: 16px 22px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #232323;
    margin-bottom: 18px;
    font-size: 1.08em;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-form select:focus,
.search-form input:focus {
    outline: 2px solid var(--primary-color);
    background: #fff;
}

.search-form select::placeholder,
.search-form input::placeholder {
    color: #888;
    opacity: 1;
}

.search-form .btn {
    border-radius: 999px !important;
    width: 100%;
    padding: 16px 0 !important;
    font-size: 0.8em;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700;
    margin-top: 10px;
}

/* How It Works Section - white background */
#how-it-works {
    text-align: center;
    padding: 120px 0;
}

#how-it-works .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;

}

#how-it-works h2,
#how-it-works .subtitle {
    text-align: center;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 80px;
}

.step {
    flex: 1;
    padding: 30px 20px;
    /* More inner spacing */
    background-color: #f5f5f5;
    /* Light gray background */
    border-radius: 16px;
    /* Rounded corners */
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Optional subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Green circle for icons */
.icon-wrapper {
    background-color: var(--primary-color);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(1, 185, 84, 0.2);
}

.step img {
    height: 32px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: #555;
}


.about-us-section {
    padding: .5rem;
}
.about-content p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: .3rem 0;
}

.step:hover {
    border: 1.5px solid var(--primary-color);
    background-color: #f2fcf6;
    box-shadow: 0 8px 32px rgba(1, 185, 84, 0.10);
    transform: scale(1.03);
}

/* Categories Section */
#categories {
    padding: 80px 0;
    text-align: center;
}

#categories h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#categories .subtitle {
    color: #777;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #e6e6e6;
    padding: 12px 24px;
    min-width: 0;
    width: 100%;
    max-width: 260px;
    min-height: 12px;
    text-align: left;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.2s;
}

.category-item img {
    height: 54px;
    width: 54px;
    object-fit: contain;
    margin-right: 18px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.category-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.category-text span {
    font-size: 1.13em;
    font-weight: 700;
    color: #1a2333;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-text p {
    font-size: 0.5em;
    color: #888;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive: 3 per row on medium, 2 on small, 1 on mobile */
@media (max-width: 1100px) {
    .category-list {
        grid-template-columns: repeat(3, 1fr);
    }

}



@media (max-width: 700px) {
    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-list {
        grid-template-columns: 1fr;
    }
}

/* Verified Suppliers Section */
#verified-suppliers {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

#verified-suppliers h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#verified-suppliers .subtitle {
    color: #777;
    margin-bottom: 50px;
}

.supplier-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}



.supplier-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e6e6e6;
    /* padding: 28px 20px; */
    transition: box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.2s;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.supplier-card img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    margin: 0;
    padding: 0;
}

.supplier-info {
    padding: 18px;
}

.supplier-info span {
    color: #777;
    font-size: 14px;
}

.supplier-info h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 12px 0 0 0;
}

.supplier-info h3 .fa-check-circle {
    color: var(--primary-color);
}

.tags {
    margin-bottom: 20px;
}

.tags .tag {
    background-color: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
}

.supplier-card .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .supplier-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    #hero {
        padding: 0;
        padding-top: 100px;

    }

    #hero .container .search-form{
        margin-bottom: 1rem;
    }

    .header-buttons .become-supplier-btn{
        display: none;
    }

}

/* Top Cities Section */
#top-cities {
    padding: 80px 0;
    text-align: center;
}

#top-cities h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#top-cities .subtitle {
    color: #777;
    margin-bottom: 50px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 18px;
}

.city-card {
    position: relative;
    width: 220px;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #e6e6e6;
    margin-bottom: 0;
    background: #fff;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.city-name-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
    pointer-events: none;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.city-card h3 {
    position: static;
    margin: 0 0 18px 0;
    color: #232323;
    background: none;
    font-size: 1.1em;
    font-weight: 700;
    z-index: 1;
    text-align: center;
    width: 100%;
}

/* Blogs Section */
#blogs {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

#blogs h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#blogs .subtitle {
    color: #777;
    margin-bottom: 50px;
}

.blog-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid #e6e6e6;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.2s;
    width: 30%;
    overflow: hidden;
    text-align: left;
}

.blog-post img {
    border-radius: 18px 18px 0 0;
    height: 140px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 16px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content p {
    color: #555;
    margin-bottom: 20px;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.dot.active {
    background-color: var(--primary-color);
}

/* FAQ Section */
#faq {
    padding: 80px 0;
    text-align: center;
}

#faq h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#faq .subtitle {
    color: #777;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* FAQ number icon style */
.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: white;
    color: green;

    border-radius: 20%;
    font-weight: 600;
    font-size: 1em;
    margin-right: 14px;
    box-shadow: 0 2px 8px rgba(0, 179, 0, 0.10);
}

/* FAQ card improvements */
.faq-list details {
    background: #fff;
    border: 1.5px solid #e6e6e6;
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 0 0 0 0;
    transition: border 0.2s, background 0.2s;
    overflow: hidden;
}

.faq-list details[open] {
    background: var(--primary-color);
    color: #fff;
    border: 1.5px solid var(--primary-color);
}

.faq-list details[open] summary {
    color: #fff;
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 22px 24px;
    font-size: 1.08em;
    background: none;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
}

.faq-list details[open] summary {
    background: none;
}

.faq-list details p {
    margin: 0 24px 18px 66px;
    line-height: 1.6;
    color: #fff;
    font-size: 1em;
}

.faq-list details:not([open]) p {
    display: none;
}

/* CONTACT US FINAL STYLES */
#contact-us {
    padding: 60px 0 0 0;
    background: #fff;
}

#contact-us .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 100px;

}

#contact-us h2,
#contact-us .subtitle {
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    /* border-radius: 24px; */
    overflow: hidden;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
    background: #fff;
    /* border: 1.5px solid #e6e6e6; */
    margin: 40px auto 0 auto;
    max-width: 1000px;
    position: relative;
}

.contact-map {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 500px;
    border-radius: 0;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: none;
    border-radius: 24px 0 0 24px;
    display: block;
}

.contact-form {
    left: 450px;
    top: 5%;
    border-radius: 10%;
    position: absolute;
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    padding: 40px 32px 32px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group1 {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group1 label {
    font-size: 0.8em;
    font-weight: 700;
    color: #060606;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group1 input,
.form-group1 select,
.form-group1 textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    background-color: #d9f8e7;
    border-radius: 20px;
    font-size: 0.8em;
    color: #555555;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.form-group1 textarea {
    min-height: 90px;
    resize: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    background-color: #ffffff;
    border-radius: 20px;
    font-size: 0.8em;
    color: #555555;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 90px;
    resize: none;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
}

.form-actions .btn {
    padding: 14px 38px !important;
    font-size: 1.1em;
    border-radius: 999px !important;
    font-weight: 700;
    min-width: 160px;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-left: 12px;
}

.contact-socials a {
    color: var(--primary-color);
    background: #eafbe9;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2em;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.contact-socials a:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        max-width: 100%;
        border-radius: 24px;
    }

    .contact-map,
    .contact-form {
        max-width: 100%;
        border-radius: 0;
    }

    .contact-form {
        position: relative;
        left: 0;
        top: 0;
        box-shadow: none;
    }

    .contact-map iframe {
        border-radius: 24px 24px 0 0;
        min-height: 220px;
    }

    .contact-form {
        border-radius: 0 0 24px 24px;
        padding: 24px 12px;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-socials {
        margin-left: 0;
    }
}

/* Footer */
footer {
    background-color: #fff;
    color: #232323;
    padding: 60px 0 0;
    border-top: 1.5px solid #e6e6e6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 50px;
}

.line {
    border-bottom: 1px solid #e6e6e6;
}

.footer-col {
    width: 23%;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links a {
    background-color: #f4f4f4;
    color: green;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
}

.social-links a:hover {
    background-color: green;
    color: white;
    transition: all 0.3s ease;
}

.footer-col h3 {
    color: #232323;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col ul li .fa {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-col ul a {
    color: #232323;
    text-decoration: none;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

#about-us .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1 1 0;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .btn {
    padding: 8px 18px !important;
    font-size: 1em;
    min-width: unset;
    width: auto;
    display: inline-block;
}

/* Zoom effect for all section images on hover */
section img:hover,
.category-item img:hover {
    transform: scale(1.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Make .category-item look clickable on hover */
.category-item:hover {
    box-shadow: 0 8px 32px rgba(1, 185, 84, 0.10), 0 2px 12px rgba(0, 0, 0, 0.10);
    border: 1.5px solid var(--primary-color);
    background: #f2fcf6;
    transform: scale(1.03);
    cursor: pointer;
}

/* Highlight FAQ summary in green on hover */
.faq-list summary:hover {
    background: #f2fcf6;
    color: var(--primary-color);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

/* Hover effect for city cards */
.city-card:hover {
    box-shadow: 0 8px 32px rgba(1, 185, 84, 0.10), 0 2px 12px rgba(0, 0, 0, 0.10);
    border: 1.5px solid var(--primary-color);
    background: #f2fcf6;
    transform: scale(1.03);
    cursor: pointer;
}

.city-card:hover img {
    transform: scale(1.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 10px;
    }

    .steps,
    .supplier-list,
    .blog-list,
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .step,
    .supplier-card,
    .blog-post,
    .footer-col {
        width: 80% !important;
        min-width: 260px;
    }

    .category-list {
        gap: 15px;
    }

    .category-item {
        width: calc(33% - 10px);
    }

    .city-list {
        gap: 15px;
    }

    .city-card {
        width: calc(33% - 10px);
    }

    #blogs .pagination{
        display: none;
    }
}


@media (max-width: 900px) {
    header nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links-container{
        flex-direction: column;
        align-items: start;
        justify-content: start;
        display: none;
    }

    .hamburger-container {
        display: block;
    }


    .nav-links {
        flex-direction: column;
        margin-bottom: 1rem;
    }

}

@media (max-width: 768px) {

    header nav,
    .footer-content,
    #about-us .container,
    .contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin: 10px 0;
    }

    .header-buttons {
        margin-top: 10px;
    }

    .steps,
    .supplier-list,
    .blog-list,
    .category-list,
    .city-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .step,
    .supplier-card,
    .blog-post,
    .category-item,
    .city-card,
    .footer-col {
        width: 100% !important;
        min-width: 0;
    }



    .about-image,
    .about-content,
    .contact-map,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        position: relative;
        left: 0;
        top: 0;
        box-shadow: none;
    }

    .about-image {
        justify-content: center;
    }

    .search-form {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 480px) {

    h1,
    h2,
    h3 {
        font-size: 28px !important;
    }



    .container {
        padding: 0 5px;
    }

    .step,
    .supplier-card,
    .blog-post,
    .category-item,
    .city-card,
    .footer-col {
        width: 100% !important;
        min-width: 0;
        padding: 10px !important;
    }

    .city-card:hover {
        padding: 0 !important;
    }

    .search-form {
        padding: 10px;
        border-radius: 20px;
    }

    .category-item img,
    .supplier-card img,
    .blog-post img {
        height: 150px !important;
    }

    .city-card h3 {
        font-size: 16px;
        left: 10px;
        bottom: 10px;
    }

    .footer-logo {
        height: 60px;
    }
}

@media (max-width: 900px) {
    #hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        margin-left: 0;
        margin-bottom: 32px;
        align-items: flex-start;
    }

    .search-form {
        margin-right: 0;
        align-self: center;
    }
}


@media (max-width: 1100px) {
    #contact-us .contact-content {
        position: inherit;
        display: flex;
        flex-direction: column;
    }

    #contact-us .contact-content .contact-map {
        min-width: 100%;
    }

    #contact-us .contact-content .contact-form {
        position: relative;
        top: 0;
        left: 0;
        min-width: 100%;
        box-shadow: none;
    }

    /* other contact-us specific overrides here */

    #hero>.container {
        flex-wrap: wrap;
    }

    #hero .hero-content {
        min-width: 100%;
    }

    #hero .search-form {
        min-width: 100%;
        margin-top: 1rem;
    }
}