/******Variable********/
:root {
    --primaryColor: #B00F0C;
    --secondaryColor: #000;
    --lightBg: #F5F5F5;
    --footerBg: #1F1F1F;
    --bodyText: #000;
    --hoverColor: var(--primaryColor);
    --btnBg: #B00F0C;
}

/* Truck ID Overlay Styles */
.truck-id-overlay,* {
    box-sizing: border-box;
}

/*preloader*/
#video-preloader {
    
  position: fixed;
  inset: 0;
  background-color: #ffffff; /* change if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

#video-preloader video {
  width: 500px; /* adjust size */
  height: auto;
}
/*preloader ends*/
body {
    padding: 0;
    margin: 0;
    color: var(--bodyText);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 150%;
    padding: 20px;
}
.body-content-wrap {
    padding: 100px 0px;
}

ul {
    list-style-type: none;padding-left: 0;
   
}
ul.custom-list li {
    position: relative;
    padding-left:30px;
    margin: 11px 0px;
}
ul.custom-list li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 19px;
    height: 19px;
    background:url(./images/list-icon.png) center / cover no-repeat ;
    transform: translateY(-50%);
}

select:focus-visible {
    border-color: transparent !important;
}

/* Default Classes */
.text-white{
    color:#fff;
}
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
   
}
.inner-container{
max-width: 1200px;
width: 100%;
margin: 0 auto;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.grid-row {
    display: grid;
}

.radius-25 {
    border-radius: 25px;
}

.text-primary {
    color: var(--primaryColor);
}
.text-center{
    text-align: center;
}
.mt-40{margin-top: 40px;}

/* Default Classes End*/

/************Typography**************/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    text-transform: capitalize;
    margin: 15px 0px;
    font-weight: 600;
    line-height: 150%;
}

p {
    font-size: 16px;
    line-height: 150%;
    margin: 15px 0px;
}

h1 {
    font-size: 60px;
  
}

h2 {
    font-size: 40px; 
}
h3{
    font-size: 22px;
}
@media(max-width:991px){
    h1,
h2,
h3,
h4,
h5,
h6{line-height: 130%;}
    h2{font-size: 32px;}
}
@media (max-width:599px){
    .body-content-wrap{
        padding: 50px 0px;
    }
  h1{font-size: 50px;}  
  h2{font-size: 30px;}
  h3{font-size: 19px;}
}
/***********Buttons************/
.btn,.contact-wrap input[type="submit"] {
    font-size: 18px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    padding: 14px 30px;
    border: 1px solid var(--btnBg);
    background-color: #fff;
     cursor: pointer;
    border-radius: 10px;
    text-transform: capitalize;
     display: inline-block;
      text-decoration: none;text-align: center;
}
.contact-wrap input[type="submit"] {
    background-color: #b00f0c;
    min-width: 159px;
    width: 100%;
    display: inline-block;
}
.primary-btn,.contact-wrap input[type="submit"] {
    color: #fff;
    position: relative;
    width: auto;
    height: auto; 
}

.primary-btn:before{
    content: '';
    position: absolute;
    background-color: var(--btnBg);
    transition: 0.3s ease-out;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px
}

.primary-btn span {
    color: #fff;
    position: relative;
}

.primary-btn:hover:before {
    width: 0;
}

.primary-btn:hover span {
    color: var(--btnBg);
}
.bordered-btn{color: var(--primaryColor);display: block;padding: 12px 30px;border-width: 2px;transition: 0.6s;
    }
.bordered-btn:hover{background-color: var(--btnBg);color: #fff;}

/***********Buttons End************/

/* **********************HOME PAGE********************** */
/* *******Header******* */
header {
    position: absolute;
    width: 100%;
    padding: 15px 15px;
    margin: 0 auto;
    left: 50%;
    z-index: 99;transform: translateX(-50%);

}
header.site-header .container {
    padding: 0px 15px;
}

header.site-header.is-scrolled {
    background: url(./images/header-bg.jpg) top / cover no-repeat;
    border-radius: 38px;
    position: fixed;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 0px;
}

header .flex-row {
    align-items: center;
    justify-content: space-between;
}

nav {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 25px 29px;
    border-radius: 25px;
}

nav ul {
    margin: 0;
    padding: 0;
     display: flex;
    align-items: center;
}

nav ul li {
    padding: 0px 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
    transition: 0.6s;
    display: inline-block;
}

nav ul li a:hover {
    transform: translateY(-2px);
   
}

.logo-col img {
    max-width: 116px;
    width: 100%;
}
.close-icon{display: none;}
#userDropdown a {
    color: #000;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    padding: 5px 6px;
}
#userDropdown a:hover{
    color: var(--primaryColor);
}
#userDropdown {
    background-color: #fff !important;
    padding: 15px 10px !important;
    border-radius: 4px !important;
    position: absolute !important;
    top: 100% !important;
    width: 190px !important;
    right: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* ACTIVE */
.user-account-box.active #userDropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* HOVER */
.user-account-box:hover #userDropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.user-email{color:#fff;text-transform: capitalize;cursor: pointer;}
.user-account-box {
    position: relative;
}
.user-menu {
    display: flex;
    align-items: center;gap:7px;
}

/* Inventory Dropdown Styles - Original UL LI Structure */
.inventory-dropdown {
    position: relative;
}

.inventory-dropdown > a {
    text-decoration: none;
    transition: color 0.3s ease;
}



.inventory-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.inventory-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.inventory-loading .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primaryColor);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

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

.inventory-categories {
    padding: 15px;
}

/* Main Categories List */
.inventory-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Category Item */
.inventory-category-li {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.3s ease;
}

.inventory-category-li:hover {
    background-color: #fafafa;
}

.inventory-category-li:last-child {
    border-bottom: none;
}

/* Category Link */
.category-link {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    transition: all 0.3s ease;
    font-size: 15px;
    min-width: 180px;
    border-left: 3px solid transparent;
}

.category-link:hover {
    color: var(--primaryColor);
    border-left-color: var(--primaryColor);
}

/* Subcategories List */
.inventory-category-li .subcategories-list {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    border-left: 1px solid #e0e0e0;
    /* box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1); */
    min-width: 200px;
    max-width: 300px;
    z-index: 1001;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 8px;
}

/* Show subcategories on hover */
.inventory-category-li:hover .subcategories-list {
    display: block;
}

/* Subcategory Item */
.inventory-category-li .subcategories-list li {
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
    border-radius: 8px;
}

.inventory-category-li .subcategories-list li:last-child {
    border-bottom: none;
}
.inventory-dropdown .inventory-categories .inventory-category-li{padding: 0;border-radius: 8px;}
.inventory-dropdown .inventory-categories {padding: 0;}
.category-link:hover{transform: none;}
/* Subcategory Link */
.subcategory-link {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  
}

.subcategory-link:hover {
    color: var(--primaryColor);
    background-color: #f8f8f8;
    border-left-color: var(--primaryColor);
    transform: none;
}

.subcategories-list li{
    width: 100%;
}
.error-message {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .inventory-dropdown-content {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        min-width: auto;
        width: 100%;
        border-radius: 0;
        max-height: 60vh;
        min-width: auto;
        max-width: none;
    }
    
    .inventory-category-li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .category-link {
        min-width: auto;
        padding: 10px 15px;
    }
    
    .subcategories-list {
        display: block;
        position: static;
        background: #f8f8f8;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        box-shadow: none;
        min-width: auto;
        max-width: none;
        margin: 0;
    }
    
    .subcategory-link {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .inventory-dropdown-content {
        min-width: auto;
        max-width: none;
    }
    
    .inventory-categories {
        padding: 10px;
    }
    
    .category-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .subcategory-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}	




/* responsive */

@media(max-width:1199px){
    .nav-wrap {
    position: fixed;
    top: 0;
    left: 19px;
    height: 100vh;
    max-width: 300px;
    width: 100%;
    transform: translateX(-900px);transition: 0.6s;z-index: 999;
}
.close-icon {
    display: block;
    position: absolute;
    right: 21px;
    top: 15px;
}
.close-icon img {
    width: 16px;
}
.mobile-menu-active .nav-wrap{transform: translateX(0);z-index: 999;}
    .mobile-toggle span {
    width: 31px;
    height: 2px;
    display: block;
    background-color: #fff;
    border-radius: 9px;
    margin: 7px 0px;
}
.mobile-menu-active .mobile-toggle {
    cursor: pointer;
   
}
.mobile-toggle{
    order: 2;
}
 nav{
    height: 100%;
    background-color: #f2f2f2;
}
 nav ul{
    flex-direction: column;align-items: start;
}
 nav ul li{padding: 10px 0px;}
 
 nav ul li a{
    color: #000;
}
 .header-login {
    display: flex;
    align-items: center;
    gap: 20px;
}
    /* body.mobile-menu-active:after {
        content: '';
        left: 25px;
        top: 20px;
        position: fixed;
        width: 96%;
        height: 95.3%;
        background-color: #000;
        opacity: 0.6;
        border-radius: 26px;z-index: 99;
    } */
     .mobile-menu-active header.site-header.is-scrolled .nav-wrap {
    left: 0;
}
.inventory-dropdown-content{
    position: unset;
    box-shadow: none;
    border: none;
    background: #f2f2f2;
}
.inventory-category-li .subcategories-list{
    position: unset;
   
}
.category-link:hover{
    border-left: 3px solid transparent;background: #f2f2f2;
}
.inventory-category-li .subcategories-list li{
    border: 0;
}
}
@media (max-width: 599px){
    header.site-header.is-scrolled{top:0px;width:100%;border-radius:0px}
.logo-col img{max-width: 88px;}
header .btn{font-size: 15px;
        padding: 10px 13px;}
}

/* *******Header Ends******* */
/* *******Hero Section Starts******* */
.banner-wrap {
    background: url(./images/home-banner.jpg) top / cover no-repeat;
    padding: 196px 0px 313px;
    background-attachment: fixed;
}
.banner-content {
    text-align: center;
    color: #fff;
   /* max-width: 710px;*/
    max-width: 800px;
    margin: 0 auto;padding: 0px 15px;
}
/* responsive */
@media(max-width:991px){
    .banner-wrap{padding: 185px 0px 200px;}
}
/* Hero Section Ends */

/* Category Tab Sec */
.category-sec {
    margin-top: -122px;
}

.category-sec .search-container {
    background: #fff;
    width: 90%;
    max-width: 1100px;
    margin: 0px auto 50px;
    border-radius: 12px;
    padding: 47px 20px;
    box-shadow: 0 4px 14px -6px rgb(0 0 0 / 25%);
}
.category-sec .search-container .bordered-btn{
    display: inline-block;
}

.category-sec .tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap:wrap;
}

.category-sec .tab {
    padding: 8px 27px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-weight: 600;
    min-width: 147px;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 18px;

}

.category-sec .tab.active {
    background: var(--primaryColor);
    color: white;
    position: relative;
}
.category-item.selected:hover {
    background: var(--primaryColor) !important;
}


.category-sec .tab.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primaryColor);
}

.category-sec .filter-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;

}

.category-sec select {
    padding: 7px 40px 7px 12px;
    border-radius: 6px;
    border: 1px solid #cccccc00;
    font-size: 16px;

    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
}


.category-sec .search-btn {
    background: var(--primaryColor);
    color: #fff;
    border: none;
    padding: 9px 25px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    min-width: 120px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
}
.category-sec .search-btn span{color:#fff;}

.tab-content {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 25px 54px;
    border-radius: 10px;
    max-width: 1027px;
    margin: 0 auto;
}
@media(max-width:767px){
    body{padding:10px;}
    .category-sec .tab{font-size: 15px;}
    .category-sec select{font-size: 15px;}
    .tab-content{padding: 25px 15px}
    .category-item{font-size: 15px;}
}
@media (max-width:599px){
    .category-sec .tabs{flex-direction: column;}
}
/* Tab Sec Ends */

/* Key Points */
.key-wrapper .grid-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-col {
    overflow: hidden;
    border-radius: 25px;
}

.key-wrapper .key-box {
    padding: 112px 25px 25px 25px;
    color: #fff;
    transition: 0.6s;

}

.key-wrapper .key-box:hover {
    transform: scale(1.1);
    padding: 112px 35px 25px 35px;
}

.key-wrapper .box1 {
    background: url(./images/Tile1.jpg) center / cover no-repeat;
}

.key-wrapper .box2 {
    background: url(./images/tile2.jpg) center / cover no-repeat;
}

.key-wrapper .box3 {
    background: url(./images/tile3.jpg) center / cover no-repeat;
}

.key-content {
    width: 100%;
    max-width: 310px;
}
@media(max-width:767px){
    .key-wrapper .grid-row{grid-template-columns: repeat(1, 1fr);}
    .key-wrapper .key-box:hover{padding: 112px 45px 25px 45px;}
}
/* Key Points End */

/* Listing sec */
.listing-sec .flex-row {
    align-items: center;
    justify-content: space-between;


}

.listing-sec .listing-content .flex-row {
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;margin: 17px 0px;
}

.listing-sec {
    padding: 80px 0px;
}
.listng-wrapper {
    margin-top: 35px;
}

.listng-wrapper .grid-row {
    grid-template-columns: repeat(4, 1fr);gap: 20px;
}
.listng-wrapper .grid-row#allTruckListings{grid-template-columns: repeat(3, 1fr)}

.listng-wrapper .grid-col, .equipment-card {
    border: 1px solid #DBDBDB;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 11px -6px rgba(0, 0, 0, 0.25);
    transition: 0.6s;
}
.listng-wrapper .grid-col:hover{
    border-color: var(--primaryColor);
}
.listing-img img {
    width: 100%;
}

.listing-content h3 {
    font-family: "DM Sans", sans-serif;
    ;
}

.listing-sec .flex-row img {
    width: 24px;
}
.iocn-list p {
    line-height: 111%;margin: 0;
    font-weight: 600;
}

.listing-btn {
    margin-top: 17px;
}

/********Responsive*********/
@media(max-width:1199px){
.listng-wrapper .grid-row{grid-template-columns: repeat(2, 1fr);}
}
.listing-sec .primary-btn {
    max-width: 207px;
    width: 100%;
}
@media (max-width:599px){
    .listng-wrapper .grid-row{grid-template-columns: repeat(1, 1fr);}
}

/* Listing sec ends*/

/* partner sec */
.partner-wrapper{background-color: var(--lightBg);padding: 50px 15px;}
.partner-sec .grid-row {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    
}
 .partner-sec .grid-row img{
     width: 100%;
  box-sizing: border-box;
  border: 1px solid #E5E5E5;
  padding: 50px 30px;
   
    height: 200px;
    object-fit: contain;
} 

.logo-wrap {
    max-width: 1088px;
    margin: 50px auto 0px;
}
@media (max-width:599px){
    .partner-sec .grid-row{grid-template-columns: repeat(3, 1fr);}
    .partner-sec .grid-row img{padding: 40px 20px;}
}
@media (max-width:480px){
    .partner-sec .grid-row{grid-template-columns: repeat(2, 1fr);}
}
/* partner sec ends */

/* About Sec */
.abt-sec{padding: 90px 0px;}
.abt-sec .grid-row{
    grid-template-columns: repeat(2,1fr);
    gap: 68px;
}

.abt-sec .grid-row .abt-img img{width: 100%;}
/* responsive */
@media(max-width:767px){
    .abt-sec .grid-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}
}
/* About sec ends */

/* app sec */
.app-wrap{
 background-color: var(--lightBg);
padding: 80px;
position: relative;

}

.app-wrap:before{
    content: '';
    position: absolute;
    right: 0;
    top: 13px;
    width: 630px;
    height: 614px;
     background: url(./images/app-img.png) center / cover no-repeat;
}
.app-text h2 {
    font-size: 60px;font-weight: 500;
}
.app-text h2 span{
    font-weight: 700;
}
.app-text {
    max-width: 642px;
    width: 100%;z-index: 1;position: relative;
}
.app-text .grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;max-width: 470px;
}
/*********Responsive**********/
@media(max-width:991px){
.app-wrap{padding: 20px;}
    .app-wrap:before {
        top: 123px;
        width: 304px;
        height: 298px;
    }
    .app-text h2{font-size: 48px;}
    .app-text{
        padding-right: 15%;
    }
}
@media (max-width:767px){
    .app-wrap:before{opacity: 0.4;}
}
@media (max-width:599px){
    .app-text h2{font-size: 42px;}
    .app-text .grid-row{grid-template-columns: repeat(1, 1fr);}
}

/* app sec ends */
/* content sec */
.content-sec{padding: 80px 0px;}
.content-wrap .grid-col {
    border: 1px solid var(--primaryColor);
    border-radius: 5px;
    padding: 22px;
    text-align: left;
}
.category-item {
    padding: 7px 12px 7px 12px;
    border-radius: 6px;
    border: 1px solid #cccccc00;
    font-size: 16px;
    background: #fff;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
    width: calc(20% - 20px);
}
.category-item.selected{
    cursor: pointer;
    background: var(--primaryColor) !important;
    color: white !important;
    border-color: var(--primaryColor) !important;
}
.content-wrap .grid-row {
    grid-template-columns: repeat(2, 1fr);
   max-width: 962px;
    margin: 25px auto;
    gap: 14px;
}
.content-wrap .grid-col .flex-row {
    flex-wrap: nowrap;
    align-items: start;
    gap: 27px;
}
@media(max-width:599px) {
    .category-item{font-size:14px;}
.content-wrap .grid-row{grid-template-columns: repeat(1, 1fr);}
.content-sec{padding: 50px 0px;}
}
/* content sec ends */
/* faq sec */
.faq-wrap{
    background-color: var(--lightBg);
    padding: 60px;
}
.faq-sec .grid-row{
grid-template-columns: repeat(2,1fr);
gap:78px;
}
.accordion {
  margin: 1em auto;
  background-color: #fff;
  border: 1px solid var(--primaryColor);
  border-radius: 10px;
  padding: 15px 24px;
}


.accordion-input {
  display: none;
}


.accordion-label {
  display: block;
  cursor: pointer;
  color: #000;
  font-weight: 600;
  user-select: none;
  font-size: 22px;
  transition: 0.6s;padding-right: 30px;position: relative;
}


.accordion-input:checked + .accordion-label {
  color: var(--primaryColor);
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  font-size: 16px;
  line-height: 150%;        
  transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}
.accordion-content p{margin: 0;}


.accordion-input:checked ~ .accordion-content {
  max-height: 300px;           
  padding-top: 10px;
  padding-bottom: 10px;
}


.accordion-label::after {
  content: '+';
  font-weight: bold;
  font-size: 1.3rem;top: 0;
    right: 0;
    position: absolute;
}

.accordion-input:checked + .accordion-label::after {
  content: '-';
}

/* Responsive */
@media (max-width:1199px){
    .faq-sec .grid-row{gap: 50px;}
}
@media(max-width:991px){
    .faq-wrap{padding: 50px;}
    .accordion-label{font-size: 18px;}
        .faq-sec .grid-row {
        gap: 30px;
    }
}
@media (max-width:767px){
    .faq-sec .grid-row{grid-template-columns: repeat(1, 1fr);}
}
@media (max-width:599px){
     .faq-wrap{padding: 20px;}
}
@media (max-width: 480px) {
  .accordion-label {
    font-size: 1rem;
    padding: 0.75em 1em;
  }

  .accordion-content {
    font-size: 0.95rem;
    padding-left: 0.75em;
    padding-right: 0.75em;
  }

  .accordion-input:checked ~ .accordion-content {
    max-height: 400px;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }

  .accordion-label::after {
    font-size: 1.2rem;
  }
  .faq-wrap{padding: 50px 20px;}
  .accordion{padding: 15px 15px;}
}

/* faq sec ends */
/* form */
.contact-wrap {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 30px 30px 20px;position: relative;
}
.contact-wrap:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--primaryColor);
    height: 100%;
    width: 14px;
}
.contact-wrap:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--primaryColor);
    height: 14px;
    width: 100%;
}
.contact-wrap input, .contact-wrap textarea {
    font-family: "DM Sans", sans-serif;
    width: 100%;
    border: 1px solid #DEE2E6;
    border-radius: 5px;
    padding: 8px 18px;
    color: #777777;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
        margin: 8px 0px;
}
.contact-wrap input:focus-visible, .contact-wrap textarea:focus-visible{
    outline: none;
    border-color: var(--primaryColor);
}
.contact-wrap textarea {
    height: 123px;
}
/* Footer */
footer{
    margin-top: 100px;color: #fff;
}
.footer-sec{background-color: var(--footerBg);padding: 90px 90px 65px;}
/*.footer-top .flex-row{flex-wrap: nowrap;}*/
.footer-wrap .flex-row{
    gap: 73px;
}
.footer-contact-col {
    width: calc(60% - 73px);
}
.footer-logo-col {
    width: calc(40% - 73px);
    background-color: #302F2F;
    padding: 22px 60px 22px 22px
}
.footer-logo-col p{
    line-height: 30px;
}
.footer-contact-col h2 {
    font-size: 60px;
}
.footer-wrap .footer-bottom .flex-row >div {
    flex: 1;
}
.flex-col a {
    color: #fff;
    text-decoration: none;transition: 0.6s;
    text-transform: capitalize;
}
.flex-col a:hover{
    color: var(--hoverColor);
}
.footer-bottom {
    margin-top: 70px;
}
.footer-bottom ul li {
    margin: 15px 0px;
}
.social-media a {
    display: inline-block;
    margin: 20px 7px 0px 0px;
    text-decoration: none;
}
.social-media a:hover img {
    opacity: 0.9;
}
.social-media i {
    color: #fff;
    font-size: 18px;
    background-color: #a80900;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
}
.social-media i:hover {
    opacity: 0.8;
}
/* responsive */
@media(max-width:1199px){
    .footer-sec{padding: 90px 50px 65px;}
    .footer-contact-col h2{font-size: 47px;}
}
@media(max-width:991px){
    .footer-top.flex-row {
    flex-direction: column;gap: 30px;
    
}
.footer-wrap .flex-row {
    gap: 25px;
}
.footer-top.flex-row > div {
    width: 100%;
}
}
@media(max-width:767px){
    .footer-wrap .footer-bottom .flex-row >div {
    flex: auto;
}
}
@media (max-width:599px){
        .footer-contact-col h2 {
        font-size: 35px;
    }
    .footer-sec{padding: 90px 20px 65px;}
}
/* Footer Ends */

/***********************/
/* Login/register Page */
/***********************/

html,body{height: 100%;}
.form-page-wrap {
    background-image: url(./images/form-page-bg1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    
}
.page-overlay {
    position: relative;
    content: '';
    background-color: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    border-radius: 25px;
}

.form-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0px 34px;
}
.form-wrapper .inner-wrap {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 30px 25px;
    color: #fff;
    max-width: 500px;
    backdrop-filter: blur(10px);
    margin: 0 auto;
}
.form-wrapper input[type="text"],.form-wrapper input[type="password"] ,.form-wrapper input[type="email"],.form-wrapper input[type="tel"]{
    width: 100%;
    margin: 25px 0px;
    border: 2px solid #fff;
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    padding: 5px 0px 15px 0px;
    color: #fff;font-size: 16px;
}
.form-wrapper input[type="text"]:focus-visible,.form-wrapper input[type="password"]:focus-visible,.form-wrapper input[type="email"]:focus-visible,.form-wrapper input[type="tel"]:focus-visible{outline: none;}
.form-wrapper input::placeholder{color: #fff;font-size: 18px;text-transform: capitalize;}
.form-wrapper input.btn {
    width: 100%;background-color: var(--btnBg);color: #fff;margin-top: 30px;
}
.form-wrapper h3 {
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 28px;
}
.form-wrapper p {
    font-size: 13px;
    text-transform: capitalize;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 999999s ease-in-out 0s !important;

  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;

 -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}


@media(max-width:599px){
    body.form-page {
    padding: 12px;
}

}

/* Truck ID Overlay Styles */
.truck-id-overlay {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    z-index: 10 !important;
    display: block !important;
}

.listing-img {
    position: relative !important;
    display: inline-block !important;
    width: 100% !important;
}

.listing-img img {
    width: 100% !important;
    height: 201px !important;
    display: block !important;
    object-fit: cover;
    object-position: center;
}
.listing-content p{
    min-height: 48px;
}

/* Contact Form Messages */
.contact-message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Favorite Icon Styles */
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.favorite-icon:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.favorite-icon .fa-heart {
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}
.favorite-icon.active i {
    color: red;
}
.user-account-box.active #userDropdown {
    right: 0px;
}

.favorite-icon .fa-heart.active {
    color: #ff0000;
    animation: heartbeat 1.2s ease-in-out;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Favorites Dropdown Styles */
.favorites-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.favorites-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.favorites-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.favorites-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff0000;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    font-weight: bold;
}

.favorites-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 300px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.favorites-dropdown-content.show {
    display: block;
}

.favorites-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.favorites-loading .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

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

.favorites-list {
    max-height: 350px;
    overflow-y: auto;
}

.favorite-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
    cursor: pointer;
}

.favorite-item:hover {
    background: #f8f9fa;
}

.favorite-item:last-child {
    border-bottom: none;
}

.favorite-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.favorite-item-info {
    flex: 1;
}

.favorite-item-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.favorite-item-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.favorite-item-price {
    font-weight: bold;
    color: #007bff;
    font-size: 14px;
}

.no-favorites {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
}
/******************User profile Starts*********************/
.profile-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .profile-header {
            text-align: center;
            margin-bottom: 65px;
        }
        .profile-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }
        .profile-sidebar {
            flex: 0 0 33.333%;
            max-width: 400px;
            position: sticky;
    top: 5px;
        }
        .profile-main {
            flex: 0 0 66.667%;
            
        }
        .profile-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: block;
            object-fit: cover;
            border: 4px solid #f0f0f0;
        }
        .profile-info {
            display: grid;
            gap: 20px;
        }
        .info-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .info-icon {
            width: 40px;
            height: 40px;
            background: var(--primaryColor);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .info-content {
            flex: 1;
        }
        .info-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        .info-value {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        .loading-spinner {
            text-align: center;
            padding: 40px;
        }
        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primaryColor);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .error-message {
            text-align: center;
            padding: 40px;
            color: #dc3545;
        }
        .back-btn {
            display: inline-block;
            margin-bottom: 20px;
            text-decoration: none;
            color: var(--primaryColor);
            font-weight: 500;
        }
        .back-btn:hover {
            text-decoration: underline;
        }
        .empty-section {
            background: white;
            border-radius: 15px;
            padding: 60px 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            color: #666;
        }
        .empty-section i {
            font-size: 64px;
            color: #ddd;
            margin-bottom: 20px;
        }
        .empty-section h3 {
            color: #999;
            margin-bottom: 10px;
        }
        .empty-section p {
            color: #bbb;
        }
        @media (max-width: 768px) {
            .profile-sidebar{position:unset;}
            .profile-layout {
                flex-direction: column;
            }
            .profile-sidebar,
            .profile-main {
                flex: 1;
                max-width: 100%; width:100%;
            }
        }
 
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .modal-container {
            background: white;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
 
        .modal-header {
            background: var(--primaryColor);
            color: white;
            padding: 20px;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
 
        .modal-header h3 {
            margin: 0;
            font-size: 20px;
        }
 
        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }
 
        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
 
        .modal-body {
            padding: 30px;
        }
 
        .form-group {
            margin-bottom: 20px;
        }
 
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
 
        .form-group label i {
            margin-right: 8px;
            color: var(--primaryColor);
        }
 
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
 
        .form-group input:focus {
            outline: none;
            border-color: var(--primaryColor);
        }
 
        .form-group small {
            display: block;
            margin-top: 5px;
            color: #666;
            font-size: 14px;
        }
 
        .form-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
 
        .form-actions button {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
 
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }
 
        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }
 
        /* Tab Styles */
        .profile-tabs {
            display: flex;
            border-bottom: 2px solid #e9ecef;
            margin-bottom: 30px;
            background: white;
            border-radius: 15px 15px 0 0;
            padding: 0 20px;
        }
 
        .profile-main .tab-button {
            background: none;
            border: none;
            padding: 15px 25px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            position: relative;
            top: 2px;
        }
 
        .profile-main .tab-button:hover {
            color: var(--primaryColor);
            background: #f8f9fa;
        }
 
        .tab-button.active {
            color: var(--primaryColor);
            border-bottom-color: var(--primaryColor);
            background: #f8f9fa;
        }
 
        .profile-main .tab-content {
            display: none;
            background: white;
            border-radius: 0 0 15px 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
 
        .profile-main .tab-content.active {
            display: block;
        }
 
        /* Equipment Card Styles */
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
 
        /*.equipment-card {*/
        /*    background: white;*/
        /*    border-radius: 12px;*/
        /*    overflow: hidden;*/
        /*    box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
        /*    transition: transform 0.3s, box-shadow 0.3s;*/
        /*    border: 1px solid #e9ecef;*/
        /*}*/
 
        /*.equipment-card:hover {*/
        /*    transform: translateY(-5px);*/
        /*    box-shadow: 0 8px 25px rgba(0,0,0,0.15);*/
        /*}*/
 
        .equipment-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #f8f9fa;
        }
 
        .equipment-details {
            padding: 20px;
        }
 
        
 
        .equipment-model {
            font-size: 16px;
            color: #000;
            margin-bottom: 10px;
        }
 
        .equipment-specs {
            display: flex;
            gap: 15px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
 
        .spec-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #000;
        }
 
        .spec-item i {
            color: var(--primaryColor);
            font-size: 12px;
        }
 
        .equipment-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primaryColor);
            margin: 15px 0;
        }
 
        .equipment-address {
            font-size: 14px;
            color: #000;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
 
        .equipment-address i {
            color: var(--primaryColor);
        }
        .remove-quote-btn {
    width: 100%;
}
 
        .equipment-status {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 10px;
        }
 
        .status-approved {
            background: #d4edda;
            color: #155724;
        }
 
        .status-pending {
            background: #fff3cd;
            color: #856404;
        }
 
        .status-rejected {
            background: #f8d7da;
            color: #721c24;
        }
 
        .no-equipment {
            text-align: center;
            padding: 60px 30px;
            color: #666;
        }
 
        .no-equipment i {
            font-size: 64px;
            color: #ddd;
            margin-bottom: 20px;
        }
 
        .no-equipment h3 {
            color: #999;
            margin-bottom: 10px;
        }
 
        .no-equipment p {
            color: #bbb;
        }
 
        
       
        /* Equipment Action Buttons */
        .equipment-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
 
        .edit-equipment-btn {
            background: var(--primaryColor);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
        }
 
        .edit-equipment-btn:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }
 
        .delete-equipment-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
        }
 
        .delete-equipment-btn:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
        }
 
        .edit-equipment-btn:active,
        .delete-equipment-btn:active {
            transform: translateY(0);
        }
 
        .restore-equipment-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
        }
 
        .restore-equipment-btn:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
        }
 
        .restore-equipment-btn:active {
            transform: translateY(0);
        }
 
        /* Clickable truck elements */
        .clickable-truck {
            cursor: pointer;
            transition: all 0.3s ease;
        }
 
        .clickable-truck:hover {
            opacity: 0.8;
            transform: scale(1.02);
        }
 
        .equipment-image.clickable-truck {
            border-radius: 8px;
            overflow: hidden;
        }
 
        .equipment-brand.clickable-truck:hover,
        .equipment-model.clickable-truck:hover {
            color: var(--primaryColor);
            text-decoration: underline;
        }
 
        /* Truck ID Overlay */
        .truck-id-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
        }
 
        .equipment-image-container {
            position: relative;
            display: inline-block;
            width: 100%;
        }
 
        /* Forgot Password Link */
        .forgot-password-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primaryColor);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border: 1px solid var(--primaryColor);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
 
        .forgot-password-link:hover {
            background-color: var(--primaryColor);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            
        }
 
        .forgot-password-link:active {
            transform: translateY(0);
        }
        @media (max-width:1199px){
            .profile-card{padding: 20px;}
        }
        @media (max-width:767px){
            .profile-main .tab-content{
                padding: 20px;
            }
            .equipment-details {
    padding: 12px;
}
        }
        /*******************************user profile ends**************************/


/* Favorites Page Styles */
.favorites-section {
   
    margin-top: 80px;
}
.fav-wrap{
     padding: 50px 50px;
    background: #f8f9fa;
}

.favorites-link.has-favorites i {
    color: #ff0000;
}
.favorites-link.has-favorites i sup {
    color: #f40000;
    background-color: #fff;
    width: 14px;
    height: 14px;
    text-align: center;
    font-size: 8px;
    padding: 3px;
    border-radius: 50%;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}



.section-subtitle {
    font-size: 16px;
    color: #666;
    font-family: "DM Sans", sans-serif;
}

.favorites-loading {
    text-align: center;
    padding: 60px 0;
}

.favorites-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primaryColor);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.empty-favorites {
    text-align: center;
    padding: 80px 0;
}

.empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 30px;
}

.empty-favorites h3 {
    font-size: 28px;
    color: #666;
    margin-bottom: 15px;
    font-family: "Raleway", sans-serif;
}

.empty-favorites p {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    font-family: "DM Sans", sans-serif;
}

/* .favorites-btn-static {
    margin-right: 15px;
} */

.favorites-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
   
}

.favorites-link:hover {
    color: var(--primaryColor);
    text-decoration: none;
}

.remove-fav-btn {
    display: block;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primaryColor);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top:5px;
    text-align: center;
}

.remove-fav-btn:hover {
    background: #c82333;
    text-decoration: none;
    color: white;
}
.listng-wrapper .listing-content .flex-row {
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 17px 0px;
}

@media (max-width: 768px) {
    .favorites-section {
        padding: 60px 0;
    }
    .fav-wrap{
        padding: 40px 30px;
    }
    
   
    
    .favorites-btn-static {
        margin-right: 10px;
    }
    
    .favorites-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .empty-icon {
        font-size: 60px;
    }
    
    .empty-favorites h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
   
    
    .favorites-section {
        padding: 40px 0;
    }
    
    .remove-fav-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .fav-wrap {
        padding: 40px 25px;
    }
}

/*************About us page starts****************/
.inner-banner .banner-wrap {
    padding: 196px 0px 150px;
}
.inner-banner .body-content-wrap {
    padding-bottom: 10px;
}
 .about-section {
    padding: 00px 0px 80px;
}

        .about-section h2 {
    font-size: 50px;
    font-weight: 800;
    color: #b00f0c;
}
        .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.abt-col ul li {
    margin: 7px 0px;
}
.abt-col ul {
    list-style-type: disclosure-closed;
    padding-left: 23px;
}
        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--bodyText);
        }

        /* Counter Section */
        .counter-section {
            background: var(--lightBg);
            padding: 80px 0;
            margin-bottom: 80px;
            border-radius: 25px;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .counter-item {
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .counter-item:hover {
            transform: translateY(-5px);
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primaryColor);
            margin-bottom: 10px;
            font-family: "Raleway", sans-serif;
        }

        .counter-label {
            font-size: 1.1rem;
            color: var(--bodyText);
            font-weight: 600;
        }

        /* Mission & Vision Section */
        .mission-vision-section {
              background-image:url('./images/66-home-2.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 10px;
            
        }
        .mission-vision-section .container {
    margin-right: 0;
    padding-right: 20px;
}

        .mission-vision-grid {
            display: grid;
           border-radius: 10px;
            gap: 10px;
            background-color: #ffffff87;
    padding: 20px;
    backdrop-filter: blur(3px);
    max-width: 900px;
    margin-left: auto;
        }

        .mission-box, .vision-box {
           
            padding: 30px 20px;
            border-radius: 15px;
           
        }

        .mission-icon, .vision-icon {
            font-size: 40px;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }

        .mission-box h3, .vision-box h3 {
            
            color: var(--primaryColor);
            margin-bottom: 20px;
            font-family: "Raleway", sans-serif;
        }

        .mission-box p, .vision-box p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--bodyText);
        }

        /* Values Section */
        .values-section {
            padding: 80px 0px;
        }

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

        .value-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }

        .value-item h4 {
            font-size: 1.3rem;
            color: var(--primaryColor);
            margin-bottom: 15px;
            font-family: "Raleway", sans-serif;
        }

        .value-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--bodyText);
        }

        /* Team Section */
        .team-section {
            margin-bottom: 80px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-member {
            text-align: center;
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            background: var(--lightBg);
        }

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

        .team-member h4 {
            font-size: 1.5rem;
            color: var(--primaryColor);
            margin-bottom: 10px;
            font-family: "Raleway", sans-serif;
        }

        .member-position {
            font-size: 1.1rem;
            color: var(--primaryColor);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .member-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--bodyText);
        }

        /* CTA Section */
        
.cta-content {
    background-color: var(--lightBg);
    padding: 60px;
   
    text-align: center;
}
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-family: "Raleway", sans-serif;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .secondary-btn:hover {
            background: white;
            color: var(--primaryColor);
        }

        /* Responsive Design */
        @media (max-width:1200px){
             .mission-vision-grid {
            max-width: 670px;gap: 0;
             }
        }
        @media (max-width: 768px) {
            .cta-content{
                padding:30px 20px;
            }
           .about-grid{
               grid-template-columns: repeat(1, 1fr);
               gap:0px
           }

            .counter-number {
                font-size: 2.5rem;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                margin: 0 auto;
                
            }
            .mission-vision-section .container {
    margin-right: auto;
    padding-right: 0;
}

            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap:20px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

           
        }

/*************About us page ends****************/


/************Contact Us****************/
.contact-info-item h4 {
    margin: 0;font-size:24px;
}
.contact-info-item {
    display: flex;
    gap: 10px;margin: 30px 0px;
}
.contact-icon-small {
    padding: 0px 2px;
}
.contact-info-item p {
    margin: 8px 0px;font-size: 18px;
}
.contact-page .contact-sec1 .container {
    max-width: 1200px;
}
.contact-sec1 .grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 78px;
}
.contact-info-item i {
    color: var(--primaryColor);
    font-size: 24px;
    margin-top: 6px;
}
.feature-item {
    display: flex;
}

.feature-text h4 {
    margin: 0;
}
.feature-item i {
    color: #b00f0c;
    font-size: 20px;
    margin-top: 2px;
    padding: 0px 2px;
}
.feature-item {
    display: flex;
    gap: 10px;
}
.contact-page .faq-sec .faq-wrap {
    background-color: #fff;
    padding: 0;
}
.contact-page .faq-sec {
    padding-top: 80px;
}
.feature-text p {
    margin: 8px 0px;
}
.feature-text {
    margin-bottom: 16px;
}
.feature-list {
    margin-top: 35px;
}
@media(max-width:767px){
    .contact-sec1 .grid-row{
        grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    }
}
/************Contact Us Ends****************/