/**
* Template Name: Maxim - v2.1.0
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
    color: #444444;
    overflow-x: hidden;
}

a {
    color: #1bac91;
}

a:hover {
    color: #22d8b6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #1bac91;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #18967e;
    transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /* height: 72px; */
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    background: white;
    color: white;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #000;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}
.container.searchbar {
    padding: 19px 0px;
    margin-top: 80px;
    border-top: solid thin #eaeaea;
}

.sidebarUSER2 {
    border: solid thin #ccc;
}

.sidebarUSER {
    padding-top: 50px;
    background: #1e424b;
}
.sideINNER ul {
    padding: 0px;
}
.sideINNER li {
    list-style: none;
    padding: 10px;
    color: #fff;
    text-align: left;
    font-size: 14px;
}

.sideINNER li a {
    color: #fff;
}
.rightUSER {
    border-top: solid thin #d0cfcf;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
    padding: 20px 0px;
    border-bottom: solid thin #ccc;
}

.rem {
    display: -ms-flexbox !important;
    display: flex !important;

    padding: 19px 10px;
}

.sidehead {
    margin-bottom: 20px;
}

.tablewhite {
    background: #ffffff;
}

@media (max-width: 992px) {
    #header {
        /* height: 60px; */
        padding: 8px 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu - Fixed
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
    color: #000;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #000;
    padding: 8px 0 12px 0;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li + li {
    margin-left: 30px;
}

.nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 3px;
    left: 0;
    background-color: #1bac91;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: black;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #062822;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #1bac91;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: black; /* Changed color to black for visibility */
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #1bac91; /* Updated background color to a darker color for better visibility */
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: white; /* Changed color to white for better contrast */
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #ffeb3b; /* Changed hover color for better visibility */
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6); /* Changed background for better contrast */
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: black; /* Keep black for good contrast */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: calc(100vh - 72px);
    background: url("../img/hero-bg.jpg") center center;
    background-size: cover;
    position: relative;
    margin-top: 72px;
    padding: 0;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    z-index: 2;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    border-color: #1bac91;
    background: #1bac91;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 2rem;
    overflow: overlay;
}

.section-bg {
    background-color: #f2f9f8;
}

.section-title {
    padding-bottom: 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #21413c;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
    font-weight: 400;
    font-size: 34px;
    color: #21413c;
}

.about .icon-box {
    margin-top: 44px;
}

.about .icon-box i {
    font-size: 48px;
    float: left;
    color: #1bac91;
}

.about .icon-box h4 {
    font-size: 22px;
    font-weight: 500;
    margin-left: 60px;
    color: #21413c;
}

.about .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

/*--------------------------------------------------------------
# Steps
--------------------------------------------------------------*/
.steps {
    padding: 50px 0 40px 0;
}

.steps .row {
    overflow: hidden;
}

.steps .content-item {
    padding: 40px;
    border-left: 1px solid #d4e9e6;
    border-bottom: 1px solid #d4e9e6;
    margin: -1px;
}

.steps .content-item span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #1bac91;
}

.steps .content-item h4 {
    font-size: 28px;
    font-weight: 400;
    padding: 0;
    margin: 20px 0;
    color: #21413c;
}

.steps .content-item p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .steps .content-item {
        padding: 40px 0;
    }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 20px;
    transition: 0.3s;
    color: #21413c;
}

.features .nav-link:hover {
    color: #1bac91;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
}

.features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
}

.features .nav-link.active {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.12);
}

.features .nav-link.active h4 {
    color: #1bac91;
    font-family: sans-serif;
}

.features .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
    box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.services .icon-box-pink .icon i {
    color: #ff689b;
}

.services .icon-box-cyan .icon i {
    color: #3fcdc7;
}

.services .icon-box-green .icon i {
    color: #41cf2e;
}

.services .icon-box-blue .icon i {
    color: #2282ff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #a8d3cc;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #eff7f6;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #1bac91 !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #1bac91;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #4ae3c6;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

.team .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.team .member .member-info-content {
    position: absolute;
    left: 50px;
    right: 0;
    bottom: 0;
    transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.team .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.team .member .social {
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    width: 50px;
    transition: left ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    display: block;
    color: #fff;
    margin-top: 15px;
}

.team .member .social a:hover {
    color: #1bac91;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member:hover .member-info {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 212, 255, 0) 100%
    );
    opacity: 1;
    transition: 0.4s;
}

.team .member:hover .member-info-content {
    bottom: 30px;
    transition: bottom 0.4s;
}

.team .member:hover .social {
    left: 0;
    transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #97cac2;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #1bac91;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #1bac91;
    float: left;
    width: 44px;
    height: 44px;
    background: #e1f0ee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #21413c;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #43857a;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #1bac91;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #1bac91;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #1bac91;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #22d8b6;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: black;
    padding: 0 0 5px 0;
    color: #fff;
    font-size: 14px;
    text-align: center; /* Align text to the center */
    margin-top: auto; /* This ensures that the footer stays at the bottom */
}

#footer .footer-top {
    background: #0c1817;
    border-bottom: 1px solid #18302c;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #1c3733;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #1bac91;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #4ae3c6;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #34dfbf;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -4px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1bac91;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #14806c;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#map {
    height: 600px;
    width: 100%;
}
.pumpbefore6am {
    font-size: 0.875rem;
    color: white;
    padding: 6px;
    font-weight: 900;
    text-align: center;
    background: #007f84;
}
.pumpafter6am {
    font-size: 0.875rem;
    color: white;
    font-weight: 900;
    padding: 5px;
    text-align: center;
    background: #e10004;
}
.pumpname {
    width: 65px;
    font-size: 8px;
    color: brown;
    padding: 8px;
    text-align: center;
    font-weight: 900;
}
.pumpgetdirections {
    font-size: 10px;
}
.gm-style .gm-style-iw-c {
    padding: 0px;
}
.gm-style .gm-style-iw-d {
    display: contents;
}
button.gm-ui-hover-effect {
    display: none !important;
}
.main-container {
    flex: 0;
    padding-bottom: 0;
    width: 100%;
}

.station-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.station-prices {
    text-align: left;
}

.price-today h4,
.price-tomorrow h4 {
    margin: 0;
}

.price-today h4 {
    color: #e63946; /* Red color for today’s price */
    font-size: 20px;
    font-weight: bold;
}

.price-tomorrow h4 {
    font-size: 16px;
}

.station-info {
    text-align: center;
    flex-grow: 1;
}

.station-info p {
    margin: 0;
}

.station-info p:first-child {
    font-size: 18px;
    font-weight: bold;
}

.station-info p:last-child {
    font-size: 12px;
    margin-top: 5px;
}

.station-img {
    height: 40px;
    width: auto;
}

.star {
    font-size: 3rem;
    cursor: default;
    display: inline-block;
}
.one {
    color: rgb(255, 0, 0); /* 1-star */
}
.two {
    color: rgb(255, 106, 0); /* 2-stars */
}
.three {
    color: rgb(251, 255, 120); /* 3-stars */
}
.four {
    color: rgb(255, 255, 0); /* 4-stars */
}
.five {
    color: rgb(24, 159, 14); /* 5-stars */
}

/*** custom css ***/
.stationresults {
    display: block;
    width: 100%;
}

#showresults {
    margin-top: 20px;
    display: block;
    width: 100%;
    overflow-y: visible;
}

.stationresults ul li {
    display: block;
    width: 100%;
}

.stationresults ul li {
    margin-bottom: 0 !important;
}


/*--------------------------------------------------------------*/
/* Reset and base styles */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Header styling */
.fuelwatch-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
}

/* Desktop Header */
.desktop-header {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 15px;
}

.logo {
    margin-right: 15px;
}

.logo h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
}

.logo h1 a {
    color: #333;
    text-decoration: none;
}

/* Search container with trailing buttons */
.search-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 600px;
    margin: 0 15px;
}

.search-container {
    position: relative;
    flex-grow: 1;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 14px;
}

.search-buttons {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.fuel-type-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.fuel-type-btn i {
    margin-right: 5px;
}

.filters-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.filters-btn i {
    margin-right: 5px;
}

.sign-in-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    font-size: 14px;
    white-space: nowrap;
}

.sign-in-btn i {
    margin-right: 5px;
}

.notifications-btn {
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: 5px;
}

/* Mobile Header */
.mobile-header {
    padding: 10px;
    display: none;
}

.mobile-header .top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .logo {
    flex-grow: 1;
    text-align: center;
}

.mobile-header .logo h1 {
    font-size: 18px;
    margin: 0;
}

.mobile-header .right-actions {
    display: flex;
    align-items: center;
}

.mobile-header .bottom-row {
    display: flex;
    align-items: center;
}

.mobile-header .search-wrapper {
    width: 100%;
    margin: 0;
}

.mobile-header .search-container {
    flex-grow: 1;
}

.mobile-header .search-buttons {
    margin-left: 5px;
}

.mobile-header .fuel-type-btn,
.mobile-header .filters-btn {
    padding: 8px;
}

.mobile-header .filters-btn i {
    margin-right: 0;
}

/* Responsive styles */
@media (max-width: 767px) {
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
}

@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
    
    .desktop-header {
        display: flex;
    }
}

/* Ensure content below header is properly positioned */
body {
    padding-top: 60px;
}

@media (max-width: 767px) {
    body {
        padding-top: 100px; /* Adjust based on mobile header height */
    }
}

/* Map container */
#map-container {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

/* Adjust map container to make room for sidebar ad */
@media (min-width: 768px) {
    #map-container {
        right: 180px; /* Make room for the sidebar ad */
    }
}

/* Sidebar styling */
#sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px);
    width: 100%;
    max-width: 400px;
    background: white;
    z-index: 2;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

#sidebar.active {
    transform: translateX(0);
}

/* ULP Price Header */
.ulp-price-header {
    background-color: #f8f8f8;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ulp-price-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.date-tabs {
    display: flex;
    margin-top: 10px;
}

.date-tab {
    padding: 5px 15px;
    border-radius: 15px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.date-tab.active {
    background-color: #006064;
    color: white;
}

/* Price list styling */
.price-header {
    padding: 15px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    color: #006064;
    display: flex;
    align-items: center;
}

.price-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.price-column {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    min-width: 60px;
}

.price-today {
    font-size: 18px;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 2px;
}

.price-tomorrow {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.price-label {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.price-details {
    flex-grow: 1;
}

.station-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.station-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.station-location {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
}

.station-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-left: auto;
}

/* Station details styling */
.station-details {
    padding: 0;
}

.details-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.back-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    padding: 0;
    margin-right: 15px;
}

.station-title {
    font-size: 20px;
    font-weight: bold;
    margin: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.info-icon {
    color: #006064;
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.info-text {
    flex-grow: 1;
    font-size: 14px;
}

.info-action {
    color: #666;
}

.prices-section {
    padding: 15px;
    /* margin-top: 10px; */
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    /* margin-bottom: 15px; */
}

.prices-grid {
    display: flex;
    gap: 15px;
}

.price-box {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.price-box-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.price-box-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.features-section {
    padding: 15px;
    /* margin-top: 10px; */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    background-color: #f8f8f8;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.feature-icon i {
    font-size: 20px;
    color: #333;
}

.feature-name {
    font-size: 12px;
}

.directions-button {
    display: block;
    width: 100%;
    background-color: #5e35b1;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.rating-section {
    padding: 15px;
    /* margin-top: 10px; */
}

.rating-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.star {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    margin: 0 5px;
}

.star.active {
    color: #ffc107;
}

/* Custom marker styling */
.marker-container {
    position: absolute;
    transform: translate(-50%, -100%);
}

.custom-marker {
    width: 56px;
    font-family: Arial, sans-serif;
    text-align: center;
    user-select: none;
}

.marker-top {
    background-color: #e53e3e;
    color: white;
    padding: 4px 0;
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 14px;
    width: 56px;
}

.marker-middle {
    width: 56px;
    background-color: white;
    padding: 4px 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 13px;
    color: #000;
    margin-bottom: 4px;
}

.logo_holder {
    height: 34px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 30px;
    width: auto;
}

.marker-tail {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid white;
    margin: 0 auto;
}

/* Mobile styles */
@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .mobile-list-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border: none;
        border-radius: 20px;
        padding: 10px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 100;
        font-weight: bold;
    }
}


.header-search {
    flex-grow: 1;
    margin: 0 15px;
    position: relative;
}

.search-input {
    width: 60%; /* Default width (desktop/tablet) */
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
}

/* Mobile responsiveness (e.g., screens < 768px) */
@media (max-width: 768px) {
    .header-search {
        margin: 0; /* Remove side margins for full width */
        padding: 0 10px; /* Optional: Add slight padding to prevent edge touch */
    }

    .search-input {
        width: 100% !important; /* Force full width on mobile */
    }
}
/* Desktop styles */
@media (min-width: 768px) {

    .mobile-only {
        display: none;
    }

    #sidebar {
        transform: translateX(0);
        width: 412px;
    }

    #map-container {
        left: 400px;
    }
}

/* Header styles for both desktop and mobile */
.fuelwatch-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Logo styling */
.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.logo a {
    color: #5a2f9d;
    text-decoration: none;
}

/* Mobile logo styling */
.mobile-header .logo h1 {
    font-size: 1.1rem;
}

/* Search input styling */
.search-input {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 8px 15px 8px 35px;
    width: 100%;
    font-size: 0.9rem;
    background-color: #f5f5f5;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
}

/* Button styling */
.fuel-type-btn,
.filters-btn {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    margin-left: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.fuel-type-btn i,
.filters-btn i {
    margin-right: 5px;
}

/* Header actions */
.sign-in-btn {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.sign-in-btn i {
    margin-right: 5px;
}

.notifications-btn,
.menu-btn,
.user-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop header specific */
.desktop-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    justify-content: space-between;
    height: 60px;
}

.search-wrapper {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    margin: 0 15px;
}

.search-buttons {
    display: flex;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Mobile header specific */
.mobile-header {
    padding: 10px;
}


.right-actions {
    display: flex;
    align-items: center;
}

.bottom-row {
    display: flex;
}

/* Responsive behavior */
@media (min-width: 768px) {
    .mobile-header {
        display: none;
    }
}

@media (max-width: 767px) {
    .desktop-header {
        display: none;
    }
}

/* Navigation menu styles */
.nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #5a2f9d;
}

/* Nav menu icon styles */
.nav-menu-icon {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 1001;
}
.nav-menu-icon.active {
    left: 0;
}
.nav-menu-icon ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.nav-menu-icon li {
    padding: 12px 0;
}
.nav-menu-icon a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    transition: color 0.2s;
}
.nav-menu-icon a:hover, .nav-menu-icon .active a {
    color: #007bff;
}
/* Overlay for nav menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}
.nav-overlay.active {
    display: block;
}
/* Ensure mobile header styles remain unchanged */
.fuelwatch-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}
.logo a {
    color: #5a2f9d;
    text-decoration: none;
}
.menu-btn, .user-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}
.right-actions {
    display: flex;
    gap: 10px;
}
.search-container {
    position: relative;
}
.search-input {
    width: 100%;
    padding: 8px 15px 8px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
    background-color: #f5f5f5;
}
.search-container .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
    pointer-events: none;
}
.search-buttons {
    display: flex;
    gap: 10px;
}

/* Desktop header styles */
.desktop-header {
    display: none;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    padding: 0  giorno20px;
    align-items: center;
    justify-content: space-between;
}
.desktop-header .logo h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}
.desktop-header .logo a {
    color: #5a2f9d;
    text-decoration: none;
}
.search-wrapper {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 20px;
}
.desktop-header .search-container {
    position: relative;
}
.desktop-header .search-input {
    width: 100%;
    padding: 8px 15px 8px 35px;
}
.desktop-header .search-buttons {
    margin-top: 0;
    justify-content: flex-end;
}
.sign-in-btn {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}
.sign-in-btn i {
    margin-right: 5px;
}
/* Responsive styles */
@media (min-width: 768px) {
    
    .mobile-header, .nav-menu-icon, .nav-overlay {
        display: none;
    }
    .desktop-header {
        display: flex;
    }
    body {
        padding-top: 60px;
    }
}
@media (max-width: 767px) {#map-container {
    top: 100px;
}
    body {
        padding-top: 80px;
    }
}


/* Prevent body scrolling when drawer is open */
body.drawer-open {
    overflow: hidden;
}

/* Desktop Drawer Menu */
.desktop-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: white;
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.desktop-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.drawer-content {
    padding: 20px;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li {
    margin-bottom: 15px;
}

.drawer-menu li a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.drawer-menu li a:hover {
    color: #006064;
}

.drawer-menu li.active a {
    color: #006064;
    font-weight: bold;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

