@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #4bb543;
    --warning-color: #f0ad4e;
    --danger-color: #d9534f;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color) !important;
}

/* -----------------button-----------  */

/* Button Styles */
.custon-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.custon-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #3ab7d8;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
}

/* ----------------end btn-------------  */

/* ------------Header Styles */
.top-nav {
    background-color: var(--dark-color);
    padding: .8rem 0;
}

.top-nav a {
    color: var(--light-color);
    padding: 0 .6rem;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
}

.top-nav .border {
    border-color: #3b444f !important;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    margin-right: 10px;
    color: var(--accent-color);
}


.header .navbar ul li {
    margin-left: 30px;
}

.header .navbar-light .navbar-nav .nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.2rem;
}

.header .navbar-light .navbar-nav .nav-link:focus,
.header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--primary-color);
}

/* ----------hero-section start ------------  */
.hero_section .hero_slider .slider_content .image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.hero_section .hero_slider .slider_content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
}

.slide-content .btn-outline {
    color: var(--light-color);
    background-color: var(--primary-color);

}

.slide-content .btn-outline:hover {
    background-color: var(--dark-color);
}

.slide-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.slide-content p {
    margin-bottom: 15px;
}


.hero_section .swiper-button-next,
.hero_section .swiper-button-prev {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 20px;
    transition: all 0.3s;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
}


.hero_section .swiper-button-next:after,
.hero_section .swiper-button-prev:after {
    font-size: 20px;
}

/* <!-- Featured Spaces Section --> */
.featured-spaces {}

.space-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.space-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.space-card:hover .space-img img {
    transform: scale(1.1);
}

.space-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.space-content {
    padding: 20px;
}

.space-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.space-location {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

.space-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.space-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.space-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.space-feature i {
    margin-right: 5px;
    color: var(--primary-color);
}

.space-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
}


/* How It Works Section */
.how-it-works {
    background-color: var(--light-color);
    padding: 40px 0;
}


.how-it-works .step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.how-it-works .step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3%;
    background-color: #014b94;
    border-radius: 20px;
    z-index: -1;
    transition: width 0.3s ease;
}

.how-it-works .step:hover::before {
    width: 100%;
}

.how-it-works .step:hover {
    transform: translateY(-10px);
    /* background-color: var(--primary-color); */
}

.how-it-works .step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 20px; */
    font-size: 30px;
    color: var(--primary-color);
    margin-left: -2rem;
    margin-top: -4rem;
    border: 8px solid #014b94;
    background: #fff;
    position: relative;
    z-index: 9;
}

.how-it-works .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.how-it-works .step:hover h3 {
    color: #fff;
}

.step p {
    color: var(--gray-color);
    font-size: 14px;
}

.how-it-works .step:hover p {
    color: #fff;
}

/* ----------------------how-it-choose -------------  */
.how-it-choose {
    background-color: var(--light-color);
    padding: 40px 0;
}


.how-it-choose .step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.how-it-choose .step .step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);

}

/* Call to Action */
.cta {
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    color: var(--dark-color);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Listing Page Styles */
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-toggle {
    display: none;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.filter-sidebar {
    width: 300px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 30px;
    height: max-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 5px;
}

.filter-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.filter-options input {
    margin-right: 10px;
}

.price-range {
    width: 100%;
    margin-top: 15px;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

.listing-container {
    display: flex;
}

.listing-container .featured-spaces.row {
    --bs-gutter-y: 1.5rem;
}

.listing-results {
    flex: 1;
}

.result-count {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.sort-options {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sort-options label {
    margin-right: 10px;
    font-weight: 500;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

/* Office Detail Page */


.office-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.main-image {
    grid-column: span 2;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-image {
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.thumb-image:hover img {
    transform: scale(1.05);
}

.office-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.office-location {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.office-location i {
    margin-right: 8px;
    color: var(--primary-color);
}

.office-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-color);
}

.office-description {
    margin-bottom: 30px;
}

.office-description h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.office-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.amenity-item {
    background-color: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.amenity-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.booking-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 60px;
}

.booking-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.booking-period {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 14px;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
}

.booking-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

.map-container {
    height: 300px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    /* border-top: 3px solid #241f40; */
    padding: 100px 0 100px;
    z-index: 1;
}

.breadcrumb-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(248 247 255 / 32%) none repeat scroll 0 0;
    content: "";
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
    padding-top: 28px;
}

.breadcrumb-area .title {
    display: block;
}

.breadcrumb-area .title h1 {
    color: #222222;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.breadcrumb-area .title p {
    color: #014b94;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb-nav li {
    display: inline;
    color: var(--secondary-color);
}

.breadcrumb-nav li a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-nav li::after {
    content: " / ";
    padding: 0 5px;
    color: var(--dark-color);
}

.breadcrumb-nav li:last-child::after {
    content: "";
}

/* ============about section -------------  */
.about-section {
    padding: 80px 0;
    background: #eee;
}

.about-title {
    font-weight: 900;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
}

.about-section p {
    color: var(--gray-color);
}



.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;

}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* -------------stats-section ----------  */
.stats-section {
    padding: 80px 0;
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../image/banner2.avif') no-repeat center center;
    background-size: cover;
}

.stat-card {
    background-color: rgba(159, 154, 154, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    color: #fff;
    font-size: 1rem;
    margin-top: 10px;
}

/* --------===============testimonial===============  */

.testimonial-section {
    padding: 80px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../image/banner1.avif') no-repeat center center;
    background-size: cover;
}


.testimonial-section .swiper-slide {
    background: var(--dark-color);
    text-align: center;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-section .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
}

.testimonial-section .testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: #222;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}


.testimonial-author .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}


.testimonial-author .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author .author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-author .author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}



.testimonial-section .swiper-pagination-bullet-active {
    background: #333;
}

/* =================team section---------============  */
.team-section {}


.team-member {
    text-align: center;
}

.team-member .image {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(3, 76, 232, 0.477);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a.icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.team-member .social-icons a:hover {
    background-color: var(--dark-color);
    color: #fff;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

/* -----------blog blog_section ---------------  */
.blog_section .row {
    --bs-gutter-y: 1.5rem;
}

.blog_section .blog-item h3 a {
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog_section .blog-item .blog-item-content  h3  {
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog_section .blog-item p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* ------------------blogDetails ----------------  */

.blogDetails .single-blog-item .blog-item-content .tag-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogDetails .single-blog-item .blog-item-content .tag-option ul.float-right li a,
.blogDetails .single-blog-item .blog-item-content .tag-option ul.float-left li a {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.blogDetails .sidebar-wrap {
    position: sticky;
    top: 60px;
}

.blogDetails .sidebar-wrap .latest-post .media {
    display: flex;
    gap: 10px;
}

.blogDetails .sidebar-wrap .latest-post .media:hover {
    background-color: #eee;
}

.blogDetails .sidebar-wrap .latest-post .media .image {
    width: 5rem;
    height: 4rem;
    border-radius: 10px;
    overflow: hidden;
}

.blogDetails .sidebar-wrap .latest-post .media .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogDetails .sidebar-wrap .latest-post .media .media-body h6 a {
    color: var(--dark-color);
}


.blogDetails .sidebar-wrap .tags a {

    background: #f5f8f9;
    display: inline-block;
    padding: 8px 23px;
    border-radius: 38px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    font-size: 14px;
    text-transform: capitalize;

}

/* ==================contact us ==================  */
.contact_section .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
    border-radius: 10px;
}

.contact_section .contact-method .contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.contact_section .contact-method .contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact_section .contact-method .contact-details p,
.contact_section .contact-method .contact-details a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact_section .contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    grid-column: span 2;
}

.contact_section .contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact_section .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact_section .contact-map {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* -------------footer start----------------  */

footer {
    background-color: var(--dark-color);
}

footer .title {
    position: relative;
    margin-bottom: 35px;
}

footer .title::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35%;
    height: 2px;
    background-color: var(--primary-color);
}

footer .btn-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color .3s linear;
}

footer .btn-icon:hover {
    background-color: var(--primary-color);
}

footer .btn-icon i {
    color: var(--dark-color);
}

footer .btn-icon:hover i {
    color: #fff;
}

footer .list-unstyled li {
    line-height: 2.5;
}

footer .list-unstyled li a {
    transition: color .3s linear;
}

footer .list-unstyled li a:hover {
    color: var(--primary-color) !important;
}

/* ---------------media start------------ */

@media (max-width: 991px) {
    .header .navbar-collapse {
        position: absolute;
        top: 0;
        left: -120%;
        width: 30rem;
        height: 100vh;
        background-color: #fff;
        opacity: 0;
        transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }

    .collapse:not(.show) {
        /* display: block; */
    }

    .header .navbar-collapse.show {
        left: 0;
        opacity: 1;
    }


    .header .colse_btn {
        background-color: var(--dark-color);
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .header .colse_btn .close-icon {
        border: 1px solid #fff;
        border-radius: 20px;
        padding: 0px 15px;
        cursor: pointer;
    }

    .header .colse_btn .close-icon i {
        color: #fff;
    }

    .navbar-top {
        border-bottom: 1px solid #8d8d93;
        padding-bottom: 1rem;
    }

    .navbar-top .form_login {
        display: flex;
        flex-direction: row;
        /*margin-left: 2rem;*/
        /*padding-top: 1rem;*/
    }

    .navbar-top .form_login a {
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: capitalize;
        color: #1a1a2e;
    }

    .header_footer_icon {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .header_footer_icon .icon {
        width: 2.5rem;
        height: 2.5rem;
        background-color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;

    }

    .header_footer_icon .icon i {
        color: var(--light-color);
        font-size: 1.4rem;
    }

    .header_footer_icon .icon:hover {
        background-color: #1a1a2e;
        animation: glowBounce 0.5s ease;
    }

    @keyframes glowBounce {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        }

        50% {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    .header_footer_icon .icon:hover {
        background-color: #1a1a2e;
        animation: glowBounce 0.5s ease;
    }

    .listing-container {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        display: none;
    }

    .filter-sidebar.active {
        display: block;
    }

    .filter-toggle {
        display: block;
    }

}

@media (max-width: 768px) {}

@media (max-width: 550px) {
    .header .navbar-collapse {
        width: 23rem;
    }
}




.navbar-top .nav-btn {
    flex: 1; /* make both buttons equal width */
    margin: 0 5px;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid black;
    color: #000000 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.navbar-top .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255,106,0,0.8), 0 0 25px rgba(255,154,60,0.6);
}
