:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --navy: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(236, 72, 153, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.05));
    min-height: 100vh;
    color: var(--text-dark);
}

.page-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding-bottom: 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(15px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient-pink-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
}

.btn-outline-pink {
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
}

header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.mobile-nav-toggle {
    display: none;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.nav-bar {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(147, 51, 234, 0.95));
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: sticky;
    top: 80px;
    z-index: 1055;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1375px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu>li.has-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: 1rem;
    border: 2px solid var(--pink);
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.2);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1060;
}

.nav-menu>li:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, #fce7f3 0%, #f3e8ff 100%);
    color: var(--pink);
    padding-left: 1.5rem;
}

.hero-section {
    padding: 1rem 0 0rem;
}

.hero-card {
    padding: 2rem;
}

.hero-card h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb .link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .link:hover {
    color: var(--pink);
}

.city-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.stat-card span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.stat-card h3 {
    font-size: 1.75rem;
    margin: 0.4rem 0 0;
}

.search-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1049;
    overflow: visible;
}

.search-container {
    position: relative;
    z-index: 1050;
}

.search-box .form-control {
    border-radius: 999px;
    padding-left: 4rem;
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.search-box .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.2);
}

.search-box .bi-search {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(236, 72, 153, 0.15);
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.1);
    margin-top: 0.75rem;
    z-index: 1050;
    display: none;
    max-height: 280px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(236, 72, 153, 0.08);
}

.suggestion-item b {
    color: #ec4899;
    font-weight: 600;
}

.list-view-container {
    display: none;
}

.listbox {
    background: white;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.listbox .first {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pink);
    text-decoration: none;
}

.listbox .list-description {
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

.list-location {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.badge-category {
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.galleryview {
    display: none;
}

.galleryview .escort-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--pink);
    background: white;
    box-shadow: 0 18px 35px rgba(236, 72, 153, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleryview .escort-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(236, 72, 153, 0.25);
}

.escort-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.escort-card-image {
    position: relative;
    height: 375px;
    overflow: hidden;
    flex-shrink: 0;
}

.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.escort-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.badge-verified {
    background: #2563eb;
    color: white;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.escort-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.escort-card-name {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.escort-card-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

a.escort-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 278px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 575px) {
    a.escort-card-link {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

a.escort-card-link:hover {
    transform: translateY(-2px);
}

a.escort-card-link:hover .escort-card-name {
    color: #ec4899;
}

.escort-card-button {
    margin-top: 1rem;
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.area-section {
    margin-top: 1rem;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.area-card {
    border-radius: 1.25rem;
    border: 2px solid rgba(236, 72, 153, 0.2);
    padding: 1.25rem;
    background: white;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.area-card:hover {
    border-color: var(--pink);
    transform: translateY(-4px);
}

.services-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-chip {
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    background: rgba(236, 72, 153, 0.08);
    transition: all 0.2s ease;
}

.service-chip:hover {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    border-color: transparent;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    color: var(--pink);
    border-color: rgba(236, 72, 153, 0.3);
}

.pagination .page-link:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--pink);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-color: var(--pink);
    color: white;
}

footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.85);
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

footer a:hover {
    color: var(--pink);
}

@media (min-width: 768px) {
    .nav-bar {
        display: block !important;
        position: sticky !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
    }

    .mobile-nav-overlay {
        display: none !important;
        pointer-events: none !important;
    }

    .mobile-nav-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu>li.has-dropdown>a::after {
        position: absolute;
        right: 18px;
    }

    .mobile-nav-overlay {
        display: none;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        z-index: 997;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
    }

    .nav-bar.active {
        max-height: 90vh;
        padding: 1rem 0;
        overflow-y: auto;
    }

    .nav-container {
        padding: 77px 1rem 0px 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
        border-radius: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 0rem;
        opacity: 0;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        padding: 0;
    }

    .nav-menu>li.has-dropdown.active>.nav-dropdown {
        max-height: 400px;
        padding: 0.75rem 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575px) {
    .hero-card,
    .search-box {
        padding: 1.5rem;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
    }
}
.thumb-block p.metadata {
    height: 45px;
}

.thumb-block p.metadata .bg2 {
    color: -webkit-link;
}

.error404 {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    color: #333;
}

.error404 h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.error404 p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.error404 p a {
    color: #e60073;
    text-decoration: none;
    font-weight: bold;
}

.error404 p a:hover {
    text-decoration: underline;
}

.error404 hr {
    width: 50px;
    height: 1px;
    background-color: #ccc;
    border: none;
    margin: 1rem auto;
}

.selectmobshow {
    display: none;
}

#city-select,
#category-select,
#area-select,
#tag-select,
#city-select-pop,
#category-select-pop,
#area-select-pop {
    width: 48%;
    float: left;
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    text-align: left;
    margin-bottom: 10px;
    margin-right: 5px;
}

#city-select-pop,
#category-select-pop,
#area-select-pop,
.serbtn {
    width: 100%;
}

#home-search div.cont {
    padding: 0px;
}

#main nav ul {
    padding: 0;
    margin-bottom: 5px !important;
}

#main .page-title {
    padding-top: 10px;
    border-bottom: 1px solid #f1eeee;
}

.suggestions {
    position: absolute;
    left: 0px;
    width: 100%;
    top: 65px;
}

.viewad #main .page-title {
    font-size: 20px;
    line-height: 35px;
    border-bottom: none;
    margin-bottom: 0;
}

.topclass {
    width: 100%;
    padding: 5px 15px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    text-align: right;
}

.topclass span {
    cursor: pointer;
}

.listbox {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 2px solid #ec4899;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.listbox:hover {
    border-color: #9333ea;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
    transform: translateY(-2px);
}

.listbox a.first {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.listbox a.first:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.listbox .list-description {
    color: #374151;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.listbox .list-location {
    color: #2563eb;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.listbox .list-location:hover {
    color: #1d4ed8;
}

.listbox {
    display: block;
    line-height: 30px;
    align-items: center;
    font-size: 15px;
    font-family: system-ui;
}

.hidepost {
    margin-top: 4px;
}

.galleryview {
    display: block;
}

.list-view-container {
    background: linear-gradient(to bottom, #fdf2f8, #fce7f3);
    padding: 1.5rem;
    border-radius: 1rem;
}

.date-header-card {
    background: rgba(252, 231, 243, 0.6);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
}

.date-header-card:first-child {
    margin-top: 0;
}

.date-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #dc2626;
}

.date-icon i {
    color: #dc2626;
}

.date-header-content {
    flex: 1;
}

.date-header-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.date-header-content p {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.date-filter-container {
    position: relative;
    display: flex;
    align-items: center;
}

.date-filter-container .form-select {
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    min-width: 200px;
    font-size: 0.875rem;
    color: #374151;
}

.date-filter-container .form-select:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.2);
}

.view-toggle {
    display: inline-flex;
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 999px;
    overflow: hidden;
    align-items: center;
}

.view-toggle span {
    padding: 0.45rem 1.0rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--pink);
    transition: all 0.2s ease;
}

.view-toggle span.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
}

#galleryView {
    display: block;
}

#galleryView[style*="block"] {
    display: block !important;
}

#galleryView .escort-card {
    border: 2px solid #ec4899 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* height: 91% !important; */
    display: flex !important;
    flex-direction: column !important;
}

#galleryView .escort-card:hover {
    border-color: #9333ea !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

#galleryView .escort-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

#galleryView .escort-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#galleryView .escort-card-name a {
    color: #374151;
    transition: color 0.2s ease;
}

#galleryView .escort-card-name a:hover {
    color: #ec4899;
}

#galleryView .escort-card-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#galleryView .escort-card-location i {
    color: #ec4899;
    font-size: 0.75rem;
}

#homefirst {
    font-family: system-ui;
}

#homefirst h3 a {
    text-decoration: none;
    color: #de2600;
}

#homefirst .suggestions {
    left: auto;
    top: 150px;
}

#homefirst h1 {
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 6px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000000;
    color: #fff;
}

#homefirst .inner {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    padding: 0px 10px;
}

#homefirst .geoUnit {
    min-width: 100%;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}

#homefirst h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #de2600;
}

#homefirst .geoUnit ul {
    margin: 0;
    padding: 0;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 30px;
}

.categories .indexSectionButtons {
    padding: 2px 15px;
    background-color: #000;
    color: #fff;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    max-width: 400px;
    margin-bottom: 10px;
}

.categories .indexSectionList {
    font-size: 17px;
    line-height: 30px;
    padding-top: 7px;
    margin: 0 0 0 1em;
    padding: 0;
    color: #000;
}

.categories .main ul {
    padding: 0;
    font-size: 15px;
}

.description-body-main {
    font-size: 16px;
    line-height: 30px;
}

.date {
    width: 100%;
    margin-bottom: 5px;
    padding: 3px;
    padding-left: 6px;
    color: #000;
    font: 11pt arial;
    text-align: left;
    background-color: #eaeaea;
    background-color: #eee;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(.25, #eee), color-stop(.75, #fff));
    background-image: -moz-linear-gradient(left center, #eee 25%, #fff 75%);
}

.hidepost {
    display: none;
}



@media (max-width: 1024px) {
    #homefirst .inner {
        -webkit-column-count: 5;
        -moz-column-count: 5;
        column-count: 5;
    }
}

@media (max-width: 768px) {
    #homefirst .inner {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
}

@media only screen and (max-width:450px) {
    .suggestions {
        top: 80px;
    }

    .listbox {
        border-bottom: 1px solid #dfdddd;
        padding-bottom: 10px;
    }

    .listbox svg {
        height: 23px;
        padding-top: 7px;
    }

    .listbox a span {
        color: #0000ad;
    }

    .listbox span {
        color: #000;
        margin-left: 2px;
    }

    .listbox a.first {
        text-decoration: none;
        line-height: 24px;
        color: #00f;
    }

    .listbox span:first {
        border-left: 0;
        margin-right: 0;
    }

    .listbox .city,
    .listbox .category {
        color: #000;
        text-decoration: none;
    }

    .selectmobshow {
        display: block;
        padding: 10px;
        padding-left: 5px;
        padding-right: 0px;
        background-color: #f1f1f1;
        margin-top: 5px;
        border-radius: 5px;
        padding-bottom: 0px;
    }

    #home-search .search-input,
    #xv-search-form .search-input {
        font-size: 15px;
    }

    .search-submit {
        background-color: #555555 !important;
        border-color: #555555 !important;
    }

    #searchInput {
        border-color: #939393 !important;
    }

    .search-submit span {
        color: #fff;
    }

    #main nav ul {
        padding: 5px;
        padding-top: 10px;
    }

    .head__top.width-full-body {
        -webkit-box-shadow: 0 0 20px -10px rgba(0, 0, 0, .2);
        -moz-box-shadow: 0 0 20px -10px rgba(0, 0, 0, .2);
        box-shadow: 0 0 20px -10px rgba(0, 0, 0, .2);
    }

    h1 {
        background-size: 90%;
    }

    #main .page-title {
        font-size: 17px;
    }


}

@media (max-width: 450px) {
    #homefirst .inner {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    #homefirst .inner {
        display: none;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        padding: 8px 4px;
    }

    #homefirst .inner.showing {
        display: block;
    }

    #homefirst .suggestions {
        top: 95px;
    }

    #homefirst {
        margin-top: 10px;
    }

    .categories {
        margin-top: 15px !important;
    }
}

.dropdown-button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* Style the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.arrow {
    font-style: normal;
    font-weight: 400;
    font-size: .8em;
}

#homefirst .geoUnit ul {
    font-size: 15px;
    line-height: 30px;
}

.custom-user-icon:before {
    content: "\f2c0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    color: #333;
}


.second-header-stricy {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
}

.set-second-header {
    background: burlywood !important;
    border-radius: 15px;
}

.column {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 5px;
    border-radius: 10px;
}

.text-color-set {
    color: #fff !important;
}

.bi-arrow-right {
    color: var(--pink);
}

@media (min-width: 350px) and (max-width: 575px) {
    .set-width-mobile {
        width: 75% !important;
        margin: 12px auto !important;
    }
}

@media (max-width: 767px) {
    .has-dropdown.active .nav-dropdown {
        opacity: 1;
        max-height: 500px;
    }
}

.page-title-card {
    background: white;
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #ec4899;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .nav-dropdown a {
        padding: 0.85rem 1.5rem;
        border-left: none;
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }
}

/* Content Box Styles */
.fontboxcls {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.fontboxcls > div {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.fontboxcls > div:hover {
    border-color: #ec4899;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.1), 0 4px 6px -2px rgba(236, 72, 153, 0.05);
}

.fontboxcls > div:first-child {
    border-top: 4px solid #ec4899;
}

.fontboxcls > div:last-child {
    border-top: 4px solid #9333ea;
}

.fontboxcls h3 {
    color: #ec4899;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #f3e8ff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fontboxcls h3::before {
    content: "❓";
    font-size: 1.5rem;
}

.fontboxcls > div:first-child h3 {
    color: #9333ea;
}

.fontboxcls > div:first-child h3::before {
    content: "📝";
}

.fontboxcls p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.fontboxcls ul,
.fontboxcls ol {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.fontboxcls li {
    margin-bottom: 0.5rem;
}

.fontboxcls strong,
.fontboxcls b {
    color: #1f2937;
    font-weight: 600;
}

.fontboxcls a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fontboxcls a:hover {
    color: #9333ea;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fontboxcls {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .fontboxcls > div {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .fontboxcls h3 {
        font-size: 1.5rem;
    }
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.button-style {
    height: 42px !important;
    border-radius: 50px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
    background: linear-gradient(135deg, #ec4899, #9333ea) !important;
}