@charset "utf-8";

/* CSS Document */


/* css resets starts here */

* {
    margin: 0;
    outline: none;
    padding: 0;
    font-weight: 400;
    list-style: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    font-family: 'poppins', 'roboto' !important;
    font-size: 10px !important;
    line-height: 1.6rem;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    min-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--gray-f1f1f1) !important;
    margin: 0;
    padding: 0px;
    font-family: 'poppins' !important;
}

main {
    display: block;
    font-family: 'Inter' !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    text-decoration: none;
    line-height: 1.6rem;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

i {
    font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

.text-center {
    text-align: center;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    position: relative;
    z-index: 100;
}


/* css resets end here */


/* page css starts here */

 :root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f7fbff;
    --text: #0f172a;
    --muted: #64748b;
    --accent: #2563eb;
    --accent-soft: #eff6ff;
    --border: #dbe4ee;
    --shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

.page-head-blk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding: 30px 20px;
    background-color: #fcebed;
}

.page-head-blk h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #000;
    padding: 0 0 10px 0;
    margin: 0px auto;
    text-align: center;
}

.page-head-blk .subline {
    font-size: 18px;
    line-height: 24px;
    color: #666;
    padding: 0 0 10px 0;
    margin: 0px auto;
    text-align: center;
}

.hero {
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 30px;
    position: relative;
    width: 80%;
    margin: 30px 10%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.hero-bar {
    margin: auto;
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(130px, .5fr));
    gap: 12px;
}

.search,
.stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    min-height: 56px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(31, 41, 55, .04);
}

.search {
    padding: 0 16px;
    gap: 10px;
    position: relative;
}

.search .drop-list-blk {
    width: 300px;
    position: absolute;
    z-index: 4;
    background-color: #fff;
    border: solid 1px #e4e4e4;
    left: 20px;
    top: 56px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.search .drop-list-blk ul {
    margin: 0px;
    padding: 0px;
    height: 200px;
    overflow-y: scroll;
}

.search .drop-list-blk ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.search .drop-list-blk ul li a {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #333;
    padding: 8px 12px;
    margin: 0;
}

.search .drop-list-blk ul li a:hover {
    background-color: #eff6ff;
}

.search input {
    width: 100%;
    border: 0;
    outline: 0;
    font: inherit;
    background: transparent;
    color: var(--text);
}

.search input::placeholder {
    color: #98a2b3;
}

.stat {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.stat strong {
    font-size: 18px;
}

.stat span {
    color: var(--muted);
    font-size: 13px;
}

.grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}

.grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
    width: 80%;
    margin: 0 10%;
}

.toc {
    position: sticky;
    top: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.toc h2 {
    margin: 0 0 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
}

.toc nav {
    display: grid;
    gap: 8px;
}

.toc a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
}

.toc a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}

.content {
    display: grid;
    gap: 24px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.state-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.state-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.state-head h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.02em;
}

.badge {
    background: var(--accent-soft);
    color: #666;
    border: 1px solid #cfe0ff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 500;
}

.cities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    padding: 30px 25px 35px 25px;
    position:relative;
}
.cities .vmore{position:absolute;bottom:6px;right:24px;z-index:2;background-color:#fff;}
.cities .vmore a{font-size:15px;line-height:15px;color:#2fa4d7;padding:5px;}
.city-link {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.city-link:hover {
    border-color: #bfd5ff;
    background: #f8fbff;
}

.meta {
    color: var(--muted);
    font-size: 12px;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 10px 0 10px 10px;
    color: var(--muted);
    font-size: 14px;
}

.btn {
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .toc {
        position: relative;
        top: auto;
    }
    .toolbar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 22px;
        border-radius: 24px;
    }
    h1 {
        font-size: 42px;
        max-width: none;
    }
    .hero-bar {
        grid-template-columns: 1fr;
    }
    .cities {
        grid-template-columns: 1fr;
    }
    .state-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .toolbar,
    .cities {
        grid-template-columns: 1fr;
    }
    .state-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat {
        display: none;
    }
}


/* page css end here */