@import url('https://fonts.googleapis.com/css2?family=inter:wght@200;300;400;600;700&family=Inknut+Antiqua:wght@400;700&display=swap');

:root {
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all 0.5s linear;
}

h1{
    font-weight: 500;
}

a {
    font-size: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    color: rgb(255, 255, 255);
    background-color: rgb(5, 5, 5);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.4s;
}

.btn:hover {
    color: rgb(250, 250, 250);
}

.btn.secondary:hover {
    color: rgb(0, 0, 0);
}

.login_btn {
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    color: rgb(255, 255, 255);
    background-color: rgb(5, 5, 5);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.4s;
}

.login_btn:hover {
    box-shadow: inset 30rem 0 0 0 black;
    color: rgb(0, 0, 0);
}

html {
    /*font-size: 62.5%;*/
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}


header {    /* top navigation bar */
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 10vh;
}

header .logo {
    font-size: 2rem;
    font-weight: 500px;
    color: black;
    font-family: 'Inknut Antiqua', serif;
}



header .navbar a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: rgb(255, 255, 255);
    font-weight: 200;
}

header .navbar a.active {
    color: #fff;
    background: rgb(0, 0, 0);
}

header .navbar a:hover {
    color: #ffffff;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.125px;
}

header .icons a {   /* Login | Signup */
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: rgb(198, 135, 79);
    background-color: rgb(16, 16, 16);
}

header .icons i {
    cursor: pointer;
    margin-left: 0.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    width: 1.5rem;
    text-align: center;
    font-size: 1rem;
    border-radius: 50%;

}

header .icons i:hover {
    color: #ffffff;
    background: rgb(0, 0, 0);
    transform: rotate(360deg);
}

header .icons #menu-bars {
    display: none;
}

/*---------------------Hero/ Landing section----------------------------------*/
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the video covers the entire background */
    z-index: -1; /* Keeps the video behind other content */
}


.hero {
    margin-top: -10vh;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-info {
    position: relative;
    z-index: 10;  /* Ensures the content stays above everything else */
    text-align: center;
    color: rgb(255, 255, 255); /* Adjust text color for visibility */
    pointer-events: auto; /* Ensures elements are clickable */
}

@media (max-width: 768px) {
    .hero-info {
    position: relative;
    z-index: 10;  /* Ensures the content stays above everything else */
    text-align: center;
    color: rgb(255, 255, 255); /* Adjust text color for visibility */
    pointer-events: auto; /* Ensures elements are clickable */
    margin: 10px;
    }
}

.hero-info h1 {
    color: white;
    font-size: 3rem;
    font-weight: 100;
    text-align: center;
    line-height: 3.2rem;
    padding-bottom: 20px;
}

.hero .hero-info form {
    display: flex;
    gap: 10px; /* Adds space between input and button */
}

.hero .hero-info form .search {
    padding: 1rem 2rem;
    border-radius: 3rem;
    width: 80%;
}

.hero .hero-info form .btn {
    padding: 1rem 2rem;
    border-radius: 3rem;
    color: white;
    background-color: rgb(20, 20, 20);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
}

.hero .hero-info form .btn:hover {
    box-shadow: inset 30rem 0 0 0 black;
    color: white;
}



/*----------------------------------product search bar-------------------------------------*/

.search_bar {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers horizontally */
    padding: 0 20px; /* Instead of margin-left */
}

.search_bar-info {
    width: 100%;
    max-width: 800px; /* Or whatever maximum width you want */
}

.search_bar-info form {
    display: flex;
    gap: 10px; /* Adds space between input and button */
    width: 100%;
}

.search_bar-info .search {
    flex: 1; /* Makes the search input take up available space */
}

.search_bar .search_bar-info form {
    display: flex;
}

.search_bar .search_bar-info form .search {
    padding: 1rem 2rem;
    border-radius: 3rem;
    width: 80%;
}

.search_bar .search_bar-info form .btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    color: white;
    background-color: rgb(20, 20, 20);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
}

.search_bar .search_bar-info form .btn:hover {
    box-shadow: inset 30rem 0 0 0 black;
    color: white;
}

.vieworder-btn :hover {
    color: white;
}


/* Style for the search form */
#search-form {
    position: relative; /* Needed for positioning the suggestions dropdown */
    display: flex; /* Aligns input and button in a row */
    align-items: center; /* Vertically centers items */
    margin: 20px; /* Add some margin around the form */
}

/* Style for the search input */
#search-input {
    flex: 1; /* Allows the input to take available space */
    padding: 15px; /* Add padding for better appearance */
    border: 1px solid #ccc; /* Border styling */
    border-radius: 30px; /* Rounded corners */
    font-size: 14px; /* Font size */
    transition: border-color 0.3s; /* Smooth transition for border color */
    padding-left: 21px;
}

/* Change border color on focus */
#search-input:focus {
    border-color: #9a9a9a; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

/* Style for the suggestions dropdown */
.suggestions-dropdown {
    border: 0px solid #ccc;
    border-radius: 4px;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background-color: none;
    color: white;
    z-index: 1000;
    margin-top: 200px;
    margin-left: 20px;
    max-width: 100%;
    text-align: left;
    display: none; /* Initially hidden */
}

.suggestions-dropdown div {
    padding: 10px;
    cursor: pointer;
}

.suggestions-dropdown div:hover {
    background-color: #222222; /* Highlight on hover */
}

/* Style for each suggestion item */
.suggestion-item {
    padding: 10px; /* Padding for each item */
    cursor: pointer; /* Pointer cursor on hover */
}

/* Highlight suggestion on hover */
.suggestion-item:hover {
    background: #f0f0f0; /* Change background on hover */
}

/*----------------------------------categories and filter sidebar, product container-------------------------------------*/

/* Product Container Layout */
.product-container {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sidebar width and remaining space */
    gap: 20px;
    padding: 20px;
    margin-top: 10vh; /* Adjust based on your header height */
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 1; /* Ensure it is below the footer */
}

.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* Sidebar Styles */
.sidebar {
    background: #fff;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
    align-self: start;
    /* Remove or comment out these properties */
    /* max-height: calc(100vh - 200px); */
    /* overflow-y: auto; */
}

.sidebar-section {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

/* Category Styles */
.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 10px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.subcategory-list {
    list-style: none;
    padding-left: 15px;
    display: none; /* Hidden by default */
}

.subcategory-list.active {
    display: block;
}

.subcategory-list li a {
    color: #666;
    display: block;
    padding: 5px 0;
    text-decoration: none;
}

.subcategory-list li a:hover {
    color: #000;
}

/* Filter Styles */
.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input {
    width: 80px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-small {
    padding: 5px 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .main-content {
        padding: 0 10px;
    }

    .outer-slider {
        padding: 0.5rem 0;
    }

    .sidebar {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 400px) {
    .product-container {
        padding: 5px;
    }

    .main-content {
        padding: 0 5px;
    }
}

/*----------------------------------sort by-------------------------------------*/
/* Sort dropdown styles */
.sort-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding-right: 80px;
}

.sort-dropdown {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    min-width: 200px;
}

.sort-dropdown:hover {
    border-color: #999;
}

/* Star rating styles */
.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.stars {
    color: #ffd700; /* Golden color for stars */
}

.stars i {
    margin-right: 2px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sort-container {
        padding-right: 23px;
    }
    
    .sort-dropdown {
        min-width: 150px;
    }
}

/*----------------------------------stats-------------------------------------*/

.stats {
    width: 100%;
    text-align: center;
    padding: 4rem 10%;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-shadow: var(--box-shadow);
}

.stats>div {
    /*background-color: royalblue;*/
    display: flex;
    justify-content: space-around;
    width: 160px;
    text-align: center;
    align-items: center;
}

.stats>div h1 {
    font-size: 2rem;
}

.stats>div p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.50);
}


/*----------------------------------rental_banner-------------------------------------*/

.video-container {
    position: relative; /* Ensures proper positioning if you want to add overlays or text */
    width: 100%; /* Adjust width as needed */
    height: 60vh;
    max-width: 800px; /* Limit the size for responsiveness */
    margin: 20px auto; /* Center the video */
    overflow: hidden; /* Ensures no excess content spills out */
    border-radius: 0px; /* Optional: Add rounded corners */
}

#iss-video {
    width: 100%; /* Make the video fill the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop and scale the video nicely */
    display: block; /* Remove extra space caused by inline elements */
    border: 2px solid #fff; /* Optional: Add a border around the video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: Add shadow */
}

.rental_banner {
    /*display: flex;*/
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem 10%;
    background-color: rgb(239, 239, 239);

}

.rental_banner_img {
    width: 100%;
    /*background-color: #E9EAF2;*/
    padding: 0rem;
    display: flex;
    text-align: center;
    align-items: center;
}

.rental_banner_img img {
    width: 100%;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

.rental_banner_info {
    /*background-color: #171F2D;*/
    width: 100%;
    padding: 1rem 2rem;
}

.rental_banner_info h1 {
    padding: 1rem 0rem;
    /*color: white;*/
    color: black;
}

.rental_banner_info p {
    font-size: 1rem;
    padding-bottom: 2rem;
    color: #838383;
}

/************************************Your Ultimate Space Travel Hub***************************/
.service {
    padding: 7rem 5rem;
    line-height: 4rem;
    text-align: center;
    background-color: rgb(239, 239, 239);
}

.service .service_info h1 {
    font-size: 2.5rem;
}

.service .service_img {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.service_img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service_img div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_img img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

/* Hover effect for image */
.service_img img:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.service_img img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

/* Tooltip styling */
.service_img div::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    background: #efefef;
    color: rgb(0, 0, 0);
    padding: 10px 10px 10px 10px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease; /* Match the 0.3s timing */
}

/* Show tooltip with same timing as image scale */
.service_img div:hover::after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease; /* Match the 0.3s timing */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service_img {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service_img img:hover {
        transform: scale(1.15);
    }

}


/*******************************************Feature listing starts here*******************************************/
.featured_listing{
    text-align: center;
    padding: 5rem 20px; /* Change from percentage to fixed padding */
    background-color: #FFFFFF;
    width: 100%; /* Add this */
    box-sizing: border-box; /* Add this */
}
.featured_listing h1 {
    padding-bottom: 3.5rem;
    padding-bottom: 1rem;
}
.featured_listing .card a{
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: black;
    font-weight: bolder;
}

.card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%; /* Add this */
    box-sizing: border-box; /* Add this */
}

.brand_card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%; /* Add this */
    box-sizing: border-box; /* Add this */
}

/* Image container to maintain square aspect ratio */
.brand-card .image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates 1:1 aspect ratio */
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}


@media (max-width: 768px) {
    .brand_card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        width: 100%; /* Add this */
        box-sizing: border-box; /* Add this */
    }
}

.featured_listing .featured_listing_card img{
    width: 100%;
    border-radius: 6px;
}
.featured_listing .featured_listing_card .featured_listing_card_info{
    background-color: whitesmoke;
    text-align: left;
    padding: 0.5rem;
}
.featured_listing .featured_listing_card .featured_listing_card_info .property_title{
    display: flex;
    justify-content: space-between;
}
.featured_listing .featured_listing_card .featured_listing_card_info p{
    padding-bottom: 0.4rem;
    border-bottom: 1px solid black;
}

/*checkout page*/

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-summary, .payment-details {
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    padding: 0.25rem;
}

.qty-btn {
    padding: 0.25rem 0.5rem;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
}

.price-summary {
    margin-top: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-row.total {
    font-weight: bold;
    border-top: 2px solid #eee;
    margin-top: 1rem;
    padding-top: 1rem;
}

.payment-form .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
}

.checkout-btn:hover {
    background: #000000;
}

@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

/*order complete*/
.order-complete-container {
    min-height: 100vh;
    padding: 2rem;
    background: #f8f9fa;
    margin-top: 80px; /* Adjust based on your header height */
}

.order-success {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: #000000;
}

.order-success h1 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.order-number {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.confirmation-message {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.order-details, .order-summary {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.product-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

/* Image container with fixed aspect ratio */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates 1:1 aspect ratio */
    overflow: hidden;
}

/* Image styling */
.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures image covers the area without distortion */
    border-radius: 8px; /* Optional: if you want rounded corners */
}


/* performance chart */
.sales-chart-container {
    position: relative;
    width: 100%;
    padding-top: 44.25%; /* Creates variable aspect ratio */
    overflow: hidden;
}

.sales-chart-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures image covers the area without distortion */
    border-radius: 8px; /* Optional: if you want rounded corners */
}

.total-section {
    margin-top: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.total-row.final {
    font-weight: bold;
    border-top: 2px solid #eee;
    margin-top: 1rem;
    padding-top: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn.secondary {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.btn.secondary:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .order-complete-container {
        padding: 1rem;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

/* Frequently Bought Together Styles */
.frequently-bought {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.bundle-container {
    margin-top: 2rem;
}

.bundle-products {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bundle-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.bundle-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bundle-item input[type="checkbox"] {
    position: absolute;
    top: 10px;
    right: 10px;
}

.bundle-item .price {
    display: block;
    color: #000000;
    font-weight: bold;
    margin-top: 0.5rem;
}

.fa-plus {
    color: #000000;
    font-size: 1.5rem;
}

.bundle-total {
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.bundle-total p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bundle-total span {
    font-weight: bold;
    color: #000000;
}

/* Discover Brands Styles */
.discover-brands {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-info h3 {
    margin-bottom: 0.5rem;
}

.brand-info p {
    color: #707070;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #000000;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: #000000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .bundle-products {
        flex-direction: column;
    }
    
    .fa-plus {
        transform: rotate(90deg);
    }
    
    .bundle-item {
        width: 100%;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/*spacer div*/

.property_features {
    margin: 2rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #eee; /* Optional: adds a line below accreditation */
}

.section-spacer {
    height: 2rem; /* Adjusts space between sections */
}

.featured_btn {
    margin-top: 0.5rem;
    text-align: center;
}


/* Adjust the main grid layout */
.seller-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr; /* Changed from 2fr 1fr to make product section wider */
    gap: 2rem;
    width: 100%;
}

/* Make the gallery section fuller */
.product-gallery {
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 2rem; /* Increased padding */
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.main-image {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.main-image img {
    width: 100%;
    height: 500px; /* Increased height */
    object-fit: cover;
    border-radius: 8px;
}

/* Adjust thumbnail strip */
.thumbnail-strip {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.thumbnail {
    width: 100px; /* Increased from 80px */
    height: 100px; /* Increased from 80px */
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-management {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .seller-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.product_info.seller-product {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product_info.seller-product {
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
}

.seller-analytics {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


.thumbnail-container {
    width: 100%;
    padding: 1rem 0;
    position: relative;
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
    overflow-x: scroll !important; /* Force scrollbar to always show */
    padding: 0.5rem;
    padding-bottom: 20px; /* Space for scrollbar */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thick; /* For Firefox */
    scrollbar-color: #666 #e0e0e0; /* For Firefox */
}

/* Always show scrollbar for WebKit browsers */
.thumbnail-strip::-webkit-scrollbar {
    -webkit-appearance: none;
    width: auto;
    height: 12px;
    background: #f1f1f1;
    border-radius: 6px;
    display: block !important; /* Force display */
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.1);
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 6px;
    min-width: 60px;
    border: 1px solid #555;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.thumbnail-strip::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Force scrollbar visibility for different browsers */
.thumbnail-strip {
    -ms-overflow-style: scrollbar !important; /* For Internet Explorer */
    overflow: -moz-scrollbars-horizontal !important; /* For Firefox */
    overflow-y: hidden !important; /* Hide vertical scrollbar */
}

/* Rest of your thumbnail styles remain the same */
.thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #000000;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Seller Product Page Styles */
.seller-product {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-status {
    display: flex;
    flex-direction: column; /* Changed from row to column */
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-section {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #e1f7e1;
    color: #2e7d32;
}

.status-badge.active {
    background: #e1f7e1;
    color: #2e7d32;
    width: 40%;
    text-align: center;
}

.seller-action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-edit, .btn-delete {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-edit {
    background: #007bff;
    color: white;
    border-radius: 10px;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.product-details {
    margin: 2rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.certification-badges {
    display: flex;
    gap: 1rem;
    margin-top: 0rem;
    flex-direction: column;
}

.badge {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
}

.seller-analytics {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.analytics-card {
    margin-bottom: 2rem;
    padding: 0rem 1.5rem 1.5rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.chart-container {
    margin-top: 1rem;
    height: 300px;
    background: #fff;
    border-radius: 4px;
}

.orders-list {
    margin-top: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.order-info {
    display: flex;
    gap: 1rem;
}

.order-date {
    color: #666;
}

@media (max-width: 768px) {
    .product-stats {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* Product Gallery Styles */
.product-gallery {
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.main-image {
    position: relative;
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.image-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.btn-upload, .btn-manage {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-upload:hover, .btn-manage:hover {
    background: #e9ecef;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .gallery-management {
        flex-direction: column;
    }
}

.btn-upload:hover, .btn-manage:hover {
    background: white;
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #007bff;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px dashed #ddd;
    color: #666;
}

.add-photo:hover {
    border-color: #007bff;
    color: #007bff;
}


/****************************************featured listing ends here**************************************/
/*****************************************Footer section start*****************************************/




#footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the video covers the entire background */
    z-index: -1; /* Keeps the video behind other content */
}



.footer-video-info {
    position: relative;
    z-index: 10;  /* Ensures the content stays above everything else */
    text-align: center;
    color: rgb(255, 255, 255); /* Adjust text color for visibility */
    pointer-events: auto; /* Ensures elements are clickable */
}

.footer {
    margin: none;
    color: white;
    /*padding:2rem;*/
    padding: auto 7%;
    line-height: 2rem;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 2; /* Ensure it appears above the sidebar */
}

.footer .footer_main { /* most bottom section */
    border-bottom: 0px solid white;
    display: flex;
    /*flex-direction: row;*/
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 7rem 0.5rem;
}

.footer_link .link_column a,
.footer_main .footer_info p{
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 400;
}
.footer_main .footer_info a{
    font-weight: bolder;
    font-size: 1rem;
    color: white;
}
.link_column {
    /*border: 1px solid red;*/
    display: flex;
    justify-content: space-between;

    /*flex-direction:column; */

}
.footer_link .link_column> div {
    display: grid;
    padding-right: 4rem;
}

.footer_main .email {
    padding: .8em;
    /*border-radius: 100rem;*/
    border-radius: 99rem 0rem 0rem 99rem;
    width: 70%;
    height: 3rem;
    margin: .5rem auto;
}
.footer_main label button{
    padding: .8em;
    border-radius: 0rem 99rem 99rem 0rem;
    height: 3rem;
    background-color: rgb(0, 0, 0);  /* subscribe button */
    color: white;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
}

.footer_main label button:hover {
        box-shadow: inset 20rem 0 0 0 black;
        border: 1px solid white;
        color: white;
    }
.footer_newsletter > div{
    color: #ffffff;
}
.footer_newsletter > div input{
    background-color: transparent;
}
.footer_newsletter a {
    color: #ffffff;
    text-decoration: underline;
}
.footer_secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
    padding: 1rem 0;
}

.footer_secondary p {
    /*align-items: center;*/
    text-align: center;
}
.footer_secondary i{
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 50%;
    background-color: white;
    color: black;
}
.footer_secondary p i:hover{
    color: white;
    background-color: black;
}



/*************************************MEDIA QUERY starts here********************************/

@media (max-width:820px) {

    header .icons #menu-bars {
        display: inline-block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        border-bottom: .1rem solid rgba(0, 0, 0, .2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a {
        display: block;
        padding: 0.75rem;
        margin: 0.5rem;
        font-size: 1rem;
        background: #eee;
    }

    header .icons a {
        font-size: 1.2rem;
        padding: .5rem 1.1rem;
        border-radius: 3rem;
    }

    .home .home-slider .slide .content h3 {
        font-size: 5rem;
    }

    .hero .hero-info h1 {
        font-size: 2rem;
    }
    .stats {
        padding: 2.5rem 10%;
    }
    .stats>div h1 {
        font-size: 1.4rem;
    }

    .rental_banner {
        display: grid;
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .rental_banner .rental_banner_img,
    .rental_banner .rental_banner_info {
        width: 100%;
        padding: 1rem 5%;
    }

    .rental_banner .rental_banner_info h1 {
        padding: 0.75rem 0rem;
        font-size: 1.75rem;
    }

    .rental_banner_info p {
        font-size: 1rem;
        padding-bottom: 1rem;
    }

    .service {
        padding: 2.5rem;
        line-height: 2rem;
    }

    .service .service_info h1 {
        font-size: 1.75rem;
    }

    .service .service_img {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        line-height: 4rem;
        padding-top: 2rem;
    }
    
    .footer_main {
        padding: 3rem 1rem !important;
    }
    
    .footer_info,
    .footer_link,
    .footer_newsletter {
        width: 100% !important;
        padding: 1rem 1rem 1rem 2rem !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    footer .footer_secondary{
        padding-top: 1rem;
    }
    
    .footer_newsletter{
        margin-top: 1rem !important;
    }
    
    .card{
        grid-template-columns: 1fr 1fr;
    }
    .main_contact{
        grid-template-columns: 1fr!important;
    }
    .contact .service .service_img{
        line-height: 2.5rem;
    }
    .contact .service .service_img img{
        height: 75px;
        width: 75px;
    }
    .contact .service .service_img p{
        margin-bottom: 1rem;
    }
    .signup{
        display: grid;
        grid-template-columns: 1fr!important;
    }
    .signup_image{
        display: none!important;
    }
    .signup_form form{
        width: 65%!important;
        justify-content: center;
    }
    .goals_info{
        grid-template-columns: 1fr !important;
    }
    .goals_info .goal_img{
        display: none;
    }
}






@media (max-width:400px) {
    header .logo {
        font-size: 1.5rem;
    }

    header .icons a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .hero .hero-info form .search {
        padding: 0.75rem 1rem;
    }

    .hero .hero-info form .btn {
        padding: 0.75rem 1rem;
    }

    .hero .hero-info form .btn:hover {
        box-shadow: inset 30rem 0 0 0 black;
        color: white;
    }

    .stats {
        padding: 1rem 10%;
    }

    .stats>div h1 {
        font-size: 1.5rem;
    }

    .rental_banner .rental_banner_info h1 {
        font-size: 1.5rem;
        padding: 0.5rem 0rem;
    }

    .rental_banner_info p {
        font-size: 0.75rem;
        padding-bottom: 1rem;
    }

    .service .service_img {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service {
        padding: 2.5rem;
        line-height: initial;
    }
    .footer_main .footer_newsletter label input{
        width: 70%;
      }
    footer .footer_main{
        padding: 3rem 0.5rem!important;
    }

    .footer_link .link_column> div {
        display: grid;
        padding-right: 2rem;
    }

    .card{
        grid-template-columns: 1fr;
    }
    .contact .service .service_img{
        line-height: 2rem;
    }
    .contact .service .service_img img{
        height: 50px;
        width: 50px;
    }
    .contact .service .service_img p{
        margin-bottom: 1rem;
    }
    .main_contact .map iframe{
        height: 400px;
    }
    .signup_form form{
        width: 80%!important;
        justify-content: center;
    }
    #signin, .or, .links {
        width: 90%!important;
    }
}






@media (max-width: 768px) {
    body {
        overflow: auto;
    }

    #right {
        display: none;
    }

    #left {
        justify-content: start;
        margin-top: 4vh;
    }

    #signin .logo {
        margin-bottom: 2vh;
    }

    #signin .text-input {
        margin-bottom: 0.7rem;
    }

    #main-footer {
        padding-top: 1rem;
    }
    .signup_image h1{
        padding: 2rem;
        color: white;
    }
    .member_info{
       grid-template-columns: 1fr!important;
}

    .stats h1 {
    text-align: center;
    }
    
    
    .stats p {
    text-align: center;
    }



}

/*************************************MEdia query ends here********************************/








/*****************************************login/signup Section starts*****************************************/
#wrapper {
    display: flex;
    flex-direction: row;
}

#left {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#right {
    flex: 1;
}

/* Sign In */
#signin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    padding-bottom: 1rem;
}

#signin form {
    width: 80%;
    padding-bottom: 3rem;
}

#signin .logo a {
    font-weight: 300;
    font-size: 2.5rem;
    font-weight: bolder;
    color: black;
    padding-bottom: 2rem;
}

#signin label {
    font-size: 0.9rem;
    line-height: 2rem;
    font-weight: 500;
    float: left;
}

#signin .text-input {
    margin-bottom: 1.3rem;
    width: 100%;
    border-radius: 3rem;
    /*background: #181818;*/
    background-color: white;
    border: 1px solid #555;
    color: #434343;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
}

#signin .primary-btn {
    border-radius: 3rem;
    color: white;
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
    padding: 0.5rem 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    font-weight: 500;
    text-decoration: none;
}

#signin .primary-btn:hover {
    box-shadow: inset 20rem 0 0 0 black;
    color: white;
}

#signin,
.or,
.links {
    width: 60%;
}

#signin .links a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

#signin .or {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.2rem;
    align-items: center;
}

#signin .or .bar {
    flex: auto;
    border: none;
    height: 1px;
    background: #000;
}

#signin .or span {
    color: #000;
    padding: 0 0.8rem;
}

/* Showcase - on login page */
#showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.65)), url(../image/login_img.jpg) no-repeat center center / cover;
    /*background: url(../image/login_img.jpg) no-repeat center center / cover;*/
    height: 100vh;
    text-align: center;
}

/* Showcase - on seller_login page */
#seller_showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.65)), url(../image/scaffold.jpg) no-repeat center center / cover;
    /*background: url(../image/login_img.jpg) no-repeat center center / cover;*/
    height: 100vh;
    text-align: center;
}


#showcase .showcase-text {
    font-size: 3rem;
    width: 100%;
    color: #fff;
    margin-bottom: 1.5rem;
}

#seller_showcase .seller_showcase-text {
    font-size: 3rem;
    width: 100%;
    color: #fff;
    margin-bottom: 1.5rem;
}

#showcase .secondary-btn {
    width: 60%;
    margin: auto;
}

#seller_showcase .secondary-btn {
    width: 60%;
    margin: auto;
}

/* Footer */
#main-footer {
    /*color: #ccc;*/
    text-align: center;
    font-size: 0.8rem;
    max-width: 80%;
    padding-top: 5rem;
}

#main-footer a {
    color: #f96816;
    text-decoration: underline;
}

/* Button */

.primary-btn:hover {
    box-shadow: inset 10rem 0 0 0 black;
    color: white;
}

.secondary-btn {
    outline: none;
    padding: 0.5rem 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    border: 0px solid #000;
    border-radius: 3rem;
    font-weight: 500;
    background: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
    font-size: 1.15rem;
}


.secondary-btn:hover {
    /*box-shadow: inset 30rem 0 0 0 black;*/
    color: rgb(0, 0, 0);
    font-weight: 500;
}

/* Media Queries */
@media (min-width: 1200px) {
    #left {
        flex: 4;
    }

    #right {
        flex: 6;
    }
}
/*************************************login section ends here********************************/
/*************************************signup section starts here********************************/
.signup{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.signup_image{
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, rgba(1, 4, 42, 0.3) 60%, rgba(0, 0, 0, 0.65) 70%), url(../image/color.jpg) no-repeat center center / cover;
    height: 100vh;
    display: flex;
    text-align: center;
}

.seller_signup_image{
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.65)), url(../image/sky.jpg) no-repeat center center / cover;
    height: 100vh;
    display: flex;
    text-align: center;
}

.signup_image h1{
    padding: 2rem;
    color: white;
}

.seller_signup_image h1{
    padding: 2rem;
    color: white;
}

.signup_form{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.signup_form form{
    width: 50%;
    justify-content: center;
}
.signup_form form h2{
    text-align: center;
}
.signup_form form h1{
    text-align: center;
    padding-bottom: 0.5rem;
}
.signup_form label {
    font-size: 0.9rem;
    line-height: 2rem;
    font-weight: 500;
    width: 100%;
    display: block;
}

.signup_form .text-input {
    margin-bottom: 1.3rem;
    width: 100%;
    border-radius: 3rem;
    background-color: white;
    border: 1px solid #808080;
    color: #484848;
    padding: 0.5rem 1rem;
    line-height: 1.3rem;
}.signup_form .btn_wrapper{
    display: flex;
    justify-content: center;
}
.signup_form .btn {
    border-radius: 3rem;
    color: white;
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 black;
    transition: ease-out 0.5s;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
}

.signup_form .btn:hover {
    *box-shadow: inset 20rem 0 0 0 black;*/
    color: white;
}
.signup_form .or {
    display: flex;
    flex-direction: row;
    margin: 1rem 0rem;
    align-items: center;
}

.signup_form .or .bar {
    width: 100%;
    border: none;
    height: 1px;
    background: #000;
}
.signup_form .or span {
    color: #000;
    padding: 0 0.8rem;
}
.signup_form .links,
.signup_form .or {
    width: 100%;
}
.main-footer {
    text-align: center;
    font-size: 0.8rem;
    padding-top: 3rem;
}

.main-footer a {
    color: #f96816;
    text-decoration: underline;
}
/*************************************Signup section ends here********************************/



/*************************************Contact Page starts here********************************/
.contact_banner{
    height: 40vh;
    margin-top: 10vh;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    background-image: linear-gradient(to bottom, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.5)), url(../image/contact_banner.jpg);
}
.contact_banner > div{
    color: white;
}
.contact_banner > div i{
    padding-top: 1.5rem;
    font-weight: 1000;
    text-decoration: none;
}
.contact_banner > div i a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
.contact .service{
    background-color: white;
}
.contact .service .service_img p{
    font-size: 1rem;
    color: black;
}
.main_contact{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.main_contact .map{
    width: 100%;
}
.main_contact .contact_form{
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_contact .contact_form form{
    padding: 1rem;
}
.main_contact .contact_form form h1{
    font-size: 2.5rem;
    font-weight: bolder;
}
.main_contact .contact_form form input{
    border-radius: 1rem;
    width: 100%;
    padding: 1.5rem;
    margin: 0.5rem;
    margin-left: 0rem;
}
.main_contact .contact_form form textarea{
    padding: 1.5rem;
    height: 10rem;
    width: 100%;
    border-radius: 1.25rem;
    resize: none;
    margin-bottom: 1.5rem;
}
.main_contact .contact_form form a{
    margin-bottom: 1rem;
}




/*************************************About Page starts here********************************/

.about_banner{
    height: 30vh;
    margin-top: 10vh;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    background-image: linear-gradient(to bottom, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.5));
}

#about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 29.4vh;
    object-fit: cover;  /* Ensures the video covers the entire background */
    z-index: -1; /* Keeps the video behind other content */
}

.about-info { /* It all starts here. */
    position: relative;
    z-index: 10;  /* Ensures the content stays above everything else */
    text-align: center;
    color: rgb(255, 255, 255); /* Adjust text color for visibility */
    pointer-events: auto; /* Ensures elements are clickable */
}

.about_banner > div{
    color: white;
}
.about_banner > div i{
    padding-top: 1.5rem;
    font-weight: 1000;
    text-decoration: none;
}
.about_banner > div i a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
.goals_info{
    padding: 5rem 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
}
.goals_info .goals{
    line-height: 2;
}
.goals_info .goal_img{
    text-align: center;
}
.member_infos{
    padding: 3rem 7%;
    background-color: #efefef;
}
.member_infos h1{
    text-align: center;
    padding-bottom: 2rem;
}
.member_info{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.member_info .user{
    padding: 2rem;
}
.member_info .user img{
    height: 180px;
    width: 180px;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.member_info .user p{
    padding-top: .3rem;
    color: rgb(115, 115, 115);
}


/*.member_info .user p i{
    padding: .5rem;
    font-size: 25px;
}
.member_info .user p i: hover{
    color: blue;
}*/
.member_info .user p i{
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    color: white;
}
.member_info .user p i:hover{
    color: white;
    background-color: black;
}
/*************************************buy Page starts here********************************/
.buy_banner{
    height: 40vh;
    margin-top: 10vh;
    background-position: center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    background-image: linear-gradient(to bottom, rgba(1, 4, 42, 0.3), rgba(0, 0, 0, 0.5)), url(../image/contact_banner.jpg);
}
.buy_banner > div{
    color: white;
}

.buy_banner form {
    margin-top: 1rem;
    display: flex;
}

.buy_banner form .search {
    padding: 1rem 2rem;
    border-radius: 3rem;
    width: 80%;
}


/*************************************Sell Page starts here********************************/
.sell_wraper .sell_info{
    padding: 5rem 7%;
    text-align: center;
}
.sell_wraper .sell_info h1{
    padding: 1rem;
}






/*************************************Sell Page starts here********************************/
.sell_wraper .sell_info{
    padding: 5rem 7%;
    text-align: center;
}
.sell_wraper .sell_info h1{
    padding: 1rem;
}
.sell_card_wraper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 2rem;
    background-color: white;
    text-align: center;
}
.sell_card_wraper .sell_card{
    padding-top: 1rem;
    /*border: 2px solid black;*/
}
.sell_card_wraper .sell_card h2{
    padding-bottom: 1rem;
}
.sell_card_wraper .sell_card p{
    padding: 0rem 1rem;
}




/*************************************product Page starts here********************************/

.outer-slider{
    text-align: center;
    padding: 1rem 7%;
    margin-top: 10vh;
    width: 100%;
}

.owl-carousel {
    max-width: 100%;
}

.product_info{
    padding: 1rem 7% 6rem 7%;
}
.product_info .property_feature{
    align-items: center;
    display: flex;
}
.product_info h3{
    padding: 2rem 0rem;
}
.product_info .property_features{
    border-radius: 20px;
}

.product_info .property_feature{
    background-color: #ffffff;
    border-bottom: 2px solid black;
    border-radius: 5px;
}

.product_info .product_contact p a{
    font-weight: bold;
    font-size: 16px;
    color: black;
    text-decoration: underline;
}





/*************************************404 Page starts here********************************/
.e404_info {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.e404_info img{
    padding: 1.3rem;
    padding-bottom: 2.3rem;
}
.e404_info p{
    padding: 1rem;
}

     /*-----------------------------------------CSS for rent.html------------------------------*/
.rent-container{
    background-color: aquamarine;
    padding: 3rem;
    text-align: center;
    
}

.rent-container .card{
    background: white ;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0px 10px 2px #b2bec3;
    text-align: center;
    display: flex;
    flex-direction: column;
/*    display: grid;*/
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 1rem;
}
.card .title{
    font-size: 18px;
    font-weight: bold;
}
.card img{
    max-width: 100%;
    border-radius: 5px;
}

.card .text{
    text-align: left;
    margin:0 0 .5rem 2rem;
    
}
.rent-btn{
    background-color: brown;
    border:none;
    padding: 1rem;
    border-radius:5px;
    font-weight: bold;
}
.rent-btn:hover{
    box-shadow: 0px 5px 5px #b2bec3;
    color: white;
}

















