* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2e3192;
    color: #fff;
    padding: 15px 20px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.search-box {
    display: flex;
    width: 50%;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: none;
}

.search-box button {
    background: orange;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* HERO */
.hero {
    text-align: center;
    padding: 50px;
    background: #f5f5f5;
}

.hero h1 {
    font-size: 32px;
}

.categories {
    padding: 40px;
    background: #f5f7fb;
}

/* GRID */
.category-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* BOX STYLE */
.category-box {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    
    border-top: 4px solid #2e3192; /* 🔥 BLUE TOP BORDER */
    
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HOVER EFFECT */
.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* TITLE */
.category-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #2e3192;
}

/* LIST */
.category-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-box ul li {
    font-size: 13px;
    padding: 5px 0;
    color: #444;
    cursor: pointer;
}

/* HOVER ITEM */
.category-box ul li:hover {
    color: #ff6a00;
    padding-left: 5px;
}
/* FREE QUOTE SECTION */
.free-quote {
    padding: 60px 20px;
    background: #f5f7fb;
}

.quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* STEPS */
.quote-steps {
    flex: 1;
    min-width: 300px;
}

.step {
    background: #fff;
    border-left: 4px solid #2e3192; /* blue border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step h3 {
    margin-bottom: 10px;
    color: #2e3192;
    font-size: 16px;
}

.step p {
    font-size: 14px;
    color: #555;
}

/* FORM */
.quote-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.quote-form h2 {
    margin-bottom: 15px;
    color: #2e3192;
}

.quote-form form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quote-form form button {
    width: 100%;
    padding: 12px;
    background: #2e3192;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.quote-form form button:hover {
    background: #ff6a00;
}

/* RESPONSIVE */
@media(max-width:900px){
    .quote-wrapper {
        flex-direction: column;
    }
}

/* PRODUCTS */
.products {
    padding: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.product img {
    width: 100%;
    height: 180px;   /* control height */
    object-fit: cover; /* crop nicely like IndiaMART */
    border-radius: 5px;
}

.product button {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.product button:hover {
    background: #e65c00;
}

/* FOOTER */
footer {
    background: #2e3192;
    color: white;
    text-align: center;
    padding: 15px;
}
.top-cities {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.top-cities h2 {
    font-size: 24px;
    color: #2e3192;
    margin-bottom: 30px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* CIRCLE IMAGE BOX */
.city-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.city-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* 🔵 CIRCLE SHAPE */
    object-fit: cover;
    border: 3px solid #2e3192;
    transition: 0.3s;
}

.city-box p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.city-box img:hover {
    transform: scale(1.08);
    border-color: #ff6a00;
}
/* MORE FOR YOU SECTION */
.more-for-you {
    padding: 60px 20px;
    background: #f5f7fb;
    text-align: center;
}

.more-for-you h2 {
    font-size: 28px;
    color: #2e3192;
    margin-bottom: 40px;
}

/* CARDS GRID */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* INDIVIDUAL CARD */
.card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ICON IMAGE */
.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    font-size: 18px;
    color: #2e3192;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTON */
.card .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #2e3192;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.card .btn:hover {
    background: #ff6a00;
}
.site-footer {
    background: #f1f4f9; /* soft light blue/gray background */
    color: #333; /* dark text for readability */
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer a {
    color: #2e3192; /* primary blue links */
    text-decoration: none;
}

.site-footer a:hover {
    color: #ff6a00; /* highlight on hover */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2e3192; /* category headings in blue */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #d6dbe3;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    color: #555; /* lighter gray text */
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-top {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 25px;
    }
}
/* FOOTER TOP STRIP WITH CONTAINER */
.footer-top-strip {
    width: 100%;
    background-color: #cfd6eb; /* slightly darker than footer */
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
}

.footer-top-strip .container {
    max-width: 1200px; /* same as your site container */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-top-strip a {
    margin-left: 8px;
    display: inline-block;
}

.footer-top-strip img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    transition: 0.3s;
}

.footer-top-strip img:hover {
    transform: scale(1.2);
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-top-strip .container {
        flex-direction: column;
        gap: 8px;
    }
.footer-top-strip .strip-right a {
    margin-left: 12px;
    font-size: 16px;
    color: #2e3192;
    transition: 0.3s;
}

.footer-top-strip .strip-right a:hover {
    color: #ff6a00;
}
    .footer-top-strip .strip-right {
        justify-content: center;
    }
}