/* =========================================================
   NCR'S 5IN1 SMART DIRECTORY
   COMPLETE WEBSITE CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f9fc;

    /* Premium subtle texture */
    background-image:
        radial-gradient(rgba(23, 37, 84, 0.055) 1px, transparent 1px),
        radial-gradient(rgba(245, 158, 11, 0.045) 1px, transparent 1px);
    background-size: 22px 22px, 35px 35px;
    background-position: 0 0, 10px 10px;

    color: #1e293b;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    width: 100%;
    background: #07111f;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

.navbar-inner {
    max-width: 1400px;
    min-height: 76px;
    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.6);
}

.logo span {
    color: #f59e0b;
}

.logo small {
    display: block;
    color: #cbd5e1;
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-menu a {
    color: #e2e8f0;
    padding: 11px 13px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

.nav-menu a:hover {
    color: #f59e0b;
    background: rgba(255, 255, 255, 0.05);
}

.nav-business-btn {
    background: #f59e0b !important;
    color: #111827 !important;
    padding: 11px 17px !important;
    border-radius: 6px !important;
}

.nav-business-btn:hover {
    background: #fff !important;
    color: #172554 !important;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* =========================================================
   HERO SEARCH AREA
========================================================= */

.hero-search-section {
    position: relative;
    padding: 70px 0 60px;
    background:
        linear-gradient(
            135deg,
            rgba(7, 17, 31, 0.98),
            rgba(23, 37, 84, 0.96)
        );
    overflow: hidden;
}

.hero-search-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    top: -220px;
    right: -120px;
}

.hero-search-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.15);
    bottom: -180px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content .small-heading {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-content h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 14px;

    text-shadow:
        0 4px 10px rgba(0, 0, 0, .45),
        0 8px 25px rgba(0, 0, 0, .3);
}

.hero-content h1 span {
    color: #f59e0b;
}

.hero-content p {
    max-width: 750px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.main-search-box {
    max-width: 1180px;
    margin: 0 auto;

    background: #fff;
    padding: 10px;
    border-radius: 12px;

    display: grid;
    grid-template-columns:
        1fr
        1fr
        1fr
        1.2fr
        130px;

    gap: 8px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .28);
}

.search-field {
    position: relative;
}

.search-field i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-size: 13px;
    z-index: 2;
}

.search-field select {
    width: 100%;
    height: 50px;

    border: 1px solid #e2e8f0;
    border-radius: 7px;

    background: #f8fafc;
    color: #475569;

    padding: 0 12px 0 36px;

    font-size: 12px;
    outline: none;

    cursor: pointer;

    transition: .3s ease;
}

.search-field select:focus {
    border-color: #f59e0b;
    background: #fff;
}

.search-button {
    height: 50px;
    border: 0;
    border-radius: 7px;

    background: #f59e0b;
    color: #111827;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: .3s ease;
}

.search-button:hover {
    background: #172554;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   POPULAR SEARCH TAGS
========================================================= */

.popular-searches {
    margin-top: 22px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}

.popular-searches span {
    color: #94a3b8;
    font-size: 10px;
    margin-right: 5px;
}

.popular-searches a {
    color: #e2e8f0;
    font-size: 10px;

    padding: 6px 11px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;

    transition: .3s ease;
}

.popular-searches a:hover {
    background: #f59e0b;
    color: #111827;
    border-color: #f59e0b;
}


/* =========================================================
   HERO BANNER + REGISTER
========================================================= */

.hero-main-section {
    width: 100%;
    padding: 45px 0;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
}

.hero-slider {
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #172554;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .12);
}

.hero-slide {
    width: 100%;
    height: 320px;
    position: relative;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            to top,
            rgba(7,17,31,.88),
            transparent 65%
        );
}

.hero-slide-overlay h2 {
    color: #fff;
    font-size: 27px;
    font-weight: 800;

    text-shadow:
        0 3px 8px rgba(0,0,0,.7);
}

.hero-slide-overlay p {
    color: #e2e8f0;
    font-size: 12px;
    margin-top: 7px;
}

.slider-dots {
    position: absolute;
    left: 30px;
    bottom: 18px;

    display: flex;
    gap: 6px;
}

.slider-dots span {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
}

.slider-dots span.active {
    width: 22px;
    border-radius: 10px;
    background: #f59e0b;
}


/* =========================================================
   REGISTER BUSINESS BOX
========================================================= */

.register-business-box {
    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    padding: 27px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.08);
}

.register-business-box .mini-title {
    color: #f59e0b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.register-business-box h2 {
    color: #172554;
    font-size: 24px;
    line-height: 1.2;
    margin: 8px 0 8px;

    text-shadow:
        0 2px 4px rgba(23,37,84,.12);
}

.register-business-box p {
    color: #64748b;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 17px;
}

.register-form {
    display: grid;
    gap: 9px;
}

.register-form input,
.register-form select {
    width: 100%;
    height: 39px;

    border: 1px solid #e2e8f0;
    border-radius: 6px;

    padding: 0 11px;

    font-size: 11px;
    color: #475569;

    outline: none;
}

.register-form input:focus,
.register-form select:focus {
    border-color: #f59e0b;
}

.register-form button {
    height: 40px;

    border: 0;
    border-radius: 6px;

    background: #172554;
    color: #fff;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;
    transition: .3s ease;
}

.register-form button:hover {
    background: #f59e0b;
    color: #111827;
}


/* =========================================================
   QUICK ACTION SECTION
========================================================= */

.quick-action-section {
    padding: 15px 0 60px;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.quick-action-card {
    min-height: 105px;

    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 12px;

    padding: 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 6px 22px rgba(15,23,42,.05);

    transition: .35s ease;
}

.quick-action-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 15px 35px rgba(15,23,42,.1);
}

.quick-action-icon {
    width: 53px;
    height: 53px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff7e6;
    color: #f59e0b;

    font-size: 20px;
}

.quick-action-card h3 {
    color: #172554;
    font-size: 14px;
    margin-bottom: 5px;
}

.quick-action-card p {
    color: #64748b;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.directory-section {
    width: 100%;
    padding: 65px 0;
}

.directory-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;
    margin-bottom: 28px;
}

.directory-section-heading span {
    display: block;

    color: #f59e0b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    margin-bottom: 7px;
}

.directory-section-heading h2 {
    color: #111827;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;

    text-shadow:
        0 2px 5px rgba(15,23,42,.12);
}

.directory-section-heading h2 strong {
    color: #172554;
    font-weight: 800;

    text-shadow:
        0 3px 6px rgba(23,37,84,.14);
}

.directory-section-heading p {
    max-width: 550px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.6;
    margin-top: 8px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #172554;

    font-size: 11px;
    font-weight: 800;

    padding-bottom: 5px;

    border-bottom: 2px solid #f59e0b;

    transition: .3s ease;
}

.view-all-btn:hover {
    color: #f59e0b;
}


/* =========================================================
   CATEGORY ICONS
========================================================= */

.category-section {
    background: #fff;
}

.category-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-icon-card {
    background: #f8fafc;

    border: 1px solid #e7ebf2;
    border-radius: 12px;

    min-height: 125px;

    padding: 18px 10px;

    text-align: center;

    transition: .35s ease;
}

.category-icon-card:hover {
    background: #172554;
    transform: translateY(-6px);
    border-color: #172554;
}

.category-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #f59e0b;

    border-radius: 50%;

    font-size: 19px;

    box-shadow: 0 5px 15px rgba(15,23,42,.08);
}

.category-icon-card h3 {
    color: #172554;
    font-size: 11px;
    font-weight: 750;
}

.category-icon-card:hover h3 {
    color: #fff;
}


/* =========================================================
   BUSINESS DIRECTORY
========================================================= */

.top-directory-section {
    width: 100%;
    padding: 70px 0;

    background:
        linear-gradient(
            rgba(247,249,252,.94),
            rgba(247,249,252,.94)
        );
}

.directory-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.directory-category-section {
    margin-bottom: 65px;
}

.business-card-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}

.business-card {
    position: relative;
    min-width: 0;

    padding: 20px 17px 18px;

    background: #fff;

    border: 1px solid #e7ebf2;
    border-radius: 14px;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(15,23,42,.05);

    transition: all .35s ease;
}

.business-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #f59e0b;

    transform: scaleX(0);
    transform-origin: center;

    transition: .35s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-7px);

    border-color: #f59e0b;

    box-shadow:
        0 15px 35px rgba(15,23,42,.12);
}

.verified-badge {
    position: absolute;

    top: 10px;
    right: 10px;

    padding: 4px 7px;

    background: #ecfdf5;
    color: #059669;

    border-radius: 20px;

    font-size: 8px;
    font-weight: 800;
}

.business-logo {
    width: 82px;
    height: 82px;

    margin: 17px auto 14px;

    padding: 10px;

    background: #fff;

    border: 1px solid #edf0f4;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s ease;
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: .35s ease;
}

.business-card:hover .business-logo img {
    transform: scale(1.08);
}

.doctor-logo {
    width: 82px;
    height: 82px;

    margin: 17px auto 14px;

    overflow: hidden;

    border-radius: 50%;
    border: 3px solid #f3f4f6;
}

.doctor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-card h3 {
    margin: 0 0 10px;

    color: #172554;

    font-size: 15px;
    font-weight: 750;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-location,
.business-category {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;
}

.business-location {
    color: #64748b;
    font-size: 11px;
    margin-bottom: 7px;
}

.business-location i {
    color: #f59e0b;
    font-size: 10px;
}

.business-category {
    color: #475569;
    font-size: 10px;
    margin-bottom: 12px;
}

.business-category i {
    color: #172554;
    font-size: 10px;
}

.business-rating {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 15px;
}

.business-rating span {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 700;
}

.business-rating small {
    color: #94a3b8;
    font-size: 9px;
}

.know-more-btn {
    width: 100%;
    min-height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 8px 10px;

    background: #172554;
    color: #fff;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 700;

    transition: .3s ease;
}

.know-more-btn:hover {
    background: #f59e0b;
    color: #111827;
}


/* =========================================================
   FEATURED BUSINESS
========================================================= */

.featured-section {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #172554
        );

    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(245,158,11,.15);

    border-radius: 50%;

    right: -150px;
    top: -150px;
}

.featured-section .directory-section-heading h2 {
    color: #fff;
}

.featured-section .directory-section-heading p {
    color: #94a3b8;
}

.featured-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.featured-card {
    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 13px;

    padding: 20px;

    transition: .35s ease;
}

.featured-card:hover {
    transform: translateY(-6px);

    background: rgba(255,255,255,.09);

    border-color: #f59e0b;
}

.featured-top {
    display: flex;
    align-items: center;
    gap: 13px;
}

.featured-logo {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #fff;

    padding: 8px;
}

.featured-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-card h3 {
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
}

.featured-card p {
    color: #94a3b8;
    font-size: 10px;
}

.featured-rating {
    margin-top: 15px;

    color: #f59e0b;

    font-size: 10px;
}

.featured-buttons {
    display: flex;
    gap: 7px;
    margin-top: 14px;
}

.featured-buttons a {
    flex: 1;

    text-align: center;

    padding: 8px 5px;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 700;
}

.profile-btn {
    background: #f59e0b;
    color: #111827;
}

.call-btn {
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}


/* =========================================================
   BUSINESS OPPORTUNITY
========================================================= */

.opportunity-section {
    padding: 65px 0;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.opportunity-card {
    position: relative;

    padding: 30px 25px;

    background: #fff;

    border: 1px solid #e7ebf2;
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 7px 25px rgba(15,23,42,.05);

    transition: .35s ease;
}

.opportunity-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
}

.opportunity-card i {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 18px;
}

.opportunity-card h3 {
    color: #172554;
    font-size: 18px;
    margin-bottom: 8px;
}

.opportunity-card p {
    color: #64748b;
    font-size: 11px;
    line-height: 1.7;
}

.opportunity-card a {
    display: inline-flex;
    margin-top: 17px;

    color: #172554;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   JOBS SECTION
========================================================= */

.jobs-section {
    padding: 70px 0;

    background: #fff;
}

.jobs-list {
    display: grid;
    gap: 12px;
}

.job-card {
    display: grid;

    grid-template-columns: 60px 1fr auto;

    align-items: center;

    gap: 18px;

    padding: 16px 20px;

    border: 1px solid #e7ebf2;
    border-radius: 10px;

    transition: .3s ease;
}

.job-card:hover {
    border-color: #f59e0b;
    transform: translateX(4px);
}

.job-company-logo {
    width: 55px;
    height: 55px;

    background: #f8fafc;

    border: 1px solid #edf0f4;

    border-radius: 8px;

    padding: 8px;
}

.job-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-info h3 {
    color: #172554;
    font-size: 13px;
    margin-bottom: 5px;
}

.job-info p {
    color: #64748b;
    font-size: 10px;
}

.job-meta {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.job-meta span {
    color: #64748b;
    font-size: 9px;
}

.job-meta i {
    color: #f59e0b;
    margin-right: 3px;
}

.view-job-btn {
    padding: 9px 15px;

    border-radius: 6px;

    background: #172554;
    color: #fff;

    font-size: 9px;
    font-weight: 700;
}

.view-job-btn:hover {
    background: #f59e0b;
    color: #111827;
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.location-section {
    padding: 65px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.location-card {
    background: #fff;

    border: 1px solid #e7ebf2;
    border-radius: 10px;

    padding: 20px 10px;

    text-align: center;

    transition: .3s ease;
}

.location-card:hover {
    background: #172554;
    transform: translateY(-5px);
}

.location-card i {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 9px;
}

.location-card h3 {
    color: #172554;
    font-size: 12px;
}

.location-card:hover h3 {
    color: #fff;
}


/* =========================================================
   WHY USE DIRECTORY
========================================================= */

.why-section {
    padding: 70px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    text-align: center;

    padding: 28px 18px;

    border: 1px solid #e7ebf2;
    border-radius: 12px;

    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
}

.why-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff7e6;
    color: #f59e0b;

    border-radius: 50%;

    font-size: 20px;
}

.why-card h3 {
    color: #172554;
    font-size: 14px;
    margin-bottom: 7px;
}

.why-card p {
    color: #64748b;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.register-cta {
    padding: 65px 0;
}

.register-cta-box {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #172554,
            #07111f
        );

    border-radius: 16px;

    padding: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    box-shadow: 0 15px 40px rgba(15,23,42,.15);
}

.register-cta-box::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(245,158,11,.2);

    border-radius: 50%;

    right: -130px;
    top: -120px;
}

.register-cta-content {
    position: relative;
    z-index: 2;
}

.register-cta-content span {
    color: #f59e0b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.register-cta-content h2 {
    color: #fff;

    font-size: 28px;

    margin: 8px 0;
}

.register-cta-content p {
    color: #cbd5e1;

    font-size: 11px;
    line-height: 1.6;
}

.register-cta-btn {
    position: relative;
    z-index: 3;

    flex-shrink: 0;

    padding: 13px 23px;

    background: #f59e0b;
    color: #111827;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;

    transition: .3s ease;
}

.register-cta-btn:hover {
    background: #fff;
    color: #172554;
}


/* =========================================================
   POPULAR SEARCHES
========================================================= */

.popular-links-section {
    padding: 60px 0;
    background: #f8fafc;
}

.popular-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-link {
    background: #fff;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    padding: 9px 14px;

    color: #475569;

    font-size: 10px;

    transition: .3s ease;
}

.popular-link:hover {
    color: #172554;
    border-color: #f59e0b;
}


/* =========================================================
   NCR LOCAL DIRECTORY FOOTER
========================================================== */


/* ================= MAIN FOOTER ================= */

.main-footer {

    width: 100%;

    background: #111827;

    color: #ffffff;

    font-family: Arial, sans-serif;

}


/* ================= FOOTER MAIN ================= */

.footer-main {

    padding: 65px 0 50px;

    background: #111827;

}


.footer-main .container,
.footer-contact .container,
.newsletter-section .container,
.footer-bottom .container {

    width: 92%;

    max-width: 1250px;

    margin: auto;

}


/* ================= FOOTER GRID ================= */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.15fr;

    gap: 35px;

    align-items: start;

}


/* ================= LOGO ================= */

.footer-logo {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 22px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 18px;

}


.footer-logo span:last-child {

    color: #ffd600;

}


.footer-logo-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #2e7d32;

    color: #ffffff;

    font-size: 19px;

}


/* ================= ABOUT ================= */

.footer-about {

    max-width: 310px;

    margin: 0 0 22px;

    color: #b9c0ca;

    font-size: 14px;

    line-height: 1.8;

}


/* ================= SOCIAL ================= */

.footer-social {

    display: flex;

    gap: 9px;

}


.footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;

}


.footer-social a:hover {

    background: #2e7d32;

    transform: translateY(-3px);

}


/* ================= COLUMN ================= */

.footer-column h3 {

    position: relative;

    margin: 0 0 20px;

    padding-bottom: 10px;

    font-size: 16px;

    font-weight: 700;

    color: #ffffff;

}


.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 35px;

    height: 2px;

    background: #ffd600;

}


/* ================= LINKS ================= */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 11px;

}


.footer-links a {

    color: #b9c0ca;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;

}


.footer-links a:hover {

    color: #ffd600;

    padding-left: 5px;

}


/* =========================================================
   DIRECTORY TOOLS
========================================================== */

.footer-tools {

    width: 100%;

}


.footer-tool-buttons {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-tool-buttons a {

    min-height: 36px;

    padding: 7px 10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 7px;

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    transition: all 0.3s ease;

}


.footer-tool-buttons a i {

    width: 20px;

    text-align: center;

    color: #ffd600;

    font-size: 13px;

    transition: 0.3s;

}


.footer-tool-buttons a span {

    flex: 1;

}


.footer-tool-buttons a:hover {

    background: #2e7d32;

    border-color: #2e7d32;

    transform: translateX(4px);

}


.footer-tool-buttons a:hover i {

    color: #ffffff;

    transform: scale(1.15);

}


/* ================= CONTACT ================= */

.footer-contact {

    padding: 25px 0;

    background: #172033;

    border-top: 1px solid rgba(255,255,255,0.08);

    border-bottom: 1px solid rgba(255,255,255,0.08);

}


.footer-contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.footer-contact-item {

    display: flex;

    align-items: center;

    gap: 13px;

}


.footer-contact-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #2e7d32;

    color: #ffffff;

    font-size: 16px;

}


.footer-contact-item span {

    display: block;

    margin-bottom: 4px;

    color: #8993a3;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.footer-contact-item strong,
.footer-contact-item a {

    color: #ffffff;

    font-size: 13px;

    text-decoration: none;

}


.footer-contact-item a:hover {

    color: #ffd600;

}


/* =========================================================
   NEWSLETTER
========================================================== */

.newsletter-section {

    padding: 28px 0;

    background: #0e1624;

}


.newsletter-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 30px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #1b5e20,
        #2e7d32
    );

}


.newsletter-box h3 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 19px;

}


.newsletter-box p {

    margin: 0;

    color: rgba(255,255,255,0.78);

    font-size: 13px;

}


.newsletter-form {

    display: flex;

    width: 430px;

    max-width: 100%;

}


.newsletter-form input {

    flex: 1;

    min-width: 0;

    padding: 12px 14px;

    border: none;

    outline: none;

    border-radius: 7px 0 0 7px;

    font-size: 13px;

}


.newsletter-form button {

    padding: 12px 18px;

    border: none;

    border-radius: 0 7px 7px 0;

    background: #ffd600;

    color: #111827;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;

}


.newsletter-form button:hover {

    background: #ffffff;

}


/* =========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom {

    padding: 18px 0;

    background: #0a101b;

}


.footer-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.copyright {

    margin: 0;

    color: #7f8999;

    font-size: 12px;

}


.copyright strong {

    color: #ffffff;

}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 20px;

}


.footer-bottom-links a {

    color: #8993a3;

    text-decoration: none;

    font-size: 12px;

    transition: 0.3s;

}


.footer-bottom-links a:hover {

    color: #ffd600;

}


/* =========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .footer-grid {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        row-gap: 40px;

    }

    .footer-tools {

        grid-column: span 1;

    }

}


/* =========================================================
   TABLET / MOBILE
========================================================== */

@media (max-width: 768px) {

    .footer-main {

        padding: 45px 0 35px;

    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 35px 25px;

    }


    .footer-brand {

        grid-column: span 2;

    }


    .footer-contact-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .newsletter-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .newsletter-form {

        width: 100%;

    }


    .footer-bottom-inner {

        flex-direction: column;

        text-align: center;

    }

}


/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 500px) {

    .footer-main .container,
    .footer-contact .container,
    .newsletter-section .container,
    .footer-bottom .container {

        width: 90%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .footer-brand {

        grid-column: span 1;

    }


    .footer-about {

        max-width: 100%;

    }


    .footer-tools {

        width: 100%;

    }


    .footer-contact-item {

        align-items: flex-start;

    }


    .newsletter-box {

        padding: 22px 18px;

    }


    .newsletter-form {

        flex-direction: column;

        gap: 8px;

    }


    .newsletter-form input {

        border-radius: 7px;

    }


    .newsletter-form button {

        border-radius: 7px;

    }


    .footer-bottom-links {

        flex-wrap: wrap;

        justify-content: center;

        gap: 10px 15px;

    }

}




/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

    .business-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .business-card:nth-child(5) {
        display: none;
    }

    .category-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - 991px
========================================================= */

@media (max-width: 991px) {

    .nav-menu {
        gap: 0;
    }

    .nav-menu a {
        padding: 9px 8px;
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .main-search-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-button {
        grid-column: span 2;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-slide {
        min-height: 300px;
        height: 300px;
    }

    .quick-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .business-card:nth-child(5) {
        display: block;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opportunity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .register-cta-box {
        padding: 35px;
    }
}


/* =========================================================
   RESPONSIVE - 767px
========================================================= */

@media (max-width: 767px) {

    .container,
    .directory-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-inner {
        min-height: 65px;
        padding: 0 15px;
    }

    .logo {
        font-size: 21px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;

        left: 0;
        right: 0;
        top: 65px;

        background: #07111f;

        padding: 10px 15px 18px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        border-top: 1px solid rgba(255,255,255,.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 12px;
    }

    .hero-search-section {
        padding: 50px 0 45px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .main-search-box {
        grid-template-columns: 1fr;
        padding: 8px;
    }

    .search-button {
        grid-column: auto;
    }

    .popular-searches {
        gap: 6px;
    }

    .hero-main-section {
        padding: 30px 0;
    }

    .hero-slider,
    .hero-slide {
        min-height: 240px;
        height: 240px;
    }

    .hero-slide-overlay {
        padding: 22px;
    }

    .hero-slide-overlay h2 {
        font-size: 20px;
    }

    .register-business-box {
        padding: 22px;
    }

    .quick-action-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-action-card {
        min-height: 95px;
        padding: 13px;
        gap: 10px;
    }

    .quick-action-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .quick-action-card h3 {
        font-size: 11px;
    }

    .quick-action-card p {
        font-size: 9px;
    }

    .directory-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .directory-section-heading h2 {
        font-size: 25px;
    }

    .category-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 9px;
    }

    .category-icon-card {
        min-height: 110px;
        padding: 14px 7px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .business-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .business-card {
        padding: 17px 10px 12px;
    }

    .business-logo,
    .doctor-logo {
        width: 68px;
        height: 68px;
        margin-top: 15px;
    }

    .business-card h3 {
        font-size: 12px;
    }

    .business-location {
        font-size: 9px;
    }

    .business-category {
        font-size: 8px;
    }

    .business-rating span {
        font-size: 9px;
    }

    .know-more-btn {
        font-size: 9px;
        min-height: 33px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        padding: 20px 10px;
    }

    .register-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 22px;
    }

    .register-cta-content h2 {
        font-size: 23px;
    }

    .job-card {
        grid-template-columns: 50px 1fr;
    }

    .view-job-btn {
        grid-column: 2;
        justify-self: start;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================================
   RESPONSIVE - 480px
========================================================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content .small-heading {
        font-size: 9px;
    }

    .hero-content p {
        font-size: 11px;
    }

    .category-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-icon-card h3 {
        font-size: 9px;
    }

    .business-card-grid {
        gap: 8px;
    }

    .business-card {
        border-radius: 10px;
    }

    .business-logo,
    .doctor-logo {
        width: 60px;
        height: 60px;
    }

    .business-card h3 {
        font-size: 11px;
    }

    .business-location {
        font-size: 8px;
    }

    .business-category {
        font-size: 8px;
    }

    .business-rating {
        gap: 4px;
    }

    .business-rating span {
        font-size: 8px;
    }

    .business-rating small {
        font-size: 7px;
    }

    .verified-badge {
        font-size: 7px;
        padding: 3px 5px;
    }

    .know-more-btn {
        font-size: 8px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-about p {
        max-width: 100%;
    }
}


/* =========================================================
   TEXT SELECTION
========================================================= */

::selection {
    background: #f59e0b;
    color: #111827;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #07111f;
}

::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d97706;
} 

 :root {

        --navy: #07111f;
        --blue: #172554;

        --gold: #f59e0b;
        --gold-light: #fbbf24;

        --white: #ffffff;

        --page-bg: #f7f9fc;

        --text: #172033;
        --muted: #64748b;

        --border: #e5eaf1;

    }


    /* =====================================================
       RESET
    ====================================================== */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    html {
        scroll-behavior: smooth;
    }


    body {

        font-family: "Inter", sans-serif;

        color: var(--text);

        background-color: var(--page-bg);

        /*
           Premium subtle texture
        */

        background-image:

            radial-gradient(
                rgba(23, 37, 84, 0.055) 1px,
                transparent 1px
            );

        background-size: 22px 22px;

        overflow-x: hidden;

    }


    img {
        max-width: 100%;
        display: block;
    }


    a {
        text-decoration: none;
    }


    button,
    select,
    input {
        font-family: inherit;
    }


    /* =====================================================
       COMMON CONTAINER
    ====================================================== */

    .container {

        width: 100%;

        max-width: 1400px;

        margin: auto;

        padding-left: 25px;
        padding-right: 25px;

    }


    /* =====================================================
       NAVBAR
    ====================================================== */

    .main-navbar {

        position: sticky;

        top: 0;

        z-index: 9999;

        width: 100%;

        background: rgba(7, 17, 31, 0.97);

        border-bottom: 1px solid rgba(255,255,255,.08);

        box-shadow:
            0 5px 25px rgba(0,0,0,.15);

        backdrop-filter: blur(10px);

    }


    .navbar-inner {

        max-width: 1450px;

        margin: auto;

        padding: 0 25px;

        min-height: 72px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 25px;

    }


    /* Logo */

    .brand-logo {

        display: flex;

        align-items: center;

        gap: 10px;

        color: #fff;

        font-size: 21px;

        font-weight: 800;

        white-space: nowrap;

    }


    .brand-logo-icon {

        width: 38px;
        height: 38px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: var(--gold);

        color: var(--navy);

        border-radius: 9px;

        font-size: 18px;

        box-shadow:
            0 5px 15px rgba(245,158,11,.2);

    }


    .brand-logo span {

        color: var(--gold);

    }


    /* Navigation */

    .navbar-menu {

        display: flex;

        align-items: center;

        gap: 5px;

        list-style: none;

    }


    .navbar-menu a {

        display: flex;

        align-items: center;

        gap: 7px;

        padding: 10px 13px;

        color: rgba(255,255,255,.78);

        font-size: 11px;

        font-weight: 600;

        border-radius: 6px;

        transition: .3s ease;

    }


    .navbar-menu a i {

        color: var(--gold);

        font-size: 11px;

    }


    .navbar-menu a:hover {

        color: #fff;

        background: rgba(255,255,255,.07);

    }


    .navbar-business-btn {

        background: var(--gold) !important;

        color: #111827 !important;

        font-weight: 800 !important;

    }


    .navbar-business-btn i {

        color: #111827 !important;

    }


    /* Mobile Menu Button */

    .mobile-menu-btn {

        display: none;

        width: 42px;
        height: 42px;

        border: 1px solid rgba(255,255,255,.12);

        border-radius: 8px;

        background: transparent;

        color: #fff;

        font-size: 18px;

        cursor: pointer;

    }


    /* =====================================================
       HERO
    ====================================================== */

    .directory-hero {

        position: relative;

        min-height: 545px;

        display: flex;

        align-items: center;

        overflow: hidden;

        background:

            linear-gradient(
                135deg,
                #07111f 0%,
                #101d35 50%,
                #172554 100%
            );

    }


    .directory-hero::before {

        content: "";

        position: absolute;

        inset: 0;

        background:

            radial-gradient(
                circle at 12% 20%,
                rgba(245,158,11,.12),
                transparent 28%
            ),

            radial-gradient(
                circle at 90% 80%,
                rgba(255,255,255,.05),
                transparent 30%
            ),

            linear-gradient(
                120deg,
                transparent 40%,
                rgba(255,255,255,.025) 50%,
                transparent 60%
            );

    }


    .directory-hero::after {

        content: "";

        position: absolute;

        width: 500px;
        height: 500px;

        right: -220px;
        top: -220px;

        border-radius: 50%;

        border: 1px solid rgba(245,158,11,.08);

        box-shadow:
            0 0 0 70px rgba(245,158,11,.025),
            0 0 0 140px rgba(245,158,11,.015);

    }


    .hero-content {

        position: relative;

        z-index: 2;

        width: 100%;

        max-width: 1200px;

        margin: auto;

        padding: 75px 25px;

        text-align: center;

    }


    /* USP */

    .hero-usp {

        display: flex;

        justify-content: center;
        align-items: center;

        gap: 12px;

        margin-bottom: 15px;

        color: var(--gold-light);

        font-size: 11px;

        font-weight: 800;

        letter-spacing: 2px;

        text-transform: uppercase;

    }


    .usp-line {

        width: 38px;

        height: 1px;

        background: var(--gold);

    }


    /* Heading */

    .hero-title {

        color: #fff;

        font-size: clamp(35px,5vw,61px);

        line-height: 1.08;

        font-weight: 500;

        letter-spacing: -2px;

        text-shadow:

            0 3px 8px rgba(0,0,0,.45),

            0 12px 28px rgba(0,0,0,.25);

    }


    .hero-title strong {

        color: var(--gold);

        font-weight: 800;

        text-shadow:
            0 4px 12px rgba(245,158,11,.2);

    }


    .hero-description {

        max-width: 700px;

        margin: 18px auto 30px;

        color: rgba(255,255,255,.72);

        font-size: 13px;

        line-height: 1.8;

    }


    /* =====================================================
       SEARCH
    ====================================================== */

    .hero-search-box {

        width: 100%;

        display: grid;

        grid-template-columns:
            1fr 1fr 1fr 1fr 125px;

        gap: 0;

        padding: 8px;

        background: #fff;

        border-radius: 13px;

        box-shadow:

            0 20px 55px rgba(0,0,0,.28),

            0 5px 15px rgba(0,0,0,.12);

    }


    .search-field {

        display: flex;

        align-items: center;

        gap: 11px;

        min-width: 0;

        padding: 12px 15px;

        background: #fff;

        border-right: 1px solid #e7ebf1;

    }


    .search-field > i {

        flex-shrink: 0;

        color: var(--gold);

        font-size: 17px;

    }


    .search-field-content {

        min-width: 0;

        flex: 1;

        text-align: left;

    }


    .search-field-content label {

        display: block;

        margin-bottom: 4px;

        color: #94a3b8;

        font-size: 8px;

        font-weight: 800;

        letter-spacing: .8px;

        text-transform: uppercase;

    }


    .search-field-content select {

        width: 100%;

        border: none;

        outline: none;

        background: transparent;

        color: var(--blue);

        font-size: 11px;

        font-weight: 700;

        cursor: pointer;

    }


    .near-you {

        cursor: pointer;

        transition: .3s ease;

    }


    .near-you:hover {

        background: #fffaf0;

    }


    .near-you span {

        display: block;

        color: var(--blue);

        font-size: 11px;

        font-weight: 700;

    }


    .near-arrow {

        color: #94a3b8 !important;

        font-size: 9px !important;

    }


    .search-button {

        border: none;

        border-radius: 9px;

        background: var(--gold);

        color: #111827;

        font-size: 11px;

        font-weight: 800;

        cursor: pointer;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 7px;

        transition: .3s ease;

    }


    .search-button:hover {

        background: var(--gold-light);

        box-shadow:
            0 8px 20px rgba(245,158,11,.3);

    }


    /* Popular */

    .popular-search {

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: wrap;

        gap: 7px;

        margin-top: 18px;

    }


    .popular-search span {

        color: rgba(255,255,255,.5);

        font-size: 9px;

    }


    .popular-search a {

        padding: 5px 10px;

        color: rgba(255,255,255,.72);

        border: 1px solid rgba(255,255,255,.13);

        border-radius: 20px;

        font-size: 9px;

        transition: .3s ease;

    }


    .popular-search a:hover {

        color: #111827;

        background: var(--gold);

        border-color: var(--gold);

    }


    /* =====================================================
       SECTION HEADING
    ====================================================== */

    .section-heading {

        margin-bottom: 28px;

    }


    .section-heading > span {

        display: block;

        margin-bottom: 7px;

        color: var(--gold);

        font-size: 10px;

        font-weight: 800;

        letter-spacing: 1.7px;

        text-transform: uppercase;

    }


    .section-heading h2 {

        margin: 0;

        color: var(--text);

        font-size: 30px;

        line-height: 1.2;

        font-weight: 500;

        text-shadow:
            0 2px 5px rgba(15,23,42,.13);

    }


    .section-heading h2 strong {

        color: var(--blue);

        font-weight: 800;

    }


    .section-heading p {

        max-width: 680px;

        margin-top: 9px;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.7;

    }


    /* =====================================================
       QUICK ACTIONS
    ====================================================== */

    .quick-section {

        padding: 65px 0;

        background: rgba(255,255,255,.6);

    }


    .quick-grid {

        display: grid;

        grid-template-columns:
            repeat(4,1fr);

        gap: 18px;

    }


    .quick-card {

        position: relative;

        display: flex;

        align-items: center;

        gap: 14px;

        min-height: 125px;

        padding: 20px;

        background: #fff;

        border: 1px solid var(--border);

        border-radius: 14px;

        overflow: hidden;

        box-shadow:
            0 5px 20px rgba(15,23,42,.05);

        transition: .35s ease;

    }


    .quick-card:hover {

        transform: translateY(-6px);

        border-color: var(--gold);

        box-shadow:
            0 15px 35px rgba(15,23,42,.1);

    }


    .quick-icon {

        flex-shrink: 0;

        width: 53px;
        height: 53px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 12px;

        background: #fff8e8;

        color: var(--gold);

        font-size: 20px;

    }


    .quick-card h3 {

        margin-bottom: 5px;

        color: var(--blue);

        font-size: 13px;

        font-weight: 800;

    }


    .quick-card p {

        color: var(--muted);

        font-size: 10px;

        line-height: 1.55;

    }


    .quick-arrow {

        position: absolute;

        right: 15px;
        bottom: 15px;

        color: #cbd5e1;

        font-size: 9px;

    }


    .quick-card:hover .quick-arrow {

        color: var(--gold);

    }


    /* =====================================================
       CATEGORY ICONS
    ====================================================== */

    .categories-section {

        padding: 70px 0;

        background: rgba(247,249,252,.9);

    }


    .category-grid {

        display: grid;

        grid-template-columns:
            repeat(6,1fr);

        gap: 15px;

    }


    .category-card {

        min-height: 145px;

        padding: 20px 10px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        background: #fff;

        border: 1px solid var(--border);

        border-radius: 13px;

        box-shadow:
            0 4px 18px rgba(15,23,42,.04);

        transition: .35s ease;

    }


    .category-card:hover {

        transform: translateY(-6px);

        border-color: var(--gold);

        box-shadow:
            0 15px 30px rgba(15,23,42,.09);

    }


    .category-icon {

        width: 52px;
        height: 52px;

        margin-bottom: 13px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: #f0f3f9;

        color: var(--blue);

        font-size: 18px;

        transition: .35s ease;

    }


    .category-card:hover .category-icon {

        background: var(--gold);

        color: #111827;

        transform: scale(1.08);

    }


    .category-card h3 {

        margin-bottom: 5px;

        color: var(--blue);

        font-size: 11px;

        font-weight: 800;

    }


    .category-card span {

        color: #94a3b8;

        font-size: 8px;

    }


    /* =====================================================
       FEATURED
    ====================================================== */

    .featured-section {

        padding: 70px 0;

        background: #fff;

    }


    .featured-heading {

        display: flex;

        align-items: flex-end;

        justify-content: space-between;

        gap: 20px;

    }


    .view-all {

        color: var(--blue);

        font-size: 10px;

        font-weight: 800;

        border-bottom: 2px solid var(--gold);

        padding-bottom: 5px;

    }


    .featured-grid {

        display: grid;

        grid-template-columns:
            repeat(4,1fr);

        gap: 18px;

    }


    .featured-card {

        position: relative;

        padding: 20px;

        background: #fff;

        border: 1px solid var(--border);

        border-radius: 14px;

        box-shadow:
            0 5px 20px rgba(15,23,42,.05);

        transition: .35s ease;

    }


    .featured-card:hover {

        transform: translateY(-6px);

        border-color: var(--gold);

        box-shadow:
            0 15px 35px rgba(15,23,42,.1);

    }


    .verified {

        position: absolute;

        top: 12px;
        left: 12px;

        padding: 4px 8px;

        border-radius: 20px;

        background: #ecfdf5;

        color: #15803d;

        font-size: 8px;

        font-weight: 800;

    }


    .featured-logo {

        width: 78px;
        height: 78px;

        margin: 20px auto 15px;

        padding: 10px;

        display: flex;

        align-items: center;
        justify-content: center;

        border: 1px solid #edf0f4;

        border-radius: 12px;

    }


    .featured-logo img {

        width: 100%;
        height: 100%;

        object-fit: contain;

    }


    .doctor-logo {

        padding: 0;

        overflow: hidden;

        border-radius: 50%;

    }


    .doctor-logo img {

        object-fit: cover;

    }


    .featured-card h3 {

        margin-bottom: 9px;

        color: var(--blue);

        text-align: center;

        font-size: 14px;

        font-weight: 800;

    }


    .business-info {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 5px;

        margin-bottom: 7px;

        color: var(--muted);

        font-size: 9px;

    }


    .business-info i {

        color: var(--gold);

    }


    .business-bottom {

        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-top: 14px;

        padding-top: 12px;

        border-top: 1px solid #edf0f4;

    }


    .rating {

        color: var(--gold);

        font-size: 10px;

        font-weight: 800;

    }


    .know-btn {

        color: var(--blue);

        font-size: 9px;

        font-weight: 800;

    }


    .know-btn:hover {

        color: var(--gold);

    }


    /* =====================================================
       12 BUSINESS DIRECTORY SECTIONS
    ====================================================== */

    .directory-section {

        padding: 65px 0;

        background: rgba(247,249,252,.88);

    }


    .directory-section:nth-child(even) {

        background: #fff;

    }


    .directory-heading {

        display: flex;

        align-items: flex-end;

        justify-content: space-between;

        gap: 20px;

        margin-bottom: 25px;

    }


    .directory-heading span {

        display: block;

        margin-bottom: 6px;

        color: var(--gold);

        font-size: 10px;

        font-weight: 800;

        letter-spacing: 1.5px;

        text-transform: uppercase;

    }


    .directory-heading h2 {

        margin: 0;

        color: var(--text);

        font-size: 28px;

        font-weight: 500;

        text-shadow:
            0 2px 5px rgba(15,23,42,.12);

    }


    .directory-heading h2 strong {

        color: var(--blue);

        font-weight: 800;

    }


    .directory-heading a {

        color: var(--blue);

        font-size: 10px;

        font-weight: 800;

        padding-bottom: 5px;

        border-bottom: 2px solid var(--gold);

    }


    /* Business Grid */

    .business-grid {

        display: grid;

        grid-template-columns:
            repeat(5,1fr);

        gap: 18px;

    }


    /* Business Card */

    .business-card {

        position: relative;

        padding: 20px 16px 17px;

        background: #fff;

        border: 1px solid var(--border);

        border-radius: 14px;

        text-align: center;

        overflow: hidden;

        box-shadow:
            0 5px 20px rgba(15,23,42,.05);

        transition: all .35s ease;

    }


    .business-card:hover {

        transform: translateY(-7px);

        border-color: var(--gold);

        box-shadow:
            0 15px 35px rgba(15,23,42,.11);

    }


    .business-verified {

        position: absolute;

        top: 11px;
        right: 11px;

        color: #16a34a;

        font-size: 9px;

    }


    .business-logo {

        width: 80px;
        height: 80px;

        margin: 18px auto 14px;

        padding: 10px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #fff;

        border: 1px solid #edf0f4;

        border-radius: 12px;

    }


    .business-logo img {

        width: 100%;
        height: 100%;

        object-fit: contain;

    }


    .business-doctor-logo {

        padding: 0;

        overflow: hidden;

        border-radius: 50%;

        border: 3px solid #f3f4f6;

    }


    .business-doctor-logo img {

        object-fit: cover;

    }


    .business-card h3 {

        margin-bottom: 9px;

        color: var(--blue);

        font-size: 14px;

        font-weight: 800;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;

    }


    .business-location {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 5px;

        margin-bottom: 7px;

        color: var(--muted);

        font-size: 9px;

    }


    .business-location i {

        color: var(--gold);

    }


    .business-category {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 5px;

        margin-bottom: 11px;

        color: #475569;

        font-size: 9px;

    }


    .business-category i {

        color: var(--blue);

    }


    .business-rating {

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 7px;

        margin-bottom: 14px;

    }


    .business-rating span {

        color: var(--gold);

        font-size: 10px;

        font-weight: 800;

    }


    .business-rating small {

        color: #94a3b8;

        font-size: 8px;

    }


    .know-more {

        width: 100%;

        min-height: 35px;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 6px;

        border-radius: 7px;

        background: var(--blue);

        color: #fff;

        font-size: 9px;

        font-weight: 800;

        transition: .3s ease;

    }


    .know-more:hover {

        background: var(--gold);

        color: #111827;

    }


    /* =====================================================
       REGISTER CTA
    ====================================================== */

    .register-cta {

        position: relative;

        padding: 70px 0;

        background:

            linear-gradient(
                135deg,
                #07111f,
                #172554
            );

        overflow: hidden;

    }


    .register-cta::before {

        content: "";

        position: absolute;

        inset: 0;

        background-image:
            radial-gradient(
                rgba(255,255,255,.04) 1px,
                transparent 1px
            );

        background-size: 20px 20px;

    }


    .cta-content {

        position: relative;

        z-index: 2;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 30px;

    }


    .cta-content span {

        color: var(--gold);

        font-size: 10px;

        font-weight: 800;

        letter-spacing: 1.7px;

    }


    .cta-content h2 {

        margin-top: 8px;

        color: #fff;

        font-size: 30px;

        font-weight: 600;

        text-shadow:
            0 3px 10px rgba(0,0,0,.3);

    }


    .cta-content p {

        max-width: 650px;

        margin-top: 10px;

        color: rgba(255,255,255,.65);

        font-size: 11px;

        line-height: 1.7;

    }


    .cta-button {

        flex-shrink: 0;

        padding: 13px 22px;

        background: var(--gold);

        color: #111827;

        border-radius: 7px;

        font-size: 10px;

        font-weight: 800;

        transition: .3s ease;

    }


    .cta-button:hover {

        background: var(--gold-light);

        transform: translateY(-2px);

    }


    /* =====================================================
       FOOTER
    ====================================================== */

    .main-footer {

        background: #050c16;

        color: #fff;

    }


    .footer-main {

        padding: 65px 0 45px;

    }


    .footer-grid {

        display: grid;

        grid-template-columns:
            1.5fr 1fr 1fr 1fr;

        gap: 45px;

    }


    .footer-brand {

        max-width: 350px;

    }


    .footer-logo {

        display: flex;

        align-items: center;

        gap: 10px;

        margin-bottom: 17px;

        color: #fff;

        font-size: 21px;

        font-weight: 800;

    }


    .footer-logo-icon {

        width: 37px;
        height: 37px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: var(--gold);

        color: var(--navy);

        border-radius: 8px;

    }


    .footer-logo span {

        color: var(--gold);

    }


    .footer-about {

        color: #94a3b8;

        font-size: 10px;

        line-height: 1.8;

    }


    .footer-social {

        display: flex;

        gap: 7px;

        margin-top: 18px;

    }


    .footer-social a {

        width: 31px;
        height: 31px;

        display: flex;

        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255,255,255,.1);

        border-radius: 6px;

        color: #94a3b8;

        font-size: 11px;

        transition: .3s ease;

    }


    .footer-social a:hover {

        color: #111827;

        background: var(--gold);

        border-color: var(--gold);

    }


    .footer-column h3 {

        margin-bottom: 17px;

        color: #fff;

        font-size: 12px;

        font-weight: 800;

    }


    .footer-column h3::after {

        content: "";

        display: block;

        width: 28px;

        height: 2px;

        margin-top: 7px;

        background: var(--gold);

    }


    .footer-links {

        list-style: none;

    }


    .footer-links li {

        margin-bottom: 9px;

    }


    .footer-links a {

        color: #94a3b8;

        font-size: 10px;

        transition: .3s ease;

    }


    .footer-links a:hover {

        color: var(--gold);

        padding-left: 3px;

    }


    /* Footer Contact */

    .footer-contact {

        border-top: 1px solid rgba(255,255,255,.07);

        border-bottom: 1px solid rgba(255,255,255,.07);

        padding: 22px 0;

    }


    .footer-contact-grid {

        display: grid;

        grid-template-columns:
            repeat(3,1fr);

        gap: 20px;

    }


    .footer-contact-item {

        display: flex;

        align-items: center;

        gap: 12px;

    }


    .footer-contact-icon {

        width: 38px;
        height: 38px;

        flex-shrink: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 8px;

        background: rgba(245,158,11,.1);

        color: var(--gold);

        font-size: 13px;

    }


    .footer-contact-item span {

        display: block;

        margin-bottom: 3px;

        color: #64748b;

        font-size: 8px;

        text-transform: uppercase;

        letter-spacing: .8px;

    }


    .footer-contact-item a,
    .footer-contact-item strong {

        color: #fff;

        font-size: 10px;

        font-weight: 600;

    }


    /* Newsletter */

    .newsletter-section {

        padding: 28px 0;

        border-bottom: 1px solid rgba(255,255,255,.07);

    }


    .newsletter-box {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

    }


    .newsletter-box h3 {

        color: #fff;

        font-size: 15px;

    }


    .newsletter-box p {

        margin-top: 5px;

        color: #64748b;

        font-size: 9px;

    }


    .newsletter-form {

        display: flex;

        width: 360px;

        max-width: 100%;

    }


    .newsletter-form input {

        width: 100%;

        padding: 11px 13px;

        border: 1px solid rgba(255,255,255,.1);

        outline: none;

        background: #0b1523;

        color: #fff;

        border-radius: 6px 0 0 6px;

        font-size: 9px;

    }


    .newsletter-form button {

        padding: 0 17px;

        border: none;

        background: var(--gold);

        color: #111827;

        border-radius: 0 6px 6px 0;

        cursor: pointer;

        font-size: 10px;

        font-weight: 800;

    }


    /* Copyright */

    .footer-bottom {

        padding: 18px 0;

    }


    .footer-bottom-inner {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;

    }


    .copyright {

        color: #64748b;

        font-size: 9px;

    }


    .footer-bottom-links {

        display: flex;

        gap: 18px;

    }


    .footer-bottom-links a {

        color: #64748b;

        font-size: 9px;

    }


    .footer-bottom-links a:hover {

        color: var(--gold);

    }


    /* =====================================================
       RESPONSIVE 1200
    ====================================================== */

    @media (max-width:1200px) {

        .business-grid {

            grid-template-columns:
                repeat(4,1fr);

        }


        .business-card:nth-child(5) {

            display: none;

        }


        .category-grid {

            grid-template-columns:
                repeat(4,1fr);

        }

    }


    /* =====================================================
       RESPONSIVE 991
    ====================================================== */

    @media (max-width:991px) {

        .navbar-menu {

            display: none;

            position: absolute;

            top: 72px;

            left: 0;
            right: 0;

            padding: 12px 20px 20px;

            flex-direction: column;

            align-items: stretch;

            background: #07111f;

            border-top: 1px solid rgba(255,255,255,.08);

        }


        .navbar-menu.active {

            display: flex;

        }


        .navbar-menu a {

            padding: 12px;

        }


        .mobile-menu-btn {

            display: block;

        }


        .hero-search-box {

            grid-template-columns:
                repeat(2,1fr);

        }


        .search-button {

            min-height: 55px;

        }


        .quick-grid {

            grid-template-columns:
                repeat(2,1fr);

        }


        .featured-grid {

            grid-template-columns:
                repeat(2,1fr);

        }


        .business-grid {

            grid-template-columns:
                repeat(3,1fr);

        }


        .business-card:nth-child(5) {

            display: block;

        }


        .footer-grid {

            grid-template-columns:
                repeat(2,1fr);

        }


        .footer-contact-grid {

            grid-template-columns:
                repeat(2,1fr);

        }

    }


    /* =====================================================
       RESPONSIVE 767
    ====================================================== */

    @media (max-width:767px) {

        .container {

            padding-left: 15px;
            padding-right: 15px;

        }


        .navbar-inner {

            padding: 0 15px;

        }


        .brand-logo {

            font-size: 18px;

        }


        .brand-logo-icon {

            width: 34px;
            height: 34px;

        }


        .directory-hero {

            min-height: auto;

        }


        .hero-content {

            padding:
                55px 15px 45px;

        }


        .hero-usp {

            font-size: 8px;

            letter-spacing: 1.2px;

        }


        .usp-line {

            width: 22px;

        }


        .hero-title {

            font-size: 34px;

            letter-spacing: -1px;

        }


        .hero-description {

            font-size: 11px;

            margin-top: 14px;

        }


        .hero-search-box {

            grid-template-columns: 1fr;

            padding: 6px;

        }


        .search-field {

            min-height: 57px;

            border-right: none;

            border-bottom: 1px solid #e7ebf1;

        }


        .search-button {

            min-height: 50px;

        }


        .quick-section,
        .categories-section,
        .featured-section,
        .directory-section {

            padding: 50px 0;

        }


        .section-heading h2,
        .directory-heading h2 {

            font-size: 24px;

        }


        .quick-grid {

            grid-template-columns: 1fr;

            gap: 12px;

        }


        .category-grid {

            grid-template-columns:
                repeat(2,1fr);

            gap: 10px;

        }


        .category-card {

            min-height: 125px;

        }


        .featured-grid {

            grid-template-columns:
                repeat(2,1fr);

            gap: 10px;

        }


        .featured-heading,
        .directory-heading {

            display: block;

        }


        .view-all,
        .directory-heading a {

            display: inline-block;

            margin-top: 13px;

        }


        .business-grid {

            grid-template-columns:
                repeat(2,1fr);

            gap: 10px;

        }


        .business-card {

            padding: 13px 10px 12px;

        }


        .business-logo {

            width: 65px;
            height: 65px;

        }


        .business-card h3 {

            font-size: 11px;

        }


        .business-location,
        .business-category {

            font-size: 8px;

        }


        .business-rating span {

            font-size: 9px;

        }


        .know-more {

            min-height: 32px;

            font-size: 8px;

        }


        .cta-content {

            display: block;

        }


        .cta-content h2 {

            font-size: 25px;

        }


        .cta-button {

            display: inline-block;

            margin-top: 20px;

        }


        .footer-grid {

            grid-template-columns:
                1fr 1fr;

            gap: 35px 20px;

        }


        .footer-contact-grid {

            grid-template-columns: 1fr;

        }


        .newsletter-box {

            display: block;

        }


        .newsletter-form {

            margin-top: 15px;

            width: 100%;

        }


        .footer-bottom-inner {

            display: block;

            text-align: center;

        }


        .footer-bottom-links {

            justify-content: center;

            margin-top: 10px;

        }

    }


    /* =====================================================
       RESPONSIVE 480
    ====================================================== */

    @media (max-width:480px) {

        .hero-title {

            font-size: 29px;

        }


        .popular-search a {

            font-size: 8px;

            padding: 5px 8px;

        }


        .category-card {

            min-height: 115px;

        }


        .category-icon {

            width: 44px;
            height: 44px;

            font-size: 16px;

        }


        .category-card h3 {

            font-size: 9px;

        }


        .featured-card {

            padding: 12px 9px;

        }


        .featured-logo {

            width: 62px;
            height: 62px;

        }


        .featured-card h3 {

            font-size: 10px;

        }


        .business-grid {

            gap: 8px;

        }


        .directory-heading h2 {

            font-size: 22px;

        }


        .footer-grid {

            grid-template-columns: 1fr;

        }

    }

    </style>

    /* =========================================
   5IN1 DIRECTORY MAIN SECTION
========================================= */

.directory-main-section {
    width: 100%;
    padding: 50px 20px;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.04), transparent 30%),
        #f3f5f7;
}


/* Main Container */

.directory-main-container {
    width: 100%;
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 25px;

    align-items: stretch;
}


/* =========================================
   LEFT SLIDER
========================================= */

.directory-slider-box {
    width: 100%;
    min-height: 430px;

    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0,0,0,0.12);

    background: #fff;
}


.directory-slider {
    width: 100%;
    height: 100%;
    min-height: 430px;

    position: relative;
    overflow: hidden;
}


/* Slides */

.directory-slide {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 1s ease;

    transform: scale(1.04);
}


.directory-slide.active {
    opacity: 1;
    transform: scale(1);
}


.directory-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   SLIDER DOTS
========================================= */

.directory-dots {
    position: absolute;

    bottom: 18px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 10;
}


.directory-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,0.6);

    cursor: pointer;

    transition: 0.3s;
}


.directory-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #2e7d32;
}


/* =========================================
   RIGHT REGISTER BOX
========================================= */

.directory-register-box {
    width: 100%;

    padding: 30px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid #e1e5e8;

    box-shadow: 0 12px 35px rgba(0,0,0,0.10);

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Heading */

.register-heading {
    margin-bottom: 18px;
}


.register-heading span {
    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #2e7d32;

    margin-bottom: 5px;
}


.register-heading h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.2;

    color: #222;

    text-shadow: 2px 2px 5px rgba(0,0,0,0.10);
}


.register-heading h2 strong {
    color: #2e7d32;
}


.register-heading p {
    margin: 8px 0 0;

    color: #777;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================================
   FORM
========================================= */

.directory-form {
    width: 100%;
}


.directory-input {
    width: 100%;
    margin-bottom: 12px;
}


.directory-input input,
.directory-input select,
.directory-input textarea {

    width: 100%;

    border: 1px solid #dfe3e6;

    background: #f8f9fa;

    border-radius: 8px;

    padding: 11px 13px;

    font-size: 14px;

    outline: none;

    transition: 0.3s;

    box-sizing: border-box;
}


.directory-input input:focus,
.directory-input select:focus,
.directory-input textarea:focus {

    background: #fff;

    border-color: #2e7d32;

    box-shadow: 0 0 0 3px rgba(46,125,50,0.08);
}


.directory-input textarea {
    resize: none;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.directory-submit {

    width: 100%;

    border: none;

    padding: 13px 18px;

    border-radius: 8px;

    background: #2e7d32;

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.directory-submit span {
    font-size: 20px;

    transition: 0.3s;
}


.directory-submit:hover {

    background: #1b5e20;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(46,125,50,0.25);
}


.directory-submit:hover span {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .directory-main-container {
        grid-template-columns: 1fr;
    }

    .directory-slider-box,
    .directory-slider {
        min-height: 350px;
    }

    .directory-register-box {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .directory-main-section {
        padding: 30px 12px;
    }

    .directory-main-container {
        gap: 18px;
    }

    .directory-slider-box,
    .directory-slider {
        min-height: 230px;
    }

    .directory-register-box {
        padding: 22px 18px;
    }

    .register-heading h2 {
        font-size: 23px;
    }

    .register-heading p {
        font-size: 13px;
    }

}

/* =========================================
   FIXED RIGHT SIDE - NCR DIRECTORY APP
========================================= */

.ncr-app-download {

    position: fixed;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 58px;

    padding: 12px 7px;

    background: #2e7d32;

    color: #ffffff;

    text-decoration: none;

    border-radius: 12px 0 0 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    z-index: 99999;

    box-shadow:
        -4px 5px 18px rgba(0,0,0,0.20);

    transition: all 0.35s ease;
}


/* Download Icon */

.ncr-download-icon {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #ffffff;

    color: #2e7d32;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    font-weight: 900;

    line-height: 1;

    box-shadow: 0 3px 10px rgba(0,0,0,0.15);

    transition: 0.3s;
}


/* Text */

.ncr-download-text {

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.8px;

    line-height: 1.35;

    color: #ffffff;
}


.ncr-download-text strong {

    font-size: 12px;

    letter-spacing: 1px;

    color: #ffd600;
}


/* Hover */

.ncr-app-download:hover {

    width: 72px;

    background: #1b5e20;

    color: #ffffff;

    box-shadow:
        -6px 8px 25px rgba(0,0,0,0.28);
}


.ncr-app-download:hover .ncr-download-icon {

    transform: translateY(3px);

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .ncr-app-download {

        width: 52px;

        padding: 10px 6px;

        border-radius: 10px 0 0 10px;

        gap: 6px;
    }


    .ncr-download-icon {

        width: 30px;
        height: 30px;

        font-size: 22px;
    }


    .ncr-download-text {

        font-size: 7px;

        letter-spacing: 0.5px;
    }


    .ncr-download-text strong {

        font-size: 10px;
    }

}


/* =========================================================
   MOST POPULAR IN CITY
========================================================== */

.popular-city-section {

    width: 100%;

    padding: 65px 20px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(46,125,50,0.07),
            transparent 30%
        ),
        #f5f7f6;

    box-sizing: border-box;
}


.popular-city-container {

    width: 100%;

    max-width: 1400px;

    margin: auto;

}


/* =========================================================
   SECTION HEADING
========================================================== */

.popular-city-heading {

    text-align: center;

    margin-bottom: 35px;

}


.popular-city-heading span {

    display: inline-block;

    margin-bottom: 7px;

    color: #2e7d32;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.popular-city-heading h2 {

    margin: 0;

    color: #18201b;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.2;

    text-shadow:
        2px 2px 5px rgba(0,0,0,0.10);

}


.popular-city-heading h2 strong {

    color: #2e7d32;

}


.popular-city-heading p {

    margin: 9px 0 0;

    color: #727a75;

    font-size: 14px;

}


/* =========================================================
   7 CARDS IN ONE ROW
========================================================== */

.popular-city-grid {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 14px;

}


/* =========================================================
   CARD
========================================================== */

.popular-city-card {

    position: relative;

    width: 100%;

    height: 320px;

    overflow: hidden;

    border-radius: 14px;

    background: #ffffff;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(0,0,0,0.10);

    border: 2px solid rgba(46,125,50,0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


/* IMAGE */

.popular-city-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.5s ease;

}


/* =========================================================
   DARK GRADIENT
========================================================== */

.popular-card-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 15px;

    box-sizing: border-box;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.45) 38%,
            rgba(0,0,0,0.02) 72%
        );

    transition:
        background 0.4s ease;

}


/* =========================================================
   CARD CONTENT
========================================================== */

.popular-card-content {

    width: 100%;

    transform:
        translateY(28px);

    transition:
        transform 0.4s ease;

}


.popular-category {

    display: inline-block;

    margin-bottom: 5px;

    padding: 4px 8px;

    border-radius: 20px;

    background: #2e7d32;

    color: #ffffff;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

}


.popular-card-content h3 {

    margin: 3px 0 2px;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.2;

}


.popular-card-content p {

    margin: 0 0 10px;

    color: rgba(255,255,255,0.75);

    font-size: 11px;

}


/* =========================================================
   VIEW MORE BUTTON
========================================================== */

.popular-card-content a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 6px;

    background: #ffd600;

    color: #18201b;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease;

}


.popular-card-content a i {

    font-size: 9px;

    transition: 0.3s;

}


/* =========================================================
   HOVER EFFECT
========================================================== */

.popular-city-card:hover {

    transform:
        translateY(-8px);

    border-color: #2e7d32;

    box-shadow:
        0 18px 35px rgba(0,0,0,0.18);

}


.popular-city-card:hover img {

    transform:
        scale(1.10);

    filter:
        brightness(0.72);

}


.popular-city-card:hover .popular-card-overlay {

    background:
        linear-gradient(
            to top,
            rgba(20,60,25,0.95) 0%,
            rgba(0,0,0,0.48) 55%,
            rgba(0,0,0,0.08) 100%
        );

}


.popular-city-card:hover .popular-card-content {

    transform:
        translateY(0);

}


.popular-city-card:hover .popular-card-content a {

    opacity: 1;

    transform:
        translateY(0);

}


.popular-card-content a:hover {

    background: #ffffff;

}


.popular-card-content a:hover i {

    transform:
        translateX(4px);

}


/* =========================================================
   TABLET
========================================================== */

@media (max-width: 1200px) {

    .popular-city-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }

}


/* =========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 850px) {

    .popular-city-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .popular-city-card {

        height: 300px;

    }

}


/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .popular-city-section {

        padding: 45px 15px;

    }


    .popular-city-heading h2 {

        font-size: 26px;

    }


    .popular-city-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .popular-city-card {

        height: 280px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 380px) {

    .popular-city-grid {

        grid-template-columns: 1fr;

    }


    .popular-city-card {

        height: 330px;

    }

}


/* =========================================================
   EXPLORE GHAZIABAD
========================================================== */

.explore-ghaziabad-section {

    width: 100%;

    padding: 55px 20px;

    background: #f6f8f7;

    box-sizing: border-box;

}


.explore-ghaziabad-container {

    width: 100%;

    max-width: 1250px;

    margin: auto;

}


/* =========================================================
   HEADING
========================================================== */

.explore-heading {

    text-align: center;

    margin-bottom: 25px;

}


.explore-heading span {

    display: block;

    margin-bottom: 5px;

    color: #2e7d32;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.explore-heading h2 {

    margin: 0;

    color: #1b1f1c;

    font-size: 30px;

    font-weight: 800;

    text-shadow:
        2px 2px 5px rgba(0,0,0,0.10);

}


.explore-heading h2 strong {

    color: #2e7d32;

}


/* =========================================================
   MAIN YELLOW BORDER
========================================================== */

.explore-ghaziabad-box {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    padding: 15px;

    border: 2px solid #ffd600;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

}


/* =========================================================
   PLACE CARD
========================================================== */

.explore-place-card {

    min-width: 0;

    height: 105px;

    display: flex;

    align-items: center;

    overflow: hidden;

    position: relative;

    text-decoration: none;

    background: #f7f9f8;

    border: 1px solid #e1e6e3;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


/* =========================================================
   IMAGE
========================================================== */

.explore-place-image {

    width: 105px;

    height: 105px;

    flex-shrink: 0;

    overflow: hidden;

}


.explore-place-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


/* =========================================================
   NAME
========================================================== */

.explore-place-name {

    flex: 1;

    padding: 0 10px;

}


.explore-place-name span {

    color: #252a27;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

}


/* =========================================================
   ARROW
========================================================== */

.explore-place-arrow {

    width: 34px;

    height: 34px;

    margin-right: 10px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #2e7d32;

    color: #ffffff;

    font-size: 12px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


/* =========================================================
   HOVER
========================================================== */

.explore-place-card:hover {

    transform:
        translateY(-5px);

    border-color: #2e7d32;

    box-shadow:
        0 10px 22px rgba(0,0,0,0.12);

}


.explore-place-card:hover .explore-place-image img {

    transform:
        scale(1.12);

}


.explore-place-card:hover .explore-place-arrow {

    background: #ffd600;

    color: #1b1f1c;

    transform:
        translateX(3px);

}


/* =========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .explore-ghaziabad-box {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .explore-ghaziabad-section {

        padding: 40px 12px;

    }


    .explore-heading h2 {

        font-size: 25px;

    }


    .explore-ghaziabad-box {

        grid-template-columns: 1fr;

        padding: 10px;

        gap: 10px;

    }


    .explore-place-card {

        height: 90px;

    }


    .explore-place-image {

        width: 90px;

        height: 90px;

    }


    .explore-place-name span {

        font-size: 13px;

    }

}


/* =========================================================
   EXPLORE GHAZIABAD
========================================================== */

.explore-ghaziabad-section {

    width: 100%;

    padding: 55px 20px;

    background: #f6f8f7;

    box-sizing: border-box;

}


.explore-ghaziabad-container {

    width: 100%;

    max-width: 1250px;

    margin: auto;

}


/* =========================================================
   HEADING
========================================================== */

.explore-heading {

    text-align: center;

    margin-bottom: 25px;

}


.explore-heading span {

    display: block;

    margin-bottom: 5px;

    color: #2e7d32;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.explore-heading h2 {

    margin: 0;

    color: #1b1f1c;

    font-size: 30px;

    font-weight: 800;

    text-shadow:
        2px 2px 5px rgba(0,0,0,0.10);

}


.explore-heading h2 strong {

    color: #2e7d32;

}


/* =========================================================
   MAIN YELLOW BORDER
========================================================== */

.explore-ghaziabad-box {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    padding: 15px;

    border: 2px solid #ffd600;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

}


/* =========================================================
   PLACE CARD
========================================================== */

.explore-place-card {

    min-width: 0;

    height: 105px;

    display: flex;

    align-items: center;

    overflow: hidden;

    position: relative;

    text-decoration: none;

    background: #f7f9f8;

    border: 1px solid #e1e6e3;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


/* =========================================================
   IMAGE
========================================================== */

.explore-place-image {

    width: 105px;

    height: 105px;

    flex-shrink: 0;

    overflow: hidden;

}


.explore-place-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


/* =========================================================
   NAME
========================================================== */

.explore-place-name {

    flex: 1;

    padding: 0 10px;

}


.explore-place-name span {

    color: #252a27;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;

}


/* =========================================================
   ARROW
========================================================== */

.explore-place-arrow {

    width: 34px;

    height: 34px;

    margin-right: 10px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #2e7d32;

    color: #ffffff;

    font-size: 12px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


/* =========================================================
   HOVER
========================================================== */

.explore-place-card:hover {

    transform:
        translateY(-5px);

    border-color: #2e7d32;

    box-shadow:
        0 10px 22px rgba(0,0,0,0.12);

}


.explore-place-card:hover .explore-place-image img {

    transform:
        scale(1.12);

}


.explore-place-card:hover .explore-place-arrow {

    background: #ffd600;

    color: #1b1f1c;

    transform:
        translateX(3px);

}


/* =========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .explore-ghaziabad-box {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .explore-ghaziabad-section {

        padding: 40px 12px;

    }


    .explore-heading h2 {

        font-size: 25px;

    }


    .explore-ghaziabad-box {

        grid-template-columns: 1fr;

        padding: 10px;

        gap: 10px;

    }


    .explore-place-card {

        height: 90px;

    }


    .explore-place-image {

        width: 90px;

        height: 90px;

    }


    .explore-place-name span {

        font-size: 13px;

    }

}


/* =================================
   EXPLORE NEAR BY BUTTON
================================= */

.explore-nearby-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #FFC107;
    color: #111;

    padding: 10px 18px;
    border-radius: 50px;

    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
}

.explore-nearby-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.22);
    background: #ffca28;
    color: #111;
}

/* Navigation Icon */

.nearby-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #2E7D32;

    border-radius: 50%;

    font-size: 19px;

    transition: all 0.3s ease;
}

.explore-nearby-btn:hover .nearby-icon {
    transform: rotate(15deg) scale(1.08);
}

/* Text */

.nearby-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nearby-text small {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nearby-text strong {
    font-size: 15px;
    font-weight: 800;
}

/* =========================================
   FIXED NEARBY BUTTON
========================================= */

#fixedNearbyButton {
    position: fixed !important;

    left: 0 !important;
    bottom: 120px !important;

    width: auto !important;
    height: auto !important;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 2147483647 !important;

    pointer-events: auto !important;
}

#fixedNearbyButton button {
    display: flex !important;

    align-items: center !important;
    gap: 9px !important;

    border: none !important;
    outline: none !important;

    margin: 0 !important;

    padding: 8px 16px 8px 8px !important;

    background: #FFC107 !important;
    color: #111 !important;

    border-radius: 0 35px 35px 0 !important;

    box-shadow: 4px 6px 20px rgba(0,0,0,0.25) !important;

    cursor: pointer !important;

    font-family: Arial, sans-serif !important;

    transition: all 0.3s ease !important;
}


/* ICON */

#fixedNearbyButton .nearby-location-icon {
    width: 42px !important;
    height: 42px !important;

    min-width: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #fff !important;
    color: #2E7D32 !important;

    border-radius: 50% !important;

    font-size: 18px !important;
}


/* TEXT */

#fixedNearbyButton .nearby-location-text {
    display: flex !important;
    flex-direction: column !important;

    text-align: left !important;

    line-height: 1.15 !important;
}

#fixedNearbyButton .nearby-location-text small {
    display: block !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    color: #111 !important;
}

#fixedNearbyButton .nearby-location-text strong {
    display: block !important;

    font-size: 13px !important;
    font-weight: 800 !important;

    color: #111 !important;
}


/* HOVER */

#fixedNearbyButton button:hover {
    padding-right: 24px !important;

    background: #FFD54F !important;

    transform: translateX(3px);
}

#fixedNearbyButton button:hover .nearby-location-icon {
    transform: rotate(15deg) scale(1.08);
}


/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 767px) {

    #fixedNearbyButton {
        position: fixed !important;

        left: 0 !important;
        right: auto !important;

        top: auto !important;
        bottom: 75px !important;

        display: block !important;

        visibility: visible !important;
        opacity: 1 !important;

        z-index: 2147483647 !important;
    }

    #fixedNearbyButton button {
        display: flex !important;

        padding: 6px 12px 6px 6px !important;

        gap: 7px !important;

        border-radius: 0 28px 28px 0 !important;
    }

    #fixedNearbyButton .nearby-location-icon {
        width: 38px !important;
        height: 38px !important;

        min-width: 38px !important;

        font-size: 15px !important;
    }

    #fixedNearbyButton .nearby-location-text small {
        font-size: 8px !important;
    }

    #fixedNearbyButton .nearby-location-text strong {
        font-size: 11px !important;
    }
}