 
 .header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1001;
}

.header-logo img {
    height: 40px;
}

.nav-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    color: #007bff;
}

.side-nav {
height: 100%;
width: 0;
position: fixed;
z-index: 1000;
top: 0;
right: 0;
background: linear-gradient(to right, #f8b500b0, #f78a00);
overflow-x: hidden;
transition: 0.3s;
padding-top: 60px;
box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

.side-nav a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    color: #f8f9fa;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    background-color: #ffffffb4;
}

.side-nav .close-btn {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 2rem;
    color: #f8f9fa;
    transition: 0.3s;
}

/* .side-nav .close-btn:hover {
    color: #007bff;
} */
.header-icons .btn {
    font-size: 16px;
    padding: 8px 20px;
    margin: 0 10px;
    color: #fff;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-icons .btn-login {
    background: linear-gradient(to right, #667eea, #764ba2);
}

.header-icons .btn-login:hover {
    transform: translateY(-2px);
}

.header-icons .btn-post-ad {
    background: linear-gradient(to right, #f8b500, #f78a00);
}

.header-icons .btn-post-ad:hover {
    transform: translateY(-2px);
}


.side-nav .nav-heading {
    color: #f8f9fa;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid #454d54;
}
.side-nav .nav-item {
display: flex;
align-items: center;
padding: 10px 12px;
transition: 0.3s;
background: #ffffff9e;
border-radius: 11px;
margin-top: 7px;
border-bottom: 1px dashed;
margin-left: 10px;
margin-right: 10px;
}

/* .side-nav .nav-item:hover {
    background-color: #454d54;
} */

.side-nav .nav-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.side-nav .nav-item-text {
    font-size: 1rem;
}
    /* Custom styles for the section */
    .banner-section {
        position: relative;
        background-image: url('./img/banner.jpg');
        /* Replace with your background image */
        background-size: cover;
        background-position: center;
        padding: 30px 0;
        color: #fff;
        /* Text color */
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, #667eead4, #764ba2d4);
    }


    .banner-section h2 {
        font-size: 3rem;
        font-weight: 700;
        /* margin-bottom: 30px; */
    }

    .custom-section {
        padding: 10px 0;
    }

    .search-form {
        background-color: rgb(255 255 255 / 70%);
        padding: 10px;
        border-radius: 8px;
        color: black !important;
        font-weight: 500;
    }
    .search-form button {
        background: linear-gradient(to right, #f8b500, #f78a00);
        border: none;
    }

    /* Profile Card */

    .profile-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
.profile-card a {
    text-decoration: none !important;
}

    .profile-card .card-body {
        padding: 5px;
        display: flex;
        align-items: center;
    }

    .profile-card .card-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 15px 0 0 15px;
        /* Rounded left corners */
    }

    .profile-card .card-content {
        flex: 1;
        padding-left: 20px;
    }

    .profile-card .card-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        /* Black color */
        margin-bottom: 10px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .profile-card .card-text {
        color: #666;
        margin-bottom: 15px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .profile-card .card-buttons {
        padding: 5px 20px;
        background: none;
        /* No background for the container */
        border-radius: 0 0 15px 15px;
        /* Rounded bottom corners */
        display: flex;
        justify-content: flex-end;
        /* Align buttons to the right */
        gap: 10px;
        /* Add some space between buttons if needed */
    }


    /* Targeting the card-buttons based on their odd/even placement */
    .profile-card:nth-child(odd) .card-buttons {
        background: linear-gradient(to right, #f8b500, #f78a00) !important;
    }

    .profile-card:nth-child(even) .card-buttons {
        background: linear-gradient(to right, #667eea, #764ba2) !important;
    }


    /* Targeting the card-buttons based on their odd/even placement */
    .profile-card:nth-child(odd) .card-detail {
        background: linear-gradient(to right, #f8b500, #f78a00) !important;
        border: 1px solid #ffa900;

    }

    .profile-card:nth-child(even) .card-detail {
        background: linear-gradient(to right, #667eea, #764ba2) !important;
        border: 1px solid #764ba2;

    }

    .profile-card .card-buttons a {
        color: black;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-left: 10px;
        background: white;
        border: none;
        font-weight: 500;
    }

    .profile-card .card-buttons a:hover {
        color: #555;
    }

    .card-detail {
        font-size: 1rem;
        margin: 5px 0;
        display: flex;
        align-items: center;
        padding: 3px 6px;
        border-radius: 9px;
        /* background: linear-gradient(to right, #f8b500, #f78a00); */
        color: white;
    }

    .card-details {
        display: flex;
        gap: 5px;
        padding: 0px 5px;
    }

    .card-detail i {
        margin-right: 10px;
    }

    /* Gradient Button Styles */
    .gradient-button {
        display: inline-block;
        padding: 10px 20px;
        background: linear-gradient(to right, #4e54c8, #8f94fb);
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
        transition: background 0.3s ease;
        text-decoration: none !important;
        width: 100%;
        border-radius: 36px;
    }

    .gradient-button:hover {
        background: linear-gradient(to right, #8f94fb, #4e54c8);
        /* Gradient background on hover */
        color: #fff;
        /* Text color on hover */
    }

    /* Custom styles for the footer */
    .footer {
        background-color: #333;
        /* Dark background */
        color: #fff;
        /* Light text color */
        padding: 20px 0;
    }

    .footer-links {
        list-style-type: none;
        padding-left: 0;
    }

    .footer-links li {
        display: inline-block;
        margin-right: 15px;
    }

    .footer-links li a {
        color: #fff;
        /* White text color */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-links li a:hover {
        color: #ccc;
        /* Light gray text color on hover */
    }

    .disclaimer {
        font-size: 14px;
        margin-top: 10px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 5px;
    }

    .section-heading1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        position: relative;
        text-align: center;
        font-weight: bold;
    }

    .section-heading1::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background-color: #007bff;
        /* Blue color */
        position: absolute;
        bottom: -15px;
        left: calc(50% - 50px);
        /* Center the design */
        border-radius: 2px;
        /* Rounded design */
    }

    .content-card {
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        color: black;
    }
    .content-card h2 {
        font-size: 20px;
        margin: 10px 0px;
        padding-left: 15px;
        border-left: 8px solid #4e54c8;
        color: black;
    }
    
   

    .content-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: black;
    }
.light-section {
    background: #ecedff;
}
    @media only screen and (max-width: 900px) {
        .profile-card .card-text {
            color: #666;
            margin-bottom: 15px;
            font-size: 11px;
        }
        a.btn.btn-post-ad {
    display: none;
}

        .profile-card .card-title {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin-bottom: 1px;

        }

        .profile-card {
            margin-bottom: 8px;
        }

        .profile-card .card-content {
            flex: 1;
            padding-left: 9px;
        }

        .profile-card .card-img {
            width: 100px;
            height: 120px;
            object-fit: cover;
            border-radius: 15px 0 0 15px;
        }

        .card-detail {
            font-size: 14px;
            margin: 5px 0;
            display: flex;
            align-items: center;
            border: 1px solid #ffa900;
            padding: 1px 5px;
            border-radius: 9px;
            background: linear-gradient(to right, #f8b500, #f78a00);
            color: white;
        }

        .customclass {
            padding: 5px;
        }

        .profile-card .card-buttons a {
            color: black;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-left: 0px;
            background: white;
            border: none;
            font-weight: 600;
            font-size: 11px;
        }
        .banner-section h2 {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
        }
        .banner-section {
            position: relative;
            background-image: url(./img/banner.jpg);
            background-size: cover;
            background-position: center;
            padding: 15px 0;
            color: #fff;
        }
        .section-heading1 {
            font-size: 30px;
            margin-bottom: 30px;
            position: relative;
            text-align: center;
            font-weight: bold;
        }
        .city-buttons .col-md-2 {
            width: 50%;
        }
    
        .content-card {
            font-size: 12px;
            text-align: justify;
            padding: 15px;
        }
        .content-box .container {
            padding: 10px;
        }
        .header-icons .btn {
            font-size: 13px;
            padding: 8px 8px;
            margin: 0 0px;
            color: #fff;
            border: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .search-form {
            background-color: rgb(255 255 255 / 70%);
            padding: 0px;
            border-radius: 8px;
            color: black !important;
            font-weight: 500;
        }
        .search-form .form-group {
            margin-bottom: 2px;
        }
    }