* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Location */
.location {
    font-size: 14px;
    margin: 0 15px;
    white-space: nowrap;
}

/* Search Box */
.search-box {
    display: flex;
    flex: 1;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    outline: none;
}

.search-box button {
    background: #00A699; /* IndiaMART style */
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Right Menu */
.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-right a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.header-right i {
    margin-right: 5px;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        margin: 10px 0;
        max-width: 100%;
    }

    .header-right {
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .location {
        margin: 5px 0;
    }
}
/* SIGNIN DROPDOWN */
.signin-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 9999;
    border-radius: 8px;
}

/* Show on click */
.signin-dropdown.active .dropdown-menu {
    display: flex;
}

/* Dropdown Items */
.dropdown-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown-menu i {
    margin-right: 8px;
}

.new {
    color: red;
    font-size: 11px;
    margin-left: 5px;
}

.new-user {
    padding: 12px 15px;
    font-size: 13px;
    background: #f9f9f9;
    text-align: center;
}

.new-user p {
    margin-bottom: 8px;
}

.join-btn {
    display: inline-block;
    background: #00A699;
    color: #fff !important;   /* 🔥 force white */
    padding: 6px 12px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
}

.join-btn:hover {
    background: #008f84;
    color: #333 !important;   /* 🔥 keep white on hover */
}

.dropdown-menu small {
    display: block;
    font-size: 11px;
    color: #777;
}
.hero-flex {
    display: flex;
    align-items: flex-start;   /* top align */
    justify-content: space-between; /* left & right use max space */
    gap: 200px; /* increase gap between left and right */
    max-width: 1200px;  /* optional container limit */
    margin: 0 auto;      /* center hero horizontally */
    padding: 0 15px;     /* small left/right padding */
}

/* LEFT BANNER */
.hero-left {
    flex: 0 0 50%;  /* 48% width */
}

/* RIGHT PLANS */
.hero-right {
    flex: 0 0 45%;  /* 50% width */
}

.hero {
    background: #f5f7fb;
    padding: 60px 0;
}

/* MAIN CONTAINER (CENTER ALIGN) */
.container {
    max-width: 1200px;
    margin: 0 auto;        /* center horizontally */
    padding: 0 20px;       /* left & right spacing */
}

/* FLEX LAYOUT */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;             /* space between left & right */
}

/* LEFT + RIGHT WIDTH */
.hero-left {
    width: 45%;
}

.hero-right {
    width: 55%;
    display: flex;
    gap: 15px;
}
/* RIGHT */
.hero-right {
    width: 50%;
    display: flex;
    gap: 15px;
}


.banner-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.banner-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.5s;
}

.banner-slider img.active {
    opacity: 1;
}

.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;
    }
}
/* MOBILE FIX */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        text-align: center;
    }

    .location {
        text-align: center;
        margin: 5px 0;
    }

    .search-box {
        width: 100%;
        margin: 10px 0;
    }

    .header-right {
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 10px;
    }

     .signin-dropdown {
        position: static !important;   /* 🔥 key fix */
    }

     .dropdown-menu {
        position: fixed !important;    /* 🔥 force overlay */
        top: 225px;                    /* below header */
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        border-radius: 0;

        z-index: 99999;
    }
/* Remove blue tap highlight on mobile */
a, button {
    -webkit-tap-highlight-color: transparent;
}

/* Remove blue focus outline */
a:focus,
button:focus {
    outline: none;
}

/* Keep your link color consistent */
a {
    color: inherit;
}}
.signin-dropdown i.fa-chevron-down {
    font-size: 11px;      /* increase size */
    margin-left: 4px;     /* space from text */
    color: #333;          /* icon color */
    transition: 0.3s;     /* smooth animation */
}
/* CARD BASE */
.custom-directory .website-card {
  position: relative;
  border-radius: 12px;
  padding: 18px;
  height: 250px;
  width: 155px; /* wider than default */
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HOVER */
.custom-directory .website-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* TEXT */
.custom-directory .website-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.custom-directory .website-desc {
  font-size: 13px;
  color: #666;
}

/* IMAGE */
.custom-directory .website-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 80px;
  pointer-events: none;
}

/* BUTTON */
.custom-directory .card-link {
  position: absolute;
  bottom: 15px;
  left: 10px;
  height: 32px;
  min-width: 32px;
  background: #635cdb;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  padding: 0 8px;
  font-size: 12px;
  transition: all 0.3s ease;
}

/* ICON */
.custom-directory .card-link i {
  font-size: 12px;
}

/* TEXT HIDDEN */
.custom-directory .card-link span {
  opacity: 0;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}

/* HOVER EXPAND */
.custom-directory .website-card:hover .card-link {
  padding: 0 12px;
  border-radius: 20px;
  gap: 6px;
}

/* SHOW TEXT */
.custom-directory .website-card:hover .card-link span {
  opacity: 1;
  width: auto;
}

/* COLORS */
.custom-directory .silver-card {
  background: linear-gradient(135deg, #f5f6ff, #e6e8ff);
}

.custom-directory .gold-card {
  background: linear-gradient(135deg, #fff4d6, #ffe8a3);
}

.custom-directory .platinum-card {
  background: linear-gradient(135deg, #635cdb, #8a84ff);
  color: #fff;
}

/* WHITE TEXT ON DARK */
.custom-directory .platinum-card .website-title,
.custom-directory .platinum-card .website-desc {
  color: #fff;
}

/* HEADING */
.custom-directory .plan-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.custom-directory .plan-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 576px) {
  .custom-directory .website-card {
    height: auto;
    padding: 15px;
  }

  .custom-directory .website-img {
    width: 60px;
  }

  .custom-directory .plan-heading {
    font-size: 18px;
    text-align: center;
  }

  .custom-directory .plan-sub {
    text-align: center;
  }
}
/* HERO FLEX DEFAULT (desktop) */
.hero-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {
  .hero-flex {
    display: block; /* stack banner and plans */
  }

  .hero-left {
    width: 100%;
    margin-bottom: 25px;
  }

  .hero-right {
    width: 100%;
  }

  /* Make plan slider scrollable horizontally */
  .plans-slider .swiper-slide {
    width: auto;
  }
}
.hero-left .banner-slider .slide {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}