/*
Theme Name: rfpplanet blog
Theme URI: https://rfpplanet.com/
Author: Your Name
Author URI: https://rfpplanet.com/
Description: Minimal blog theme with custom blog and single templates.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rfpplanet-blog
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.blog-list article {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

h1,
h2,
h3 {
    margin: 10px 0;
}

:root {
    /* Color variables */
    --primary-color: #4530BA;
    --black: #000;
    --white: #fff;
    --primary-gradient: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
}


/* Reset and global styles */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Carlito", sans-serif !important;
    overflow-x: clip;
}

.notice_bid_id {
    display: flex;
    gap: 5px;
    align-items: center;
}

.inner-title h1 {
    padding-top: 190px !important;
    font-weight: bold;
    color: var(--white);
    font-size: 2rem !important;
}

.inner-title h1 {
    margin-bottom: 0;
}

#page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #6C32AD;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.register_login_spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.daterangepicker .drp-selected {
    font-size: 14px !important;
}


/* Header background */

.header-main {
    background: url(../images/banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 75vh;
    width: 100vw;
}

.inner-header-main {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(90deg, #4530BA 0%, #6C32AD 100%);
}

.inner-header-main.contact {
    min-height: 412px;
}

.inner-header-main .inner-page-title {
    padding: 175px 0px 0 200px;
    /* Changes 10/09/25 */
}

.inner-header-main .inner-page-title h1 {
    font-weight: bold;
    color: var(--white);
    padding-bottom: 10px;
}

.person-vcard {
    height: 16px;
    width: 16px;
}

.inner-header-main .inner-page-title a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.header-main .offer-header,
.inner-header-main .offer-header,
.auth-header-main .offer-header {
    background: var(--primary-gradient);
    position: absolute;
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: bolder;
}

.header-main .offer-header a,
.inner-header-main .offer-header a,
.auth-header-main .offer-header a {
    text-decoration: none;
    color: var(--black);
}


/* Navbar Start */

.nav-main {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.nav-main .navbar {
    position: relative;
    margin: 30px 0 0 0;
    background: var(--white);
    border-radius: 15px;
    height: 100px;
    box-shadow: 0px 2px 41px 0px rgba(0, 0, 0, 0.15);
}

.nav-main .navbar .navbar-brand {
    padding: 0 0 0 20px;
    width: 200px;
}

.nav-main .navbar .navbar-brand img {
    width: 85%;
}

.nav-main .navbar .nav-item {
    padding: 7px;
}

.nav-main .navbar .nav-item .nav-link {
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    padding: 4px 8px;
    transition: all 0.1s ease;
}

.nav-main .navbar .nav-item .nav-link:hover,
.nav-main .navbar .nav-item .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.action-btns {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
}

.action-btns .rfp-outline-btn {
    display: flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 133px;
    border: 1px solid var(--primary-color);
}

.action-btns .rfp-outline-btn .btn {
    padding: 0;
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    border: none;
}

.action-btns .rfp-icon-btn {
    position: relative;
    display: inline-block;
}

.action-btns .rfp-icon-btn .btn {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
}

.action-btns .rfp-icon-btn .cart-value {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    padding: 4px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-btns .rfp-btn .dropdown .dropdown-toggle::after {
    display: none;
}

.action-btns .rfp-btn.drop {
    padding: 5px 10px;
}

.action-btns .rfp-btn .dropdown .dropdown-menu {
    top: 110%;
}

.action-btns .rfp-btn .dropdown .dropdown-menu .dropdown-item {
    font-weight: 700;
}

.action-btns .rfp-btn .dropdown .dropdown-menu li:first-child {
    border-bottom: 1px solid #75757569;
}

.action-btns .rfp-outline-btn .btn.active,
.action-btns .rfp-btn .btn.active {
    border: none;
}

.action-btns .rfp-btn {
    display: flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 133px;
    background: var(--primary-color);
}

.action-btns .rfp-btn .btn,
.action-btns .rfp-btn .btn a {
    padding: 0;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
}

#backToSimpleSearch {
    font-weight: 500;
    transition: all 0.3s ease-in;
}

.right-cross {
    background: #F2F5F7;
    height: 100px;
    width: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.left-cross {
    background: #F2F5F7;
    height: 100px;
    width: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}


/* Trending Section */

.header-style {
    color: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.header-style .textinfo {
    font-size: 150px;
    color: rgb(69, 48, 186);
    opacity: 10%;
    font-weight: 600;
    text-transform: uppercase;
    z-index: -1;
    flex-wrap: wrap;
}

.header-style h1,
.header-style h2 {
    text-align: center;
    z-index: 10;
    position: absolute;
}


/* Changes 10/09/25 */

.header-style h1 .sub-header,
.header-style h2 .sub-header {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 600;
    margin-left: 10px;
}


/* Changes 10/09/25 */

.trending-categories {
    padding: 0 60px 50px 60px;
}

.trending-categories .trending-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 30px 0;
}

.trending-categories .trending-category .icon-box {
    background: #907dfc6b;
    height: 70px;
    min-width: 70px;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.trending-categories .trending-category .icon-box img {
    width: 51px;
}

.trending-categories .trending-category .category-name {
    text-decoration: none;
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 600;
}

.trending-section .rfp-btn .btn.active {
    border: none;
}

.trending-section .rfp-btn {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 10px;
    border-radius: 133px;
    background: var(--primary-color);
}

.trending-section .rfp-btn .btn {
    padding: 0 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
}


/* Benefits Section */

.benefits-section {
    background: #F2F5F7;
    padding-bottom: 150px;
}

.benefits-section .heading-style {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
    padding: 5px 0;
}

.benefits-section .heading-style .line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.benefits-section .heading-style span {
    font-size: 0.875rem;
    font-weight: 500;
}

.benefits-section .benefits-cards {
    padding: 30px 0;
}

.benefits-section .benefits-cards .benefit-card {
    position: relative;
    border-radius: 25px;
    background: var(--white);
    height: 100%;
    min-height: 490px;
    overflow: hidden;
}

.benefits-section .benefits-cards .benefit-card .circle-design {
    position: absolute;
    width: 315px;
    height: 315px;
    border-radius: 50%;
    top: -20%;
    right: -20%;
    background: var(--primary-gradient);
    z-index: 0;
}

.benefits-section .benefits-cards .benefit-card .circle-design.pur {
    background: linear-gradient(90deg, #4530BA 0%, #6C32AD 100%);
}

.benefits-section .benefits-cards .benefit-card .benefit-card-body {
    position: absolute;
    top: 25%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
}

.benefits-section .benefits-cards .benefit-card .benefit-card-body .icon-box {
    padding-bottom: 30px;
}

.benefits-section .benefits-cards .benefit-card .benefit-card-body .card-title {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.benefits-section .benefits-cards .benefit-card .benefit-card-body .card-content {
    text-align: center;
    font-size: 0.875rem;
}

.benefits-section .benefits-footer .heading-style span {
    font-size: 1.125rem;
    font-weight: bold;
}

.benefits-section .benefits-footer p {
    font-size: 0.875rem;
    font-weight: 500;
}


/* Footer Section */

.footer-section {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 11em;
}

.footer-section .news-letter {
    position: absolute;
    z-index: 2;
    top: -22%;
    background: var(--primary-gradient);
    border-radius: 65px;
    width: 50%;
    max-height: 206px;
    height: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section .news-letter .nl-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section .news-letter .nl-input {
    padding: 30px 0 10px 0;
    width: 60%;
}

.footer-section .news-letter .nl-input .sub-form {
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    border-radius: 53px;
    background: var(--white);
    padding: 5PX 20px;
    box-shadow: 0px 0px 39px 0px rgba(0, 0, 0, 0.24);
}

.footer-section .news-letter .nl-input .sub-form input {
    flex: 1;
    border: none;
    padding: 7px 15px;
    font-size: 0.875rem;
    outline: none;
    border-radius: 30px 0 0 30px;
}

.footer-section .news-letter .nl-input .sub-form .nl-btn {
    display: flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 55px;
}

.footer-section .footer {
    position: relative;
    z-index: 1;
    background: var(--primary-color);
    width: 100%;
}

.footer-section .footer .top-design {
    height: 50px;
    background: #907DFC;
    clip-path: polygon(0 0, 100% 0, 100% 63%, 0 22%);
}

.footer-section .footer .footer-content {
    padding: 130px 0 50px 0;
    color: var(--white);
}

.footer-section .footer .footer-content .company-logo {
    width: 200px;
}

.footer-section .footer .footer-content .company-logo img {
    width: 90%;
}

.footer-section .footer .footer-content .fc-title {
    font-size: 1.125rem;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--white);
    width: fit-content;
}

.footer-section .footer .footer-content .footer-links {
    list-style-image: url(https://rfpplanet.com/blog/wp-content/uploads/2025/09/arrow.svg);
    padding-top: 10px;
}

.footer-section .footer .footer-content .footer-links li {
    padding: 5px 0 5px 5px;
}

.footer-section .footer .footer-content .footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-section .footer .footer-content .adrress {
    padding-top: 10px;
}

.footer-section .footer .footer-content .adrress .contact {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
    padding-bottom: 6px;
}

.footer-section .footer .footer-content .adrress .contact span a {
    color: var(--white);
    text-decoration: none;
}

.footer-section .footer .footer-content .social-links {
    padding: 10px 0;
    display: flex;
    gap: 15px;
}

.footer-section .footer .footer-content .social-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-section .footer .footer-content .card-img {
    padding: 12px 0 10px 0;
}

.footer-section .footer .copyright {
    width: 100%;
    padding: 10px 0;
    background: #563FD3;
}

.footer-section .footer .copyright .copyright-content {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--white);
}


/* Pagination css */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 20px 0;
    padding: 0;
    gap: 10px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    color: var(--black);
    background: #E8E8E8;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #FFA751;
    color: #000;
    width: auto;
    height: 39px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 5px;
}

.pagination a i {
    font-size: 0.75rem;
    font-weight: bold;
}

span.page-numbers.current {
    background-color: #4530BA;
    padding: 8px 12px;
    font-size: 14px;
    height: 39px;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination .active {
    background-color: var(--primary-color);
    color: var(--white);
    pointer-events: none;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

#subscribe-form .form-messege {
    margin: 0 0 0 20px;
    color: #ff0000;
    font-size: 0.875rem;
}

.error-help-block {
    color: #ff0000;
    font-size: 0.875rem;
}

.home-action-btns {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
}

.hero-container .hero-content .search-button:hover {
    background: var(--Gradient-1, linear-gradient(90deg, #4530BA 0%, #6C32AD 100%));
    color: var(--white);
}

.hero-container .hero-content .adv-search a:hover,
#backToSimpleSearch:hover {
    border-bottom: 1px solid #00F7FF;
}

.hero-container .back-button:hover {
    border-bottom: 1px solid #00F7FF;
}

.action-btns .rfp-btn:hover,
.action-btns .rfp-btn a:hover,
.login-section .register_submit:hover,
.login-section .login_submit:hover,
.login-section .forgot_password_submit:hover {
    background: var(--primary-gradient);
}

.action-btns .rfp-btn:hover .btn,
.login-section .register_submit:hover,
.login-section .login_submit:hover,
.login-section .forgot_password_submit:hover {
    color: var(--primary-color);
}


/*.action-btns .rfp-outline-btn:hover .btn, */

.rfp-categories #search_button_rfp_category:hover {
    color: var(--white);
}


/*.action-btns .rfp-outline-btn:hover,*/

.rfp-categories #search_button_rfp_category:hover {
    background: var(--primary-color);
}

.card-header .title h4:hover a,
.card-header .title .h4:hover a,
.categories-list li:hover a,
.trending-category:hover a {
    color: #4530ba !important;
}

.category-card-right .rfp-cat-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: bold;
}

.categories-section .categories-sidebar .top-search-box input {
    width: 100%;
}


/* Blog listing */

.blog-container {
    margin-top: 3em;
}

.blog-card {
    margin-bottom: 2em;
}

.blog-details {
    padding: 2em;
}

.blog-img {
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.blog-img {
    transition: transform 0.3s ease-in-out;
}

.blog-img:hover {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}

article {
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.blog-card h3 a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.blog-card p {
    margin-bottom: 1em;
}

.blog-btn a {
    border-radius: 55px;
    background: linear-gradient(90deg, #4530BA 0%, #6C32AD 100%);
    color: var(--white);
    padding: 10px 30px;
    border: none;
    font-weight: 600;
    transition: all 0.6s ease;
    margin-top: 5px;
    text-decoration: none;
    display: inline-block;
}

.blog-btn a:hover {
    background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
    color: var(--primary-color);
}

.blog-card .btn {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: var(--primary-color, #0073aa);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
}

.blog-card .btn:hover {
    background: #005177;
}

.category-meta a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    background-color: #FFE259;
    padding: 6px 20px;
    width: auto;
    display: inline-block;
    border-radius: 21px;
    text-align: center;
}

.category-meta .meta span {
    color: #fff;
    display: block;
    background-color: #FFA751;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    background-color: #FFE259;
    padding: 6px 20px;
    width: auto;
    display: inline-block;
    border-radius: 21px;
    text-align: center;
    font-weight: 600;
}

.blog-card .category-meta {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em;
    z-index: 99;
}

.blog-card .category-meta .category {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.blog-card .category-meta .meta {
    color: var(--secondary-color, #666);
    font-size: 0.875rem;
}