/* Import Font Family  */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* .albert-sans-<uniquifier> {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */


@import url('./variables.css');



/* CSS Reset  */
* {
    margin: 0;
    padding: 0;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

::selection {
    background-color: var(--text-color-color);
    color: #fff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Albert Sans", sans-serif;
    text-decoration: none;
}

body {
    line-height: 1.5;
    font-family: "Albert Sans", sans-serif;
    font-size: 16px;
    background: #fff;
}

ol,
ul {
    list-style: outside;
    padding-left: 25px;
}

ul li {
    list-style: unset;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS Resest  */

/* ============== Common Css =========== */
h1 {
    font-size: var(--h1-font-size);
    font-weight: 800;
    color: var(--heading-color);
}

h2 {
    font-size: var(--heding-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    padding-bottom: 10px;
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
}

h5 {
    font-size: var(--h5-font-size);
    color: var(--heading-color);
}

h6 {
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-medium);
    color: var(--heading-color);
    text-transform: uppercase;
}

p {
    font-size: 16px;
}

/* img{
    width: 100%;
} */


.common__padding {
    padding: 80px 0;
}

.common__btn,
.bg__primary__btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.common__btn:hover,
.bg__primary__btn:hover {
    background-color: var(--primary-color-hover);
    color: var(--white-color);
}

.common__btn:focus,
.common__btn:active,
.bg__primary__btn:focus,
.bg__primary__btn:active {
    background-color: var(--primary-color-hover);
    color: var(--white-color);
}

.common__btn span {
    font-size: 12px;
}

.custom__swiper__pageniation {}

.common__title__h2 {
    font-size: 38px;
}

.text__primary {
    color: var(--primary-color);
}

.text__secondary {
    color: var(--secondary-color);
}

.breadcrum__section {
    background: #3791cd21;
}

li.breadcrumb-item a {
    color: #000;
}

li.breadcrumb-item.active a {
    color: var(--primary-color);
}

/* ============== Common Css =========== */

/* Navbar  */
.custom-header {
    border-bottom: 1px solid #f1f1f1;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.custom-nav .nav-link {
    color: #222;
    font-size: 1rem;
    transition: color 0.2s;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: #007bff;
}

.location-box {
    min-width: 220px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 12px;
    height: 40px;
}

.location-icon {
    color: #007bff;
    font-size: 1.1rem;
}

.location-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #555;
    width: 140px;
    outline: none;
    padding: 0;
}

.search-box {
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 12px;
    height: 40px;
}

.search-icon {
    color: #888;
    font-size: 1.1rem;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #555;
    width: 120px;
    outline: none;
    padding: 0;
}

.profile-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    border: none;
    font-size: 1.2rem;
    color: #222;
    transition: background 0.2s;
}

.profile-btn:hover {
    background: #d1d5db;
}

/* Core styles to make the input full-width/height and have icon inside */
.location-box,
.search-box {
    position: relative;
    min-width: 0;
    /* CRITICAL for flex children to shrink properly */
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* decorative — won't block clicks in the input */
    font-size: 1rem;
    color: #6c757d;
    /* text-muted color */
}

/* Make the actual input fill container and reserve space for icon */
.location-input,
.search-input {
    width: 100%;
    padding-left: 30px;
    height: 100%;
    border-radius: 8px;
    box-shadow: none;
    margin-right: -10px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
    border: 1px solid #f0743496;
}

/* If you prefer Bootstrap large control sizing instead of fixed height:
.location-input, .search-input { padding-left: 40px; padding-top: .6rem; padding-bottom: .6rem; }
*/

.location-input {
    max-width: 180px;
    font-size: 14px;
}

.dropdown-menu {
    border-radius: 0;
    border: 1px solid #cecece;
    /* margin-top: 24px; */
    /* border-top: 0; */
}

.main__menu {
    transition: all 0.5s ease;
}

.main__menu.bg-scrolling {
    position: fixed;
    width: 100%;
    z-index: 4;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


@media (max-width: 576px) {
    .location-input {
        max-width: 100%;
        font-size: 13px;
    }
}


@media (max-width: 991px) {
    .custom-header .custom-nav {
        display: none !important;
    }

    .location-box,
    .search-box {
        min-width: 120px;
    }
}


@media only screen and (max-width: 600px) {
    .mobile__close__btn {
        position: absolute;
        right: 15px;
        background: unset;
        border: 1px solid #d2d2d2;
        border-radius: 0 !important;
        padding: 5px;
    }

    .mobile__dropdown {
        position: static !important;
        inset: 0px auto auto 0px !important;
        margin: 10px 0px 0px 0px !important;
        transform: unset !important;
        width: 100% !important;
    }

    .common__padding {
        padding: 40px 10px;
    }

    .mobile__width__full {
        width: 100%;
    }

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 24px;
    }

    .common__btn {
        font-size: 16px;
    }

    .common__btn span {
        font-size: 10px;
    }

    .common__title__h2 {
        font-size: 24px;
    }

    .mobile__bg__hiden {
        background-image: unset !important;
    }

    .bg__mobile__show {
        background: #f5f5f5
    }

    .mobile__left__right__anchor {
        padding: 10px 0 30px 0 !important;
    }


}


/* Navbar  */

/* footer  */
.footer__Section {
    background: #F4F4F4;
}

/* footer  */