/* ---------- Rolodex - Optimized Brand CSS ---------- */
/* :root {
    --primary: #003366; */
/* Rolodex navy */
/* --primary-600: #00264d;
    --accent: #29bbd9; */
/* aqua */
/* --accent-600: #1fa5bf;
    --highlight: #ff7e5f;
    --muted: #6b7280;
    --bg: #f6fbfc;
    --white: #ffffff;
    --shadow-soft: 0 6px 18px rgba(2, 15, 26, 0.06);
    --shadow-strong: 0 20px 40px rgba(2, 15, 26, 0.08);
    --radius-lg: 14px;
    --radius-md: 10px;
} */

:root {
    --bg-dark: #000;
    --bg-dark1: #080909;
    --bg-hero: #000;
    --bg-header: #000;
    --text-header: #1b9df1;
    --bg-pdark: #000;
    --text-hero: #f0f6fc;
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-footer: #161b22;
    --color-blue: #1b9df1;
    --color-blue-hover: #1b9df1;
    --color-blue-light: #58a6ff;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --border-color: #30363d;
    --success: #2ea043;
    --error: #f85149;
    --accent: #006f87;
    --primary: #25a5db;
    --secondary: #1b9df1;
    --orange: #f9b233;
    --iconcolor: #f9b233;
}

body.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #bee5fe;
    --color-blue: #1b9df1;
    --color-blue-light: #58a6ff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --success: #198754;
    --error: #dc3545;
    --accent: #006f87;
    --primary: #25a5db;
    --bg-hero: #1b9df1;
    --bg-pdark: #ffffff;
    --bg-footer: #1b9df1;
    --text-hero: #f0f6fc;
    --orange: #000;
    --iconcolor: #1b9df1;
    --secondary: #ffffff;
    --bg-header: #1b9df1;
    --text-header: #dee2e6;
    --color-blue-hover: #000;
    --bg-dark1: #ffffff;
}

/* ---------- Reset / Global ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

/* body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: Arial, sans-serif;
} */

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 2px;
    border-radius: 20px;
    padding: 6px 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 9999;
}

@media (max-width: 991px) {
    .theme-toggle {
        top: 100px;
        right: 2px;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--border-color);

    border-radius: 30px;
    transition: 0.4s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-primary);
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #3f4446;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Icon inside slider */
.slider:after {
    content: "🌙";
    position: absolute;
    right: 8px;
    top: 4px;
    font-size: 16px;
    transition: opacity 0.4s;
}

input:checked + .slider:after {
    content: "☀️";
    left: 8px;
    right: auto;
}

header,
nav {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 15px 20px;
}

a {
    color: var(--color-blue-light);
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

button {
    background-color: var(--color-blue);
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
}

/* button:hover {
    background-color: var(--color-blue-light);
} */

.btn-outline-primary {
    color: var(--color-blue) !important;
    /* Text & border color */
    border-color: var(--color-blue) !important;
}

.btn-outline-primary:hover {
    background-color: var(--color-blue) !important;
    /* Fill on hover */
    color: #f0f6fc !important;
    /* White text on hover */
}

.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--color-blue) !important;
    color: #f0f6fc !important;
    /* box-shadow: 0 0 0 0.25rem rgba(31, 111, 235, 0.4); */
    /* Glow effect */
}

.btn-outline-primary:disabled {
    color: #8b949e;
    border-color: #8b949e;
    background-color: transparent;
}

.btn-outline-primary1 {
    color: var(--text-header) !important;
    /* Text & border color */
    border-color: var(--text-header) !important;
}

.btn-outline-primary1:hover {
    /* background-color: var(--text-header) !important; */
    /* Fill on hover */
    color: #f0f6fc !important;
    /* White text on hover */
}

.btn-outline-primary1:focus,
.btn-outline-primary1:active {
    background-color: var(--text-header) !important;
    color: #f0f6fc !important;
    /* box-shadow: 0 0 0 0.25rem rgba(31, 111, 235, 0.4); */
    /* Glow effect */
}

.btn-outline-primary1:disabled {
    color: #8b949e;
    border-color: #8b949e;
    background-color: transparent;
}

.addaddverbtn {
    color: var(--color-blue) !important;
    /* Text & border color */
    border-color: var(--color-blue) !important;
}

.addaddverbtn:hover {
    background-color: var(--color-blue) !important;
    /* Fill on hover */
    color: #f0f6fc !important;
    /* White text on hover */
}

.addaddverbtn:focus,
.addaddverbtn:active {
    background-color: var(--color-blue) !important;
    color: #f0f6fc !important;
    /* box-shadow: 0 0 0 0.25rem rgba(31, 111, 235, 0.4); */
    /* Glow effect */
}

.btn-outline-primary:disabled {
    color: #8b949e;
    border-color: #8b949e;
    background-color: transparent;
}

/* ---------- Container ---------- */
.container-xl {
    max-width: 1188px;
    margin: 0 auto;
    padding: 0 18px;
}

/* ---------- NAVBAR ---------- */
.custom-navbar {
    background: var(--bg-header);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1050;
    color: var(--text-primary);
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #fff !important;

    position: relative;
    padding: 8px 12px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    color: var(--color-blue-hover);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link11:hover::after,
.navbar-nav .nav-link11.active::after {
    width: 100%;
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 48px;
    }
}

/* ---------- HERO ---------- */
.hero {
    padding: 38px 0 26px;
    background: var(--bg-hero);
    color: white;
    position: relative;
    /* circles ke liye */
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-size: 26px;
    font-weight: 700;
}

.hero p.lead {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    line-height: 1.07;
    letter-spacing: 2px;
    /* 2px spacing */
    text-align: center;
}

/* Search box */
.search-box {
    /* height: 60px; */
    top: 464px;
    left: 307px;
    opacity: 1;
}

.search-input {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    /* background: var(--white); */
}

.search-input input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 15px;
}

.search-input .btn-search {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 18px;
}

/* ---------- FEATURED ADS CAROUSEL ---------- */
#adsCarousel .carousel-inner {
    padding: 6px 0;
}

#adsCarousel .carousel-item {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
}

#adsCarousel .carousel-col {
    flex: 0 0 100%;
    max-width: 100%;
}

#adsCarousel .card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

#adsCarousel .card:hover {
    transform: translateY(-4px);
}

#adsCarousel .card-img-top {
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 768px) {
    #adsCarousel .carousel-col {
        flex: 0 0 48%;
        max-width: 48%;
    }

    #adsCarousel .card-img-top {
        height: 190px;
    }
}

@media (min-width: 992px) {
    #adsCarousel .carousel-col {
        flex: 0 0 31%;
        max-width: 31%;
    }

    #adsCarousel .card-img-top {
        height: 200px;
    }
}

#adsCarousel .carousel-control-prev-icon,
#adsCarousel .carousel-control-next-icon {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    background-size: 2rem 2rem;
}

.carousel-card {
    width: 100%;
    max-width: 31%;
    /* desktop default */
    border-radius: 12px;
    overflow: hidden;
}

.carousel-card img {
    height: 200px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .carousel-card {
        max-width: 48%;
    }

    /* tablet */
    .carousel-card img {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .carousel-card {
        max-width: 100%;
    }

    /* mobile */
    .carousel-card img {
        height: 160px;
    }
}

/* ---------- LISTINGS ---------- */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card Container */
.listing-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: var(--bg-primary);
}

.listing-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

/* Image Wrapper */
.card-img-wrapper {
    overflow: hidden;
    height: 200px;
}

.listing-card img {
    width: 100%;
    height: 173px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.listing-card:hover img {
    transform: scale(1.02);
}

/* Card Content */
.listing-card .body {
    padding: 14px;
}
.listing-card .card-body {
    padding-top: 0px;
}
.listing-card h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 25px;
    line-height: 100%;
    /* 1.0 */
    letter-spacing: 0;
    color: var(--text-primary) !important;
    margin-bottom: 0.25rem;
}

.Businesses h5 {
    color: var(--color-blue) !important;
}

.Businesses i {
    color: var(--color-blue) !important;
}

.listing-card p {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 18px;
    line-height: 161%;
    /* लगभग 1.61 */
    letter-spacing: 0;
    /* कोई extra spacing नहीं */
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* CTA Row */
.listing-card .cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-get {
    background: var(--primary, #0077a3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 0;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-get:hover {
    background: #005f82;
}

/* ---------- Responsive ---------- */

/* Tablet: 2 columns */
@media (max-width: 1199px) {
    .listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: horizontal scroll */
@media (max-width: 767px) {
    .listing-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }

    .listing-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
    }
}

.footer-section {
    background-color: var(--bg-footer);
    color: var(--text-hero);
    padding: 30px 0;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--text-hero);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-hero);
    text-decoration: underline;
}

.store-img {
    max-width: 130px;
    height: auto;
}

.footer-divider {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary, #0077a3);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        /* align-items: center !important; */
        text-align: start !important;
    }

    .download-app img {
        max-width: 120px;
    }

    .social-icons {
        justify-content: center !important;
    }

    .contact-info {
        justify-content: center !important;
    }
}

/* Footer icons */
.footer-section .bi {
    font-size: 1.3rem;
    color: var(--bg-dark);
    transition: color 0.3s ease;
}

.footer-bottom {
    background-color: var(--bg-dark) !important;
    color: var(--text-hero) !important;
}

.footer-bottom:hover {
    color: var(--color-blue-light) !important;
}

.footer-section .bi:hover {
    color: var(--color-blue-light);
}

/* Contact info text */
.contact-info {
    font-size: 0.95rem;
}

/* Mobile styles */
@media (max-width: 767px) {
    .footer-section .col-md-4 {
        text-align: center;
    }

    .footer-section .d-flex {
        justify-content: start !important;
    }
}

.btn1 {
    background-color: var(--color-blue);
    color: var(--text-primary);
    border: none;
    /* padding: 10px 20px; */
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnsign {
    /* background-color: var(--text-header); */
    color: var(--text-primary) !important;
    border: none;
    /* padding: 10px 20px; */
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnsign:hover {
    /* background-color: var(--text-header); */
    color: var(--text-header) !important;
    border: none;
    /* padding: 10px 20px; */
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn2 {
    background-color: var(--text-header);
    color: var(--text-primary);
    border: none;
    /* padding: 10px 20px; */
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn1:hover {
    background-color: var(--color-blue-light);
}

.heart1 {
    color: var(--text-hero);
}

.togglebtn {
    background-color: white;
    padding: 6px 8px;
    border-radius: 5px;
    color: var(--text-primary) !important;
}

/* .hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-primary);
} */

.searchbtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #007bff; /* blue circle */
    color: #000; /* icon black */
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.searchbtn {
    background: #007bff !important;
}

.input-group {
    border-radius: 30px;
    border: 1px solid;
    border-color: var(--color-blue);
}

.service-card .card-title {
    color: var(--text-primary);
}

.service-card i {
    color: white;
}

.service-card .info-row i {
    color: var(--color-blue);
}
.service-card .info-row i:hover {
    color: var(--color-dark);
}

.btn-view-details {
    background: var(--color-blue);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--color-blue-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.btn-primary {
    background: var(--color-blue);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--color-blue-light);
}

.brand {
    font-weight: 600;
    color: var(--color-blue);
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.login-card .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--color-blue);
    color: var(--text-primary);
}

.login-card .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    outline: none;
}

.form-floating label {
    color: var(--color-blue);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 18px;
    cursor: pointer;
    color: var(--text-primary);
}

/* //register */
.register-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.register-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.register-card .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
}

.register-card .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    outline: none;
}

.form-floating label {
    color: var(--color-blue);
}

.btn-primary {
    background: var(--color-blue);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--color-blue-light);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

.brand {
    font-weight: bold;
    color: var(--color-blue);
}

@media (max-width: 576px) {
    .register-card {
        padding: 25px;
    }
}

/* //conatct */
.contact-card {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    background: var(--bg-primary);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    flex-wrap: wrap;
    border: 1px solid var(--color-blue);
}

.headersection {
    color: var(--text-primary);
    padding: 50px 0 20px;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--color-blue);
    margin-top: 3px;
}

.info-item strong {
    font-size: 14px;
    color: var(--color-blue-light);
}

/* Right Section (Form) */
.contact-right {
    flex: 1;
    min-width: 280px;
}

.contact-right .form-control {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid var(--color-blue);
}

.btn-submit {
    background: var(--color-blue);
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--color-blue-light);
}

.headersection p {
    color: var(--text-primary);
}

.headersection h2 {
    color: var(--color-blue);
}

/* profile sidebar */
.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-primary);
    margin-bottom: 10px;
}

.profile-img1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-hero);
    margin-bottom: 10px;
}

.nav-link1 {
    color: var(--bg-primary);
    border: 1px solid var(--bg-primary);
    border-radius: 6px;
    margin-bottom: 5px;
    transition: all 0.3s;
    /* background-color: rgb(212 212 212 / 62%); */
    padding: 8px;
}

.nav-link1.active,
.nav-link1:hover {
    background-color: var(--bg-primary);
    color: var(--color-blue) !important;
    font-weight: 600;
}

.nav-link2 {
    color: var(--text-hero);
    border: 1px solid var(--text-hero);
    border-radius: 6px;
    margin-bottom: 5px;
    transition: all 0.3s;
    /* background-color: rgb(212 212 212 / 62%); */
    padding: 8px;
}

.nav-link2.active,
.nav-link2:hover {
    background-color: var(--bg-primary);
    color: var(--color-blue) !important;
    font-weight: 600;
}

.sidebar {
    background-color: var(--color-blue);
    color: white;
    padding: 30px 15px;
    height: 100%;
}

@media (max-width: 767px) {
    .profile-img {
        width: 70px;
        height: 70px;
    }

    .sidebar h5 {
        font-size: 16px;
    }
}

.form-container {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-blue);
}

.form-control {
    border: 1px solid var(--color-blue);
    border-radius: 6px;
}

.btn-primary {
    background-color: var(--color-blue);
    border: none;
}

.btn-primary:hover {
    background-color: var(--color-blue-light);
}

/* termpolicy */
.termpolicy {
    background: var(--bg-hero);
    color: white;
}

a {
    color: white;
}

.terms-section {
    /* background: linear-gradient(to bottom right, #e3f9fd, #ffffff); */
    color: var(--text-primary);
}

.terms-section h2 {
    color: var(--text-primary);
}

.terms-section h3 {
    color: var(--primary);
}

.terms-section h5,
.terms-section h6 {
    color: var(--text-primary);
}

.search-dropdown {
    background-color: white;
}

.search-item {
    color: var(--text-secondary);
}

.upgrade-btn {
    background-color: var(--color-blue);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
}

.upgrade-btn:hover {
    background-color: var(--color-blue-light);
}

.payment-box {
    border: 1px dashed var(--accent);
    border-radius: 10px;
    padding: 20px;
}

.plan-box {
    background-color: #e9fafd;
    /* border: 1px dashed var(--accent); */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.categories {
    background-color: var(--bg-hero);
    /* max-width: 1145px; */
    /* पूरे सेक्शन की max width */
    margin: 0 auto;
    color: white;
    /* center align container */

    opacity: 1;
    padding: 0px 10px;
}

.categories .col-4,
.categories .col-md-2,
.categories .col-lg {
    width: 143px;
    /* fix width for each item */
    /* height: 152px; */
    /* fix height for each item */
    border-width: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.categories .icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid var(--text-hero);
    /* optional border */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* circular */
    margin: 0 auto;
    font-size: 42px;
    color: var(--secondary);
    /* background: #1b9df13b; */
}

.categories p {
    /* width: 143px;
    height: 32px; */
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

.swiper-slide p {
    white-space: normal;
    /* allow line break */
    word-wrap: break-word;
    /* पुराने browsers */
    overflow-wrap: break-word;
    /* modern browsers */
    text-align: center;
    /* बीच में लाने के लिए */
    font-size: 12px;
    /* mobile के लिए छोटा size */
}

.categories .icon-box:hover {
    /* color: var(--color-blue-light); */
    /* hover पर color change */
    transform: scale(1.1);
    /* हल्का zoom effect */
}

.business-card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
    /* important */
    overflow: hidden;
}

/* curve wrapper */
.arrowcurve {
    position: absolute;
    right: -6px;
    bottom: -5px;

    background: var(--bg-primary);
    /* card background shade */
    width: 56px;
    height: 56px;

    border-top-left-radius: 29px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrowcurve i {
    color: var(--bg-primary);
}

/* arrow button */
.arrow-btn {
    background: var(--color-blue);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numbericon {
    color: var(--iconcolor);
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 18px;
    line-height: 161%;
    /* ~1.61 */
    letter-spacing: 0;
}

.ad-banner {
    background-color: var(--orange);
    /* yellow card background */
    border-radius: 40px;
    color: var(--bg-primary);
    margin: auto;
    overflow: hidden;
}

.ad-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
}

.ad-person {
    max-height: 250px;
    /* adjust as per your image */
    object-fit: contain;
    position: relative;
    bottom: -10px;
    /* thoda overlap effect dene ke liye */
}

.sectionpurchange {
    background: var(--bg-pdark);
}

.hero .circle-img {
    position: absolute;
    width: 100px;
    height: 300px;
    top: 19px;
    right: 0px;
    /* right se fix ho jayegi */
    opacity: 1;
    transform: rotate(0deg);
    pointer-events: none;
}

.center-ellipse {
    position: fixed;
    /* taaki har section ke upar dikh sake */
    top: 50%;
    /* vertical center */
    left: 50%;
    /* horizontal center */
    transform: translate(-50%, -50%);
    /* exact center */
    width: 200px;
    /* apni requirement ke hisaab se size */
    height: auto;
    z-index: 1050;
    /* navbar aur content ke upar rahe */
    pointer-events: none;
    /* click-block na kare */
}

/* .custom-navbar {
    background: url('assets/images/Ellipse 52.png') no-repeat right top;
    background-size: 420px; /* tumhare ellipse ke size ke hisaab se */
/* z-index: 10; */
/* } */
*/ .hero,
.navbar {
    position: relative;
    z-index: 20;
}

@media (max-width: 991px) {
    .circle-img {
        display: none;
    }
}

/* Mobile sidebar width 70% */
.offcanvas-start {
    width: 70% !important;
    border-radius: 0 15px 15px 0;
}

.offcanvas-header {
    border-bottom: 1px solid var(--bg-hero);
}

.offcanvas-body .nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
}

.offcanvas {
    background: var(--bg-dark);
}

.sponsored-title {
    font-family: auto;
    font-weight: 400; /* Regular */
    font-style: normal; /* CSS me "Regular" nahi hota, normal hota hai */
    font-size: 60px;
    line-height: 100%; /* 1.0 ke barabar */
    letter-spacing: 2px; /* % CSS me kaam nahi karta, px ya em use karo */
}

.bringtext {
    font-family: ui-monospace;
    font-weight: 400; /* Anton ek display font hai, mostly 400 weight use hota hai */
    font-style: normal; /* "Regular" ke jagah CSS me normal likhna padta hai */
    font-size: 60px;
    line-height: 107%; /* ≈ 1.07 */
    letter-spacing: 2px; /* CSS me % kaam nahi karta → ise px ya em me dena hota hai */
    text-align: center;
}

p.tagline {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 16px;
    line-height: 161%;
    /* लगभग 1.61 */
    letter-spacing: 0;
    /* कोई extra spacing नहीं */
    margin-bottom: 0.5rem;
    /* mb-2 Bootstrap जैसा */
}

.business-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 25px;
    line-height: 100%;
    /* 1.0 */
    letter-spacing: 0;
    /* कोई extra spacing नहीं */
    margin-bottom: 0.25rem;
    /* mb-1 Bootstrap जैसा */
}

.purchase-heading {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
    font-size: 40px;
    line-height: 100%;
    /* same as font size */
    letter-spacing: 2%;
    /* थोड़ी spacing */
    /* center align */
}

.getbtn {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    /* Bold */
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    /* spacing between lines */
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;

    width: 147px;
    height: 55px;
    border-radius: 12px;
    padding: 12px 16px;
    gap: 10px;

    opacity: 1;
    background-color: var(--color-blue);
    color: var(--text-primary);
}

.getbtn:hover {
    background-color: var(--color-blue-light);
    color: var(--text-primary);
}

.social-icon1 {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    /* border-width: 1px */
    border-radius: 12px;
    /* rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    /* icon size */
    color: #000;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
    background-color: #fff;
}

.social-icon1:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Laptop & small desktop (≤1200px) */
@media (max-width: 1200px) {
    .hero p.lead {
        font-size: 64px;
    }
}

/* Tablet landscape (≤991px) */
@media (max-width: 991px) {
    .hero p.lead {
        font-size: 48px;
    }
}

/* Tablet portrait / Large mobiles (≤768px) */
@media (max-width: 768px) {
    .hero p.lead {
        font-size: 36px;
    }
}

/* Small mobiles (≤576px) */
@media (max-width: 576px) {
    .hero p.lead {
        font-size: 28px;
        line-height: 1.2;
        /* readability improve */
    }
}

@media (max-width: 1200px) {
    h4.sponsored-title {
        font-size: 42px;
    }
    h2.bringtext {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    h4.sponsored-title {
        font-size: 36px;
    }
    h2.bringtext {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    h4.sponsored-title {
        font-size: 30px;
    }
    h2.bringtext {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    h4.sponsored-title {
        font-size: 24px;
    }
    h2.bringtext {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    p.tagline {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    p.tagline {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .business-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .business-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .business-title {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .purchase-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .purchase-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .purchase-heading {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .getbtn {
        font-size: 14px;
        width: 130px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .getbtn {
        font-size: 13px;
        width: 120px;
        height: 45px;
        padding: 10px 14px;
    }
}

/* ✅ Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .listing-card h5 {
        font-size: 22px;
    }

    .listing-card p,
    .numbericon {
        font-size: 16px;
    }
}

/* ✅ Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .listing-card h5 {
        font-size: 20px;
    }

    .listing-card p,
    .numbericon {
        font-size: 15px;
        line-height: 150%;
    }
}

/* ✅ Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .listing-card h5 {
        font-size: 18px;
    }

    .listing-card p,
    .numbericon {
        font-size: 14px;
    }
}

.business-card .business-img {
    max-width: 180px;
    /* desktop pe approx size */
    width: 100%;
    /* responsive ho */
    height: auto;
    /* ratio maintain */
}

@media (max-width: 991px) {
    .business-card .business-img {
        max-width: 140px;
        /* tablet pe chhoti */
    }

    .business-card .business-title {
        font-size: 20px;
        /* text chhota */
    }

    .business-card .tagline {
        font-size: 14px;
    }

    .business-card .numbericon {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .business-card .business-img {
        max-width: 115px;
        height: 100px;
    }

    .business-card .business-title {
        font-size: 18px;
    }

    .business-card .tagline {
        font-size: 11px;
    }

    .business-card .numbericon {
        font-size: 13px;
    }
}

.nav-link {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    /* Bold weight ke liye */
    font-size: 16px;
    /* Text size */
    line-height: 30px;
    /* Proper spacing */
    letter-spacing: 0;
    /* Characters ke beech spacing */
    vertical-align: middle;
}

.nav-link.active,
.nav-link:hover {
    color: var(--color-blue-hover) !important;
    /* Bootstrap primary color on hover/active */
}

.border-top1 {
    border-top: 1px solid;
    border-color: #5e8ce9 !important !important;
}

.listing-header {
    background: var(--bg-hero);
    color: #fff;
    text-align: center;
}

.listing-header h2 {
    font-weight: 700;
}

.listing-header p a {
    color: #fff;
    text-decoration: none;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); */
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 173px;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    background-color: #e8f5e9;
    color: #4caf50;
    border: 1px solid #4caf50;
    text-transform: uppercase;
}

.status-badge.closed {
    background-color: #ffebee;
    color: #e53935;
    border-color: #e53935;
}

.favorite-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ff5252 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.favorite-icon:hover {
    background-color: #ffe6e6;
}

.info-row > div:last-child {
    border-right: none;
}

.btn-view {
    background: var(--color-blue-light);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-view:hover {
    background: var(--color-blue-light);
}

.form-label,
.form-check-label {
    color: #000;
}

@media (max-width: 991px) {
    .seconlogo {
        display: none;
    }

    .categories .icon-box {
        width: 60px;
        height: 60px;
    }
}

.logo1 {
    color: #24abe0;
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: 600;
    align-self: anchor-center;
    left: 24% !important;
}

@media (max-width: 767px) {
    .row.mobile-gap {
        /* vertical spacing */
        column-gap: 30px;
        /* horizontal spacing */
    }
}

/* icon को manually बनाना */
.custom-toggler-icon {
    width: 32px;
    /* icon width */
    height: 3px;
    /* line thickness */
    background-color: var(--text-header);
    /* line color */
    display: block;
    position: relative;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    width: 32px;
    height: 3px;
    background-color: var(--text-header);
    position: absolute;
    left: 0;
}

.custom-toggler-icon::before {
    top: -8px;
    /* gap between lines */
}

.custom-toggler-icon::after {
    top: 8px;
    /* gap between lines */
}
.footerline {
    max-width: 914px; /* max limit desktop ke liye */
    width: 100%; /* chhoti screen pe full width le lega */
    margin: 0 auto; /* center align */
}
#searchInput {
    text-align: center;
}
