.header {
    width:100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-nav img {
    height: 65px;
    width: auto;
}

.search-box {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 5px 10px;
    background: white;
}

    .search-box input {
        border: none;
        outline: none;
        padding: 8px;
        width: 100%;
        font-size: 14px;
    }

.search-btn {
    background: #1877f2;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .search-btn:hover {
        background: #1664d9;
    }

.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #1877f2;
        }

.auth-buttons {
    display: flex;
    gap: 16px;
}

.login-nav, .register-nav {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.login-nav {
    color: #1877f2;
    border: 1px solid #1877f2;
}

.register-nav {
    background: #1877f2;
    color: white;
}

.login-nav:hover {
    background: #f0f7ff;
}

.register-nav:hover {
    background: #1664d9;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4b5563;
    padding: 4px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 340px;
    height: 100vh;
    background: white;
    transition: left 0.3s ease-in-out;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

    .mobile-nav.active {
        left: 0;
    }

.mobile-nav-header {
    padding: 1px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-links {
    padding: 20px;
}

    .mobile-nav-links a {
        display: block;
        padding: 12px 0;
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        border-bottom: 1px solid #e5e7eb;
    }

.mobile-auth-buttons {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #4b5563;
    padding: 4px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

@media (max-width: 768px) {
    .navbar {
        gap: 10px;
    }

    .logo-nav img {
        height: 50px;
    }

    .nav-links, .auth-buttons {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .search-box {
        max-width: 200px;
    }

    .navbar {
        justify-content: flex-start;
    }

    .menu-btn {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .search-box {
        max-width: 250px;
    }
}













.card {
    border: 1px solid #ddd;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Medium screens and up */
@media (min-width: 768px) {
    .card-img-top {
        height: 220px;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .card-img-top {
        height: 260px;
    }
}

.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

    .status-tags p {
        padding: 3px 6px;
        border-radius: 4px;
        font-size: 10px;
        margin: 0;
    }

/* Larger status tags on bigger screens */
@media (min-width: 768px) {
    .status-tags p {
        padding: 4px 8px;
        font-size: 11px;
    }
}

.in-stock {
    background-color: #28a745;
    color: white;
}

.equipment-type {
    background-color: #17a2b8;
    color: white;
}

.available {
    background-color: #ffc107;
    color: black;
}

.specifications {
    margin: 10px 0;
    color: #666;
    font-size: 12px;
}

@media (min-width: 768px) {
    .specifications {
        font-size: 12px;
    }
}

.btn-primary {
    width: 100%;
    margin-top: 6px;
    font-size: 9px;
    padding: 3px 6px;
}

.text-primary {
    font-size: .9rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .text-primary {
        font-size: 1.0rem;
    }
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.3rem;
    }
}

/* Pagination styles */
.pagination-container {
    width: 100%;
}

.page-link {
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.listings-page {
    display: flex;
    flex-wrap: wrap;
}






/*<<-----------index caroual styles------------->>*/
.carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

    .carousel-slide.active {
        opacity: 1;
        display: block;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        max-height: 600px;
        display: block;
        filter: brightness(0.8); /* Darkens the image slightly */
    }

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 60%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

    .carousel-overlay h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color:#1877f2;
    }

    .carousel-overlay p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color:#eab40a;
    }

.search-bar {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 8px;
}

    .search-bar h5 {
        color: #333;
        margin: 0;
    }

.carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn-scroll, .next-btn-scroll {
    background: rgba(255, 255, 255, 0.3);
    color: #333;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .prev-btn-scroll:hover, .next-btn-scroll:hover {
        background: rgba(255, 255, 255, 0.6);
    }

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .carousel {
        height: 250px;
    }

    .carousel-overlay h1 {
        font-size: 1rem;
    }

    .carousel-overlay p {
        font-size: .8rem;
    }

    .search-bar {
        padding: 10px;
    }
    .search-bar {
        display:none;
    }

        .search-bar h5 {
            display:none;
        }
}







/* Features Section */
.Why-Choose-card {
    border: 4px solid #0099ff;
    padding: 40px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 7px rgba(0,0,0,0.3);
}

#features {
    background-color: #e6f5ff;
    padding: 60px 0;
}

    #features h2 {
        margin-bottom: 20px;
    }

    #features .row {
        display: flex;
        justify-content: space-around;
        gap: 20px;
    }

    #features .col-md-4 {
        max-width: 300px;
        margin: 0 auto;
    }

        #features .col-md-4 i {
            font-size: 40px;
            color: #007bff;
            margin-bottom: 10px;
        }







/* ---------House card scroler section--------------*/
/* Section Styles */
.scroller-card-indi {
    background-color: #ecf0f8;
    padding: 20px;
}

/* Header Styles */
.text-center h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.text-center a {
    color: #666;
    transition: color 0.3s ease;
}

    .text-center a:hover {
        color: #333;
    }

/* Slider Container */
.d-flex {
    position: relative;
    padding: 10px 0;
}

/* Slider Navigation Icons */
.slider-icon {
    cursor: pointer;
    display: flex;
    text-align:center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

    .slider-icon:hover {
        background: #f0f0f0;
        transform: scale(1.1);
    }

/* Slider Wrapper */
.slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
    margin: 0 20px;
}

/* Slider Track */
.slider-pop {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

/* Card Styles */
.headphone-card {
    min-width: 320px;
    height:330px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

    .headphone-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.headphone-caes-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom:10px;
}

.card-body {
    padding: 15px;
}

.company-name {
    color: #333;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .headphone-card {
        min-width: 280px;
        height:290px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 15px;
    }

    .text-center h2 {
        font-size: 24px;
    }

    .slider-wrapper {
        margin: 0 10px;
    }

    .headphone-card {
        min-width: calc(100vw - 100px);
        margin-right: 0;
        height:240px;
    }

    .headphone-caes-img {
        height: 200px;
    }

    .card-body {
        padding: 12px;
    }

    .company-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .headphone-card {
        min-width: calc(100vw - 80px);
    }

    .slider-wrapper {
        margin: 0 5px;
    }

    .headphone-caes-img {
        height: 190px;
    }
}













    /* Card Container */
    .property-card {
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

    /* Card Image */
    .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    .property-card:hover .card-img {
        transform: scale(1.05);
    }

    /* Overlay */
    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .property-card:hover .card-overlay {
        opacity: 1;
    }

    /* Text Styles */
    .property-count {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 400;
        color: #f1f1f1;
    }

    .property-type {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: bold;
        color: #fff;
    }

    /* Button */
    .details-btn {
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        border-bottom: 1px solid #fff;
        padding-bottom: 2px;
        transition: color 0.3s ease-in-out;
    }

        .details-btn:hover {
            color: #f9c74f; /* Highlight color on hover */
        }

        .details-btn .arrow {
            font-size: 16px;
            font-weight: bold;
        }







    /* Register Page Form------- */
    .register-container {
        display: flex;
        flex-wrap: wrap;
        height: 100vh;
        width: 100%;
        background-color: #f8f9fa;
        overflow: hidden;
    }

    .register-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background-color: #f0f0f0;
    }

        .register-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .register-form {
        flex: none;
        width: 500px;
        background: #fff;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateY(50px);
        opacity: 0;
        animation: slideUp 0.6s ease forwards;
    }
    
    /* Animation */
    @keyframes slideUp {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .register-title {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-top: 2px;
        margin-bottom: 20px;
        color: #1877f2;
    }

    .form-group {
        margin-bottom: 16px;
    }

    label {
        display: block;
        font-size: 14px;
        color: #555;
        margin-bottom: 5px;
    }

    .form-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

        .form-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

    .form-step {
        display: none;
    }

        .form-step.active-step {
            display: block;
        }

    /* Buttons */
    .next-btn,
    .prev-btn,
    .register-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
    }

    .next-btn {
        background-color: #007bff;
        color: #fff;
    }

    .prev-btn {
        background-color: #6c757d;
        color: #fff;
    }

    .register-btn {
        background-color: #28a745;
        color: #fff;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .register-container {
            flex-direction: column;
            height: auto;
        }

        .register-image {
            order: 2;
            height: 250px;
        }

        .register-form {
            width: 100%;
            box-shadow: none;
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .register-form {
            padding: 15px;
        }

        .register-title {
            font-size: 20px;
        }
    }

    .input-group {
        display: flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 6px;
        overflow: hidden;
        height: 44px;
    }

    .input-group-text {
        background-color: #f8f9fa;
        border: none;
        cursor: pointer;
    }

        .input-group-text i {
            font-size: 16px;
            color: #007bff;
            transition: color 0.3s;
        }

            .input-group-text i:hover {
                color: #0056b3;
            }

    /*ForgotPassword/ResetPassword design*/
    .form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 90vh;
    }





    /*------UserLogin form command Page Css-------*/
    .login-container {
        display: flex;
        flex-wrap: wrap;
        height: 100vh;
        width: 100%;
        
    }

    .login-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

        .login-image img {
            width: 100%;
            height: 640px;
            object-fit: contain;
        }

    .login-form {
        flex: none;
        width: 500px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .login-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 14px;
        color: #333;
        text-align: center;
    }

    /* Form Fields */
    .form-group {
        margin-bottom: 18px;
    }

    label {
        display: block;
        font-size: 14px;
        color: #555;
        margin-bottom: 5px;
    }

    .form-input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

        .form-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

    .login-btn {
        width: 100%;
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .login-btn:hover {
            background-color: #0056b3;
        }

    .login-links {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

        .login-links a {
            font-size: 14px;
            color: #007bff;
            text-decoration: none;
        }

            .login-links a:hover {
                text-decoration: underline;
            }

    /* Social Login */
    .social-login {
        margin-top: 27px;
        display: flex;
        justify-content: space-between;
    }

    .google-login,
    .facebook-login {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: bold;
        border: 1px solid #ccc;
        border-radius: 5px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .google-login {
        margin-right: 10px;
        background-color: #f8bf3a;
        color: aliceblue;
    }

        .google-login:hover {
            background-color: #f6af09;
            color: aliceblue;
        }

    .facebook-login {
        background-color: #4267b2;
        color: #fff;
    }

        .facebook-login:hover {
            background-color: #365899;
            color: aliceblue;
        }

    /* Responsive Design */
    @media (max-width: 768px) {
        .login-container {
            flex-direction: column;
            height: auto;
        }

        .login-form {
            width: 100%;
            box-shadow: none;
            padding: 20px;
        }

        .login-image {
            order: 2;
            height: 250px;
        }

            .login-image img {
                height: 100%;
            }
    }

    @media (max-width: 480px) {
        .login-form {
            padding: 15px;
        }

        .login-title {
            font-size: 20px;
        }

        .form-input {
            font-size: 13px;
        }

        .login-btn {
            font-size: 14px;
        }

        .social-login {
            flex-direction: column;
            gap: 10px;
        }

        .google-login,
        .facebook-login {
            margin-right: 0;
            width: 100%;
        }
    }


    /* Profile Header */
    .profile-header {
        background: linear-gradient(20deg, #007bff, #f9c74f);
        padding: 20px;
        color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

        .profile-header img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid white;
            margin: 10px;
        }

    .update-btn {
        margin-top: 10px;
        font-size: 14px;
    }


    /* Responsive Grid System */
    @media (max-width: 768px) {
        .row .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .info p {
            display: flex;
            justify-content: left;
            align-items: center;
        }
    }








/*<<-------Product Create ------>>*/
#formSteps{
    font-size:14px;
}

.prev-step{
    background-color:darkgray;
    color:white;
    border-radius:6px;
    padding:6px 11px;
    border:none;
}
.next-step {
    background-color: #1877f2;
    color: white;
    border-radius: 6px;
    padding: 6px 20px;
    border:none
}
.prev-step:hover {
    background-color:dimgrey;
}
.next-step:hover {
    background-color: #0063cc;
}
.Form-input-shodow input {
    border: 1px solid rgba(0, 123, 255, 0.5);
    box-shadow: 1px 3px 3px rgba(0,0,0,0.04);
    height: 45px;
    border-radius: 8px;
}
.Form-input-shodow select {
    border: 1px solid rgba(0, 123, 255, 0.5);
    box-shadow: 1px 3px 3px rgba(0,0,0,0.04);
    height: 45px;
    border-radius: 8px;
}

.form-check input{
    width:20px;
    height:20px;
}







/*small table style*/
.table-responsive {
    overflow-x: auto;
}

table.table {
    margin-bottom: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    border-radius: 7px;
}

thead th {
    white-space: nowrap;
}

.Table-head {
    background-color: #ffbb33;
}


tbody td {
    white-space: nowrap;
    max-width: 250px;
    height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
}



















/* Property-All details show  */
.property-details-container {
    padding: 30px;
    border-radius: 10px;
}

.Property-alldetails-back {
    background-color: #ffff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Title and Address */
.property-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.property-address {
    font-size: 16px;
    color: #555;
}

/* Main Image */
.main-image {
    width: 100%;
    border-radius: 8px;
    border: 3px solid #ffe699;
    margin-bottom: 20px;
    text-align: center;
    background-color: white;
}
.main-image img {
    width: 50%;
    height: 460px;
    object-fit: cover;
    
}

/* Thumbnails */
.image-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

    .image-thumbnails img {
        width: 120px;
        height: 100px;
        object-fit: cover;
        border: 2px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: border-color 0.3s;
    }

        .image-thumbnails img:hover {
            border-color: #007bff;
        }

/* Videos */
.video-section h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #333;
}

.property-video {
    width: 300px;
    height: 170px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-right: 10px;
}

/* Details Section */
.detail-label {
    opacity: 0.7;
    font-weight: normal;
    display: block; /* Make the label appear above the value */
    margin-bottom: 2px; /* Add spacing between the label and value */
    color: #666;
    font-size: 0.9rem; /* Slightly smaller font size for labels */
}

strong {
    font-weight: bold;
    display: block; /* Ensure values are on their own line */
    font-size: 1rem; /* Slightly larger font size for values */
    color: #333;
}

.details-section {
    margin-top: 30px;
    background-color: #ffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

    .details-section h4 {
        margin-bottom: 15px;
        color: brown;
        font-weight: 600;
    }

    .details-section p {
        margin: 5px 0;
    }


/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .contact-form h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form .form-control {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .contact-form button {
        width: 100%;
        padding: 10px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .contact-form button:hover {
            background-color: #0056b3;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .property-details-container {
        padding:10px;
        border-radius: 1px;
    }

    .contact-form {
        background-color: #fff;
        border-radius: 8px;
    }

    .main-image img {
        width: 100%;
        height: 300px;
    }

    .image-thumbnails {
        display: flex;
        gap: 4px;
        margin-bottom: 10px;
    }

        .image-thumbnails img {
            width: 70px;
            height: 50px;
        }

    .property-video {
        width: 100%;
        height: auto;
    }

    .contact-form {
        margin-top: 20px;
    }
}


/* Meeting Detail Labels */
.meeting-detail label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

/* Meeting Detail Values */
.meeting-detail p {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .row .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}






/*------AboutUs ---------*/
.container_main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#con_img {
    width: 600px;
    height:auto;
    object-fit:cover;
}

.container_para {
    width: 540px;
    height: auto;
    padding-top: 30px;
}
@media screen and (min-width:200px) and (max-width:698px) {
    .container_main {
        width: 100%;
        height: 780px;
        display: inline-block;
        justify-content:space-evenly;
        align-items: center;
    }

    #con_img {
        width: 350px;
        height: 260px;
    }

    .container_para {
        width: 350px;
        height: 400px;
        padding-left:20px;
    }
}




.contact-info {
    display:flex;
    justify-content:space-around;
    border:1px solid black;
    padding:20px 40px;
    border-radius:8px;
    box-shadow:rgba(0,0,0,0.3);
}








/*<<----------------Register Page Captcha style------------------>>*/
.captcha-style {
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: line-through;
    padding: 4px 12px;
    border-radius: 7px;
    font-style: italic;
    background: linear-gradient(45deg, #f06, #4a90e2);
    color: white;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
    transform: skewX(-9deg) rotate(-1deg);
    position: relative;
    overflow: hidden;
}

    /* Adding noise lines */
    .captcha-style::before,
    .captcha-style::after {
        content: "";
        position: absolute;
        width: 120%;
        height: 2px;
        background: rgba(0, 0, 0, 0.3);
        top: 50%;
        left: -10%;
        transform: rotate(-15deg);
    }

    .captcha-style::after {
        top: 30%;
        transform: rotate(15deg);
    }



















/*//Admin dashboard page design style code-------------*/

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.stat-card {
    padding: 15px;
    border-radius: 10px;
    color: white;
    height: 100%;
}

    .stat-card.production {
        background-color: var(--secondary-color);
    }

    .stat-card.inventory {
        background-color: var(--success-color);
    }

    .stat-card.orders {
        background-color: var(--warning-color);
    }

    .stat-card.downtime {
        background-color: var(--danger-color);
    }

    .stat-card .stat-icon {
        font-size: 40px;
        opacity: 0.7;
    }

    .stat-card .stat-value {
        font-size: 28px;
        font-weight: bold;
    }

    .stat-card .stat-label {
        font-size: 14px;
        opacity: 0.8;
    }

.table-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.navbar-notifications {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }

        .sidebar .nav-link span,
        .sidebar .logo span {
            display: none;
        }

        .sidebar .nav-link i {
            margin-right: 0;
        }

    .main-content {
        margin-left: 70px;
    }

    #sidebarToggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-nav {
        display: block !important;
    }
}








/*//User dashboard Design code ------------*/

.order-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

    .order-item:last-child {
        border-bottom: none;
    }

    .order-item:hover {
        background-color: rgba(0, 0, 0, 0.01);
    }

.metric-card {
    text-align: center;
    padding: 20px;
}

    .metric-card .icon {
        font-size: 32px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }

        .metric-card .icon.blue {
            background-color: rgba(33, 150, 243, 0.1);
            color: var(--info-color);
        }

        .metric-card .icon.green {
            background-color: rgba(76, 175, 80, 0.1);
            color: var(--success-color);
        }

        .metric-card .icon.orange {
            background-color: rgba(255, 152, 0, 0.1);
            color: var(--warning-color);
        }

        .metric-card .icon.purple {
            background-color: rgba(156, 39, 176, 0.1);
            color: #9c27b0;
        }

    .metric-card .value {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .metric-card .label {
        color: #666;
        font-size: 14px;
    }

.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

    .notification-item:last-child {
        border-bottom: none;
    }

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

    .notification-icon.blue {
        background-color: rgba(33, 150, 243, 0.1);
        color: var(--info-color);
    }

    .notification-icon.green {
        background-color: rgba(76, 175, 80, 0.1);
        color: var(--success-color);
    }

    .notification-icon.orange {
        background-color: rgba(255, 152, 0, 0.1);
        color: var(--warning-color);
    }

    .notification-icon.red {
        background-color: rgba(244, 67, 54, 0.1);
        color: var(--danger-color);
    }

.notification-content {
    flex-grow: 1;
}

    .notification-content p {
        margin-bottom: 0;
    }

    .notification-content .time {
        font-size: 12px;
        color: #888;
    }

.progress-card .progress {
    height: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }

        .sidebar .nav-link span,
        .sidebar .logo span {
            display: none;
        }

        .sidebar .nav-link i {
            margin-right: 0;
            font-size: 20px;
        }

    .main-content {
        margin-left: 70px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-nav {
        display: block !important;
    }
}

.mobile-nav {
    display: none;
}












.testimonial-section {
    padding: 20px 0;
    background-color: #ecf0f8;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

    .testimonial-item:hover {
        transform: translateY(-10px);
    }

.customer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.customer-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.customer-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-position {
    color: #6c757d;
    font-size: 14px;
}

.stars {
    color: #ffc107;
    margin-bottom: 5px;
}

.review-text {
    font-style: italic;
    color: #495057;
    line-height: 1.7;
}

.review-date {
    color: #6c757d;
    font-size: 12px;
    margin-top: 15px;
    text-align: right;
}

.testimonial-controls {
    text-align: center;
    margin-top: 30px;
}

.control-btn {
    background: #343a40;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease;
}

    .control-btn:hover {
        background: #212529;
    }

.carousel-indicators {
    margin-bottom: -50px;
}

    .carousel-indicators [data-bs-target] {
        background-color: #343a40;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }













/* About Us Section Styles */
.about-section {
    padding: 20px 0;
    background-color: #fff;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .about-img img {
        width: 100%;
        height: auto;
    }

.about-content {
    padding: 20px 0 20px 30px;
}

.section-title {
    margin-bottom: 30px;
}

    .section-title h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
        font-weight: 700;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background: #ff5e15;
        }

.experience-box {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.experience-years {
    font-size: 60px;
    font-weight: 800;
    color: #ff5e15;
    line-height: 1;
    margin-right: 20px;
}

.about-list {
    margin-top: 20px;
}

    .about-list li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
    }

        .about-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff5e15;
        }

/* Features Section Styles */
.features-section {
    padding: 40px 0;
    background-color: #ecf0f8;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff5e15;
    color: white;
    font-size: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1600/800') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #ff5e15;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

    .cta-btn:hover {
        background: #e54d0d;
        transform: translateY(-3px);
    }

.cta-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .cta-secondary-btn:hover {
        background: white;
        color: #333;
        transform: translateY(-3px);
    }

@media (max-width: 767px) {
    .about-content {
        padding: 20px 0;
        margin-top: 30px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-btn, .cta-secondary-btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}








/* Footer Styles */
.footer {
    background-color: #0a1429;
    color: #aaa;
    padding-top: 70px;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

    .footer-logo img {
        max-width: 180px;
        height: auto;
    }

.footer-about {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: #ff5e15;
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: #ff5e15;
    }

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-bottom {
    background-color: #050a14;
}

.footer-links li {
    margin-bottom: 10px;
}

        .footer-links li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

            .footer-links li a:before {
                content: "\f105";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                position: absolute;
                left: 0;
                color: #ff5e15;
            }

            .footer-links li a:hover {
                color: #fff;
            }

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.product-info {
    display: flex;
    margin-bottom: 15px;
}

.product-info-content h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

    .product-info-content h6 a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .product-info-content h6 a:hover {
            color: #ff5e15;
        }

.product-price {
    color: #ff5e15;
    font-weight: 600;
}

.newsletter-form {
    margin-top: 20px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 5px;
}

    .newsletter-input:focus {
        outline: none;
        background: #444;
    }

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #ff5e15;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 7px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .newsletter-btn:hover {
        background: #e54d0d;
    }

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #ff5e15;
        transform: translateY(-5px);
    }

.footer-bottom {
    background: #1a1a1a;
    padding: 20px 0;
    margin-top: 50px;
}

.copyright {
    font-size:13px;
    margin-bottom: 0;
}

.payment-methods img {
    height: 25px;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .payment-methods {
        margin-top: 15px;
        text-align: center;
    }
}







/*Offer video section style*/
.video-offer {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 110px;
    height: 165px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

    .video-offer.expanded {
        width: 320px;
        height: 500px;
        bottom: 50px;
    }


@media (max-width: 767px) {
    .video-offer {
        position: fixed;
        left: 20px;
        bottom: 20px;
        width: 58px;
        height: 80px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow: hidden;
    }

}



    .video-container {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .controls {
        position: absolute;
        top: 5px;
        right: 5px;
        display: flex;
        gap: 5px;
        z-index: 1001;
    }

    .control-btn {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        cursor: pointer;
    }

    .audio-control {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.2);
        color: white;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        z-index: 1001;
        display: none;
    }

    .expanded .audio-control {
        display: flex;
    }

    .offer-content {
        display: none;
        padding: 10px;
        color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .expanded .offer-content {
        display: block;
    }

    .offer-content p {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .offer-button {
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .offer-button:hover {
            background: #ff5252;
        }






    /*---Preloader style---*/

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.3s ease;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .preloader-hidden {
        opacity: 0;
        pointer-events: none;
    }