* {
    margin:0px;
    padding: 0px;
    box-sizing: border-box
}


:root {
    --primary-color: #03221B;
	--secondary-color: #FAFAFA;
	--text-color: #727272;
	--accent-color: #ac8d41;
	--accent-secondary-color: #0b6623;
	--white-color: #FFFFFF;
	--divider-color: #03221B1A;
	--dark-divider-color: #FFFFFF25;
	--error-color: rgb(230, 87, 87);
	--default-font:"Inter", sans-serif;
	--accent-font: "Inter", sans-serif;
    --login-card-w: 380px;
    --login-card-h: 520px;
    --brand: #F4A300;
    --accent: #be2926;
    --muted: #777;
    --bg: #FAFAFA;
}


.login-section{
    margin: 0;
    font-family: var(--default-font);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 60px 0px;
}

/* login-card */
.login-card {
    width: 30%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
    background: #fff;
    overflow: hidden;
}


.login-card-inner {
    padding: 34px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.logo img {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #111
}

.subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
    text-align: center
}

/* Forms stack */
.forms {
    width: 100%;
    flex: 1;
    position: relative;
}

form.auth-form {
    position: absolute;
    inset: 0 0 0 0;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 8px;
    opacity: 0;
    transform: translateY(6px);
    visibility: hidden;
    transition: opacity .38s ease, transform .38s ease, visibility .38s;
}

form.auth-form.active {
    opacity: 1;
    transform: none;
    visibility: visible;
}

label {
    align-self: flex-start;
    margin-left: 6px;
    color: #444;
    font-size: 13px;
    margin-top: 6px;
    font-weight:600;
}

.field {
    width: 100%;
    position: relative;
    padding: 0 6px;
}

input.input {
    width: 100%;
    padding: 12px 44px 12px 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
    outline: none;
}

input.input:focus {
    box-shadow: 0 8px 18px rgba(12, 20, 40, 0.06);
    border-color: var(--brand);
}

.pw-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--muted);
    font-size: 15px;
    padding: 6px;
}

.btn {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 8px;
    border: 0;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.btn:hover {
    filter: brightness(.98)
}

.links {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    width: 100%
}
.links a{
    color:#0056b3;
    text-decoration:underline;
}
.links .link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    margin: 0 6px
}

.links .plain {
    color: var(--muted);
}

/* small footer spacing */
.form-footer {
    margin-top: auto;
    padding-bottom: 6px;
    width: 100%;
    text-align: center;
}


/* Dashboard CSS start */
.dashboard-page{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:100%;
}
.dashboard-main{
    width:100%;
    padding-left:20%;
}
.dashboard-sidebar{
    width:20%;
    height:100vh;
    position: fixed;
    left:0;
    top: 0;
}
.dashboard-sidebar .navigation{
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width:100%;
    height:100vh;
    padding:20px;
   background-color: #fff;
   border-right: 1px solid var(--divider-color);
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dashboard-logo{
    width: 100px;
    margin: 0px auto;
}   

.nav-link{
	background: var(--white-color);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	border: 2px solid var(--accent-secondary-color);
	padding: 17px 50px 17px 20px;
	
}
.nav-link:hover{
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border: none;
}
.navigation .nav-link.active{
	background: var(--accent-secondary-color);
	color: var(--white-color);
	border: none;
	
}
.navigation a span{
    font-size: 28px;
    font-weight: 700;
    cursor: none;
    color: var(--primary-color);
    font-family: var(--accent-font);
}
.dropdown-item{
    background-color: var(--white-color);
    color: var(--primary-color);
}
.dropdown-item:hover{
    background-color: var(--white-color);
    color: var(--accent-secondary-color);
}
.navigation a p{
    margin-top: 10px;
}
.dropdown strong{
    font-family: var(--default-font);
}
.dropdown img{
    object-fit: contain;
    width:32px;
    height:32px;
    border: 1px solid var(--primary-color);
}

.dashboard-home{
    padding:0px 20px; 
    background-color: #fafafa;
}
.dashboard-application{
    padding:0px 10%; 
    background-color: #fafafa;
}
.dashboard-profile{
    padding:60px 20px; 
    background-color: #fafafa;
}
.service-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.service-item:active {
	background-color: var(--white-color);

}

.service-item-content .price {
	font-size: 34px;
	font-weight: 700;
	color: var(--primary-color);
}

.service-item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* gap:20px; */
	align-items: center;
	text-align: center;
}
.page-services .service-item{
    width: calc(50% - 20px) !important;
}


.work-step-item{
    width: calc(32% - 22.5px) !important;
}
.introduction{
    text-align: center;
}
/* Dashboard CSS End*/

/* Dashboard Profile Section start */
.dashboard-profile {
    background-color: #f8f9fa;
}

.profile-header:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

.profile-details h4 {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 0.5rem;
}

.user-img-wrapper .badge {
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-image{
    border-radius: 100%;
    border:2px solid var(--divider-color);
    width:120px; 
    height:120px; 
    object-fit:contain;
}

/* Edit/update Profile section start */
.edit-profile .btn-default::before{
content: none;
}
/* Edit/update Profile section End */


/* Process application start */
.step h4{
    padding: 30px 0px;
    font-size: 36px;
    font-weight: 700;
    text-align: left;
}
.step img{
    width:100%;
}
.stepwizard {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      z-index: 1;
    }
    .stepwizard-step {
      text-align: center;
      position: relative;
      flex: 1;
    }
    .stepwizard-step .circle {
      width: 30px;
      height: 30px;
      display: inline-block;
      border-radius: 50%;
      background-color: #d3d3d3;
      line-height: 30px;
      color: white;
      font-weight: bold;
    }
    .stepwizard-step.active .circle,
    .stepwizard-step.completed .circle {
      background-color: var(--accent-secondary-color);
    }
    .stepwizard-step::after {
      content: '';
      position: absolute;
      top: 15px;
      right: -50%;
      height: 4px;
      width: 100%;
      background-color: #d3d3d3;
      z-index: -1;
    }
    .stepwizard-step:last-child::after {
      display: none;
    }
    .stepwizard-step.completed::after {
      background-color: var(--primary-color);
    }
    .stepwizard-step span {
      display: block;
      margin-top: 8px;
    }
    .hidden {
      display: none;
    }


.step label{
    margin-bottom: 10px;
    font-size: 15px;
    font-family: var(--default-font);
    color:var(--primary-color);
    text-align: left;
    width:100%;
}
.step .save-btn::before{
    content:none;
}

.step .btn-default{
    padding: 20px 20px 20px 33px;
    background-color: var(--primary-color);
}
.step .prev-btn{
    transform: rotate(180deg);
}
.step .save-btn{
    background-color: var(--primary-color);
    padding:20px;
}
.step p{
    font-size: 15px;
}

.questions{
    display: flex;
    gap:20px;
    align-items: center;
    flex-wrap: wrap;
}
.questions label{
    width: 70%;
}
.questions .form-check{
    width:10%;
}
.questions input[type="file"]{
    width:30%;
    height:36px;
}
.yes-input{
    width:100%;
    gap:20px;
    align-items: center;
}
.yes-input input[type="text"]{
    width:60%;
}
.yes-input input[type="file"]{
    width:40%;
}
.final-step{
    width:100%;
    display:flex;
    justify-content: flex-start;
    gap:20px;
    align-items: center;
}
.final-step input{
    width:40%;
}
.final-step label{
    width:30%;
}
.note{
    text-align: left !important;
}
.step .card{
    background-color: var(--secondary-color);
}
/* Process application end */


/* Dashboard Profile Section End */

/*Admin Dashboard Home start*/
.admin-dashboard{
    padding-bottom: 40px;
}
.admin-dashboard .timeline-dates{ 
    height:auto;
}

.action-column{
    display: flex;
}
table{
    margin: 0px !important;
    padding: 0px !important;
}
.table thead {
  background-color: #0d6efd;
  color: white;
}
.btn-approve {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width:48%;
}
.btn-reject {
  background-color: var(--accent-secondary-color);
  color: white;
  border: none;
  width:48%;
}

.btn-approve:hover {
  background-color: #0e715b;
  color:#fff;
}

.btn-reject:hover {
  background-color: #ce5553;
  color:#fff;
}

.table-responsive {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
  overflow: hidden;
   border: 1px solid var(--divider-color);
   margin:0px;
   padding:0px;
}

.cms-container {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
}
.cms-header {
  text-align: center;
  margin-bottom: 40px;
}
.accordion .btn{
    width:fit-content;
    align-self: center;
    padding:17px 20px;
    display: block;
    margin:0px auto !important;
}
.accordion .btn::before{
    content:none;
}
.remove-btn {
    background: #f8d7da;
    color: #842029;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
}

.remove-btn:hover {
    background: #dc3545;
    color: white;
}
#awardsArchiveForm .btn-approve{
 width:fit-content;
 display: block;
 margin: 0px auto;
}

.section-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}
.section-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
    margin-bottom: 1.5rem;
}

.save-next-btn::before{
    content:none !important;
}

/*Admin Dashboard Home end*/



/* responsive tweak */

@media (max-width: 1200px) {
    .login-card{
        width:50%;
    }
    .navigation a p{
        font-size:14px;
        text-align: center;
    }
    .navigation a span{
        font-size:20px;
    }
    .nav-link{
        padding: 15px 20px 15px 20px;
        font-size:14px;
    }
    .dashboard-main{
        padding-left: 25%;
    }
    .dashboard-sidebar{
        width:25%;
    }
    
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    .user-info button {
        margin-top: 0.5rem;
    }
     .login-card{
        width:80%;
    }
    
    .dashboard-main{
        padding-left: 35%;
    }
    .dashboard-sidebar{
        width:35%;
    }
    
    
}

@media (max-width:420px) {
    .login-card {
        width: 94%;
        transform: scale(.98)
    }
}