
.header {
    position:sticky;
	z-index: 9999;
	top:0;
	left:0;
	width: 100%;
	padding: 0px;
	background: #fff;
	box-shadow: 0px 0px 10px #ccc;
	
}
.header .navbar {
    width: 100%;
    padding: 10px 10px;
}
.header .navbar .row {
    align-items: center;
    width: 100%;
}
.header .navbar .logo {
    display: flex;
    align-items: center;
}

.header .navbar .logo img {
    width: auto;
    height: 50px;
}
.icon-search-btn{
	display: none;
}
.text-search-btn{
	display: inline-block;
}
.mview-navigation {
    position: fixed;
    padding-top:10px;
    width: 100%;
    height: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: none;
    background: #fff;
    border-top: 2px solid #ba273a;
} 
.mview-navigation ul{
    position:relative;
    width:100%;
    display:inline-block;
}  
.mview-navigation ul li{
    position:relative;
    text-align:center;
    width:25%;
    float:left;
    display:inline-block;
}  
.mview-navigation ul li a{
    position:relative;
    text-align:center;
    width:100%;
    color:#ba273a;
    display:inline-block;
    text-decoration: none;
}  
.mview-navigation ul li a .mview-menu-icon{
    position:relative;
    text-align:center;
    font-size:24px;
    color:#ba273a;
    display:block;
} 
.mview-navigation ul li a .mview-menu-name{
    position:relative;
    font-size:14px;
    color:#000;
    display:block;
    text-transform:uppercase;
    text-decoration:none;
}	
.mview-toggle-menu-icon {
    position: absolute;
    right: 20px;
    top: 18px;
    background: transparent;
    border: none;
    display: none;
    font-size: 20px;
}

.search-area {
    display: flex;
    justify-content: center;
}

.search-area form {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #2864be;
    border-radius: 30px;
    height: 50px;
    background: #fff;
}

/* Select */
.search-area select {
    border: none;
    padding: 0 5px;
    font-size: 15px;
    outline: none;
}
.search-area input {
    flex: 1;
    border: none;
    padding: 0 12px;
    font-size: 15px;
}

.search-area input:focus {
    outline: none;
}
.btn-search {
    background: #2864be;
    color: #fff;
    border: none;
    padding: 0 20px;
    height: 100%;
    border-radius:0px 20px 20px 0px;
}
.custom-select-wrapper {
  position: relative;
  width: 160px;
  font-size: 14px;
  
}

.custom-select-selected {
  padding: 10px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-right: 1px solid #ccc;
  align-items: center;
}

.custom-select-selected .arrow-icon {
  transition: transform 0.3s;
}

.custom-select-wrapper.open .arrow-icon {
  transform: rotate(180deg);
}

.custom-select-options {
  display: none;
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  padding: 0px;
  width: 100%;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  background: #fff;
  z-index: 99;
  border-radius: 0px 0px 10px 10px;
}

.custom-select-options li {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 13px;
  color:gray;
  border-bottom: 1px solid #ccc;
}

.custom-select-options li:last-child {
  border-bottom: none;
}

.custom-select-options li:hover {
  background: #f5f5f5;
  color:#111;
}


.user-dash{
    padding:0px 0px;
   
}
.vendor-sidebar {
  position: sticky;
  top: 105px;
  display: flex;
  flex-direction: column;
  height: 100%; 
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.1);
}
.vendor-profile-box {
  padding: 10px 18px 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
.vendor-sidebar ul{
    list-style: none;
}

.vendor-profile-box h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #222;
}

.vendor-id {
  font-size: 12px;
  color: #777;
}
.vendor-menu {
  flex: 1;
}
.vendor-bottom-links {
  border-top: 1px solid #eee;
  padding-top: 0px;
}

.vendor-bottom-links a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.25s;
}

.vendor-bottom-links a i {
  color: #2864be;
}

.vendor-bottom-links a:hover {
  background: #f5f8ff;
  color: #2864be;
}

.vendor-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 11px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;

  transition: 0.25s;
  position: relative;
}

/* ICON */
.vendor-menu li a i {
  font-size: 15px;
  color: #2864be;
  width: 18px;
  text-align: center;
}
.vendor-menu li a:hover {
  background: #f5f8ff;
  color: #2864be;
}
.vendor-menu li a.active {
  background: #f0f5ff;
  color: #2864be;
  font-weight: 600;
}

.vendor-logout {
  margin-top: 10px;
  padding: 15px 18px 0;
  border-top: 1px solid #eee;
}

.vendor-logout button {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #dc3545;
  color: #dc3545;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.vendor-logout button i {
  margin-right: 6px;
}

.vendor-logout button:hover {
  background: #dc3545;
  color: #fff;
}
.user-profile-box{
text-align:start;
margin-bottom:15px;
background:#fff;

}



.profile-section {
	padding: 25px 0px;
	display: flex;
	gap: 20px;
}

.profile-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 22px 26px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
	transition: 0.3s ease;
	flex: 1;
}

.profile-card:hover {
	transform: translateY(-3px);
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 18px;
}

.profile-avatar {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #04235d, #0d0870);
	color: white;
	font-size: 28px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-info {
	flex: 1;
}

.profile-name-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.profile-name {
	margin: 0;
	font-weight: 600;
}

.edit-icon {
	cursor: pointer;
	color: #6c63ff;
	transition: 0.2s;
}

.edit-icon:hover {
	transform: scale(1.15);
}

.profile-city {
	margin-top: 6px;
	color: #6b7280;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.name-input {
	display: none;
	border: 1px solid #ddd;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 16px;
}

.save-icon {
	display: none;
	cursor: pointer;
	color: green;
}

.profile-progress {
	margin-top: 16px;
}

.profile-progress h5 {
	font-size: 15px;
	margin-bottom: 6px;
	font-weight: 600;
}

.progress-bar-wrap {
	width: 100%;
	height: 10px;
	background: #e5e7eb;
	border-radius: 20px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4f8cff, #6c63ff);
	border-radius: 20px;
	transition: width 0.4s ease;
}

.progress-text {
	font-size: 13px;
	color: #6b7280;
	margin-top: 4px;
	display: inline-block;
}

.verify-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.verify-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.verify-title i {
	color: #22c55e;
	font-size: 18px;
}

.verify-steps {
	font-size: 13px;
	color: #6b7280;
}

.verify-progress-wrapper {
	margin-bottom: 18px;
}

.verify-bar {
	position: relative;
	width: 100%;
	height: 10px;
	background: #e5e7eb;
	border-radius: 20px;
	overflow: hidden;
}

.verify-fill {
	width: 25%;
	height: 100%;
	background: linear-gradient(90deg, #22c55e, #16a34a);
	border-radius: 20px;
}

.verify-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	background: white;
	border: 3px solid #9ca3af;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.verify-percent {
	font-size: 13px;
	margin-top: 6px;
	color: #6b7280;
}

/* Action */

.verify-action {
	display: flex;
	gap: 12px;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid #eee;
	cursor: pointer;
	transition: 0.3s;
}

.verify-action:hover {
	background: #f9fafb;
}

.verify-action i {
	font-size: 22px;
	color: #4f8cff;
}

.verify-action-text strong {
	display: block;
	font-size: 15px;
}

.verify-action-text span {
	font-size: 13px;
	color: #6b7280;
}

.verify-progress-wrapper {
	margin: 16px 0 20px;
}

.verify-bar {
	position: relative;
	width: 100%;
	height: 10px;
	background: #e5e7eb;
	border-radius: 20px;
	overflow: visible;
}

.verify-fill {
	width: 25%;
	height: 100%;
	background: linear-gradient(90deg, #22c55e, #16a34a);
	position: absolute;


}

/* label under fill end */

.verify-label {
	position: absolute;
	left: 25%;
	top: 18px;
	transform: translateX(-50%);
	font-size: 12px;
	color: #16a34a;
	font-weight: 600;
}

/* future circle */

.verify-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 3px solid #9ca3af;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}


/* action row */

.verify-action {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 0px solid #eee;
	padding-top: 14px;

}

.verify-left {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.verify-left i {
	font-size: 20px;
	color: #4f8cff;
}

.verify-btn {
	background: #4f8cff;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
	transition: .3s;
}

.verify-btn:hover {
	background: #3b74e6;
}


.profile-action-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 22px;
}

.action-card {
	background: #fff;
	border-radius: 14px;
	padding: 15px 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
	cursor: pointer;
	transition: .25s ease;
}

.action-card:hover {
	transform: translateY(-3px);
}

.action-left {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.action-left i {
	font-size: 22px;
	color: #4f8cff;
}

.action-text h5 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

.action-text p {
	margin: 3px 0 0;
	font-size: 13px;
	color: #ef4444;
}

.action-arrow {
	font-size: 20px;
	color: #9ca3af;
}

.verification-form {
	margin-top: 20px;
	background: #fff;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	border-radius: 10px;
	display: none;
}

.verification-form h2 {
	font-size: 20px;
}

.form-divider {
	border: 1px solid #ccc;
	margin: 5px 0px;
}

.form-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 20px 0px;
	gap: 20px;
}

.form-start {
	display: flex;
	flex-direction: column;
}

.form-start label {
	font-size: 16px;
	padding: 8px 0px;
}

.form-start input {
	height: 42px;
	font-size: 14px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 10px 10px;
}

.form-start textarea {
	height: 84px;
	font-size: 14px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 10px 10px;
}

.verification-btn {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

.verification-btn button {
	padding: 7px 24px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 18px;
}

.verification-btn-cancel {
	background: transparent;
}

.verification-btn-save {
	background: #04275d;
	color: #fff;
}

.primary-form {
	margin-top: 20px;
	background: #fff;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	border-radius: 10px;
	display: none;

}

.primary-form h2 {
	font-size: 20px;
}

.address-form {
	margin-top: 20px;
	background: #fff;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	border-radius: 10px;
	display: none;
}

.address-form h2 {
	font-size: 20px;
}

.business-form {
	margin-top: 20px;
	background: #fff;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.2);
	padding: 10px 20px;
	border-radius: 10px;
	display: none;
}

.business-form h2 {
	font-size: 20px;
}


.help-support-section {
	margin-top: 30px;
	padding: 0 10px;
	display: none;
}

.help-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 14px;
}

.help-card {
	background: #fff;
	border-radius: 14px;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	cursor: pointer;
	transition: .25s ease;
	margin-bottom: 12px;
}

.help-card:hover {
	transform: translateY(-3px);
}

.help-left {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.help-left i {
	font-size: 22px;
	color: #4f8cff;
}

.help-text h5 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

.help-text p {
	margin: 2px 0 0;
	font-size: 13px;
	color: #6b7280;
}

.help-arrow {
	font-size: 20px;
	color: #9ca3af;
}

.container-fluid{
padding:0px 47px 0px !important;
}

.dashboard-table{
width:100%;
overflow-x:auto;
margin-top:10px;
}

.user-table{
width:100%;
border-collapse:separate;
border-spacing:0;
background:#fff;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

/* header */

.user-table thead{
background:#2864BE;
color:#fff;
}

.user-table th{
padding:10px 16px;
font-size:14px;
font-weight:600;
text-align:left;
}

/* body */

.user-table td{
padding:14px 16px;
font-size:14px;
color:#444;
border-bottom:1px solid #eee;
}

/* zebra effect */

.user-table tbody tr:nth-child(even){
background:#f8faff;
}

/* hover */

.user-table tbody tr{
transition:0.3s;
}

.user-table tbody tr:hover{
background:#eef4ff;
}


.tab-content{
display:none;
}

.tab-content.active{
display:block;
}
.user-info-box {
padding: 12px 15px;
border-radius: 6px;
transition: 0.3s;
}
.user-info-box a {
text-decoration: none;
color: #333;
display: block;
}
.user-info-box.active {
background: #2864BE;
}
.user-info-box.active a {
color: #fff;
font-weight: 600;
}

.profile-heading{
font-size:22px;
font-weight:600;
margin-bottom:20px;
}

.profile-form label{
font-weight:500;
margin-bottom:5px;
display:block;
}
.profile-form{
    padding:20px;
    border-radius:10px;
    border:1px solid #ccc;
}

.profile-form .form-control{
height:38px;
border-radius:6px;
margin-bottom:15px;
}
.form-control{
    padding:10px !important;
}
.form-control {
    height:38px;
    font-size:14px;
}
.input-group-text{
background:#f5f5f5;
font-weight:500;
height:38px;
}
.input-group input{
    height: 38px;
}
.gst-upload-box{
position:relative;
}

.gst-file-input{
display:none;
}

.gst-upload-label{
display:flex;
align-items:center;
gap:10px;
border:2px dashed #cfd7e3;
padding:12px 15px;
border-radius:8px;
cursor:pointer;
background:#fafbfd;
transition:0.3s;
}

.gst-upload-label:hover{
border-color:#0d6efd;
background:#f2f7ff;
}

.upload-icon{
font-size:18px;
}

.upload-text{
font-size:14px;
color:#555;
}
.profile-submit-btn{
background:#2864BE;
color:#fff;
border:none;
padding:10px 25px;
border-radius:6px;
font-weight:500;
cursor:pointer;
transition:0.3s;
}

.profile-submit-btn:hover{
background:#2864BE;
}
.publish-btn{
    background:#2864BE;
    color:#fff;
    border-radius:5px;
    padding:8px 20px;
    border:none;
}
.img-input{
    padding:8px !important;
    height:40px;
}

.footer {
   background: #004aad url("../images/footer-bg.png") ;
   background-size: cover;
   color: #fff;
   padding: 80px 20px;
}    
.footer .logo img{
   position:relative;
   width:auto;
   height:50px;
}    
   .footer-container {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1.3fr;
   gap: 40px;
   }

   .copyright {
   font-size: 14px;
   margin-bottom: 25px;
   }
   .social-links {
   display: flex;
   gap: 12px;
   }
   .social-links a {
   width: 38px;
   height: 38px;
   background: #0f3d7a;
   color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   text-decoration: none;
   transition: 0.3s;
   }
   .social-links a:hover {
   background: #fff;
   color:#0f3d7a;
   }
   /* Link Columns */
   .footer-col h4 {
   color: #fff;
   font-size: 18px;
   font-weight:700;
   letter-spacing: 1px;
   margin-bottom: 25px;
   }
   .footer-col ul {
   list-style: none;
   }
   .footer-col ul li {
   margin-bottom: 12px;
   }
   .footer-col ul li a {
   color: #fff;
   text-decoration: none;
   font-size: 14px;
   transition: 0.3s;
   display:flex;
   gap:10px;
   align-items:center;
   }
   .footer-col ul li a:hover {
   color: #fff;
   }
   .contact-item {
   display: flex;
   gap: 15px;
   font-size: 14px;
   line-height: 1.6;
   }
   .icon-circle {
   color: #fff; 
   font-size: 18px;
   margin-top: 4px;
   }
   .reach-us {
   color: #fff;
   text-decoration: none;
   font-size: 13px;
   border-bottom: 1px solid #fff;
   }
   .hours {
   color: #fff;
   font-size: 13px;
   }
   .ol, ul {
   padding-left: 0px;
   }
   
   @media (max-width: 992px) {
   .footer-container {
   grid-template-columns: 1fr 1fr;
   }
   .brand-col {
   grid-column: span 2;
   margin-bottom: 30px;
   }
   }
   @media (max-width: 576px) {
   .footer-container {
   grid-template-columns: 1fr;
   }
   .brand-col {
   grid-column: span 1;
   }
   }

.phone-input{
display:flex;
align-items:center;
border:1px solid #ccc;
border-radius:4px;
overflow:hidden;
}
.phone-input input{
    border:none;
}
.country-code{
background:#f3f4f7;
padding:10px 12px;
font-size:14px;
border-right:1px solid #ccc;
}
.postreq-form-section{
    padding: 40px 0px;
}
.phone-input input{
border:none !important;
outline:none;
padding:10px;
width:100%;
font-size:14px;
}

.requirement-form-box1{
background:#fff;
padding:30px;
border-radius:10px;
border: 1px solid #ccc;
}

.requirement-form-box1 h2{
font-size:26px;
margin-bottom:20px;
}

.form-group{
width:100%;
margin-bottom:15px;
}

.form-group label{
display:block;
font-size:14px;
margin-bottom:5px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:10px 12px;
border:1px solid #ccc;
border-radius:4px;
font-size:14px;
}

.form-group textarea{
height:100px;
resize:none;
}

.form-row{
display:flex;
gap:15px;
}

.form-row .form-group{
flex:1;
}
.submit-req-btn{
padding:12px 25px;
border:none;
background:#2864be;
color:#fff;
font-size:15px;
border-radius:4px;
cursor:pointer;
text-decoration:none;
}

.submit-req-btn:hover{
background:#1f4f97;
color:#fff;
}


