/* Whatsapp ICOn Css */
.whatsappIcon {
    background-color: #189d0e;
    border-radius: 40px;
    bottom: 85px;
    color: #fff;
    display: table;
    height: 50px;
    right: 27px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 10;
}
.whatsappIcon:focus{
    color: #fff;
}
.whatsappIcon i {
    font-size: 32px;
    line-height: 50px;
}
.whatsappIcon:hover {
    color: #fff;
    padding: 0 20px;
}

.whatsappIcon span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    /* line-height: 50px; */
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}

.whatsappIcon:hover span {
	opacity: 1;
	letter-spacing: 1px;
	padding-left: 10px
}
/* Whatsapp ICOn Css End*/
/* Sidebar container */
.sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Title */
.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #ff5e14;
    padding-left: 10px;
}

/* Menu list */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

/* Menu links */
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-menu li a i {
    font-size: 20px;
    color: #ff5e14;
}

/* Hover effect */
.sidebar-menu li a:hover {
    background: #ffe9df;
    color: #ff5e14;
}

/* Active item */
.sidebar-menu li a.active {
    background: #ff5e14 !important;
    color: #fff !important;
}

.sidebar-menu li a.active i {
    color: #fff !important;
}

/* Responsive */
@media(max-width: 768px) {
    #user-sidebar {
        margin-bottom: 20px;
    }
}

.dashboard-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
    transition: .2s;
    margin-top: 10px;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dashboard-card__icon {
    width: 60px;
    height: 60px;
    background: #f3f6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card__icon i {
    font-size: 26px;
    color: #0d6efd;
}

.dashboard-card__content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
}

.dashboard-card__content h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.track-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-top: 20px;
}

.text-orange {
    color: #ff6a00;
}

/* Track Line */
.track-container {
    position: relative;
    padding: 40px 0;
}

.track-line {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.track-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Step Item */
.track-step {
    text-align: center;
    width: 25%;
    position: relative;
}

.track-step .icon {
    width: 50px;
    height: 50px;
    margin: auto;
    background: #e5e5e5;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.track-step.active .icon {
    background: #ff6a00;
}

.track-step img {
    width: 100%;
    height: 100%;
}

.track-step .label {
    margin-top: 10px;
    font-weight: 600;
    display: inline-block;
}

/* Highlight Active Line */
.track-step.active:before {
    content: "";
    position: absolute;
    top: 65px;
    left: -50%;
    width: 100%;
    height: 4px;
    background: #ff6a00;
    z-index: -1;
}

.track-step:first-child.active:before {
    display: none;
}

/* Responsive */
@media (max-width: 575px) {
    .track-step .label {
        font-size: 12px;
    }
    .track-step .icon {
        width: 40px;
        height: 40px;
        padding: 7px;
    }
}


.contact-info {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
}
.contact-info:hover {
    border-color: #ff6a00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background: #ff6a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.contact-info__content .title {
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info__content a,
.contact-info__content span {
    color: #ff6a00;
    font-weight: 500;
}

/* Contact Form */
.contact-wrapper {
    background: #ffffff;
    padding: 35px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.contact-wrapper h4.title {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-wrapper p {
    font-size: 15px;
    line-height: 1.6;
}

/* Input Boxes */
.form--control-4 {
    border-radius: 8px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
}
.form--control-4:focus {
    border-color: #ff6a00 !important;
    box-shadow: 0 0 2px #ff6a00 !important;
}

/* Submit Button */
.btn--base {
    background: #ff6a00 !important;
    border-radius: 8px !important;
    font-size: 16px;
    font-weight: 600;
}
.btn--base:hover {
    background: #e45c00 !important;
}

/* Image Styling */
.contact-thumb img {
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    display: block;
    margin-left: auto;
}

/* Page Content */
.page-content-sec span {
    font-size: 15px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        margin-bottom: 30px;
    }
    .contact-thumb img {
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .contact-info__icon {
        margin-bottom: 10px;
    }
    .contact-wrapper {
        padding: 25px;
    }
}

