.contact-dot {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.dot {
    width: 60px;
    height: 60px;
    background-color: #f1592a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.05);
    background-color: #c34806;
}

.dot i {
    font-size: 24px;
}

.contact-drawer {
    position: fixed;
    bottom: -200px;
    left: 30px;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.contact-drawer.active {
    bottom: 100px;
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.drawer-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.close-drawer {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #777;
}

.drawer-content {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 12px;
}

.contact-item:hover {
    color: #7e2e00;
}

.icon-circle {
    background-color: #f1592a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: #f1592a;
}

.contact-item i {
    font-size: 18px;
}

.contact-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Back to Top Button Styles */
.monk-backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #f1592a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.monk-backtotop.visible {
    opacity: 1;
    visibility: visible;
}

.monk-backtotop:hover {
    transform: translateY(-5px);
    background-color: #943500;
}

.monk-backtotop i {
    font-size: 20px;
}

.who{
    background-color: #f8f8f8;
}

/* Number Stats Section Styles */
.stats-section {
    padding: 50px 0;
    background-color: white;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-section .container{
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.funfact_list{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
} */

.stat-box {
    text-align: center;
    padding: 30px;
    margin: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #7e2e00;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-number:after {
    content: "+";
    font-size: 30px;
    position: absolute;
    top: 0;
    right: -20px;
}

.stat-box:nth-child(3) .stat-number:after {
    content: "";
}

.stat-label {
    font-size: 18px;
    color: #444;
    margin-top: 5px;
    font-weight: 500;
}

.counter-plus {
    font-size: 30px;
    font-weight: 700;
    color: #f1592a;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-left: -2px;
}

.funfact_list li {
    text-align: center;
    background-color: white;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    width: 30%;
    margin: 0 10px;
}

.funfact_list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.funfact_list li h4 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    display: inline-block;
}

.funfact_list li p {
    font-size: 16px;
    color: #666;
    /* margin-top: 10px; */
    font-weight: 500;
    margin-bottom: 0 !important;
}

.stat-icon {
    margin-bottom: 15px;
    font-size: 36px;
    color: #f1592a;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(241, 89, 42, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Fix carousel arrows visibility */
.service_carousel_wrap .slick-arrow {
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 9;
    opacity: 1;
    border: none;
    display: flex;
    background: #333;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    overflow: hidden;
}

.service_carousel_wrap .slick-prev {
    left: -40px;
}

.service_carousel_wrap .slick-next {
    right: -40px;
}

.service_carousel_wrap .slick-arrow:hover {
    background: #111;
}

/* Fix for slick-prev and slick-next button alignment */
.service_carousel_wrap .slick-prev:before,
.service_carousel_wrap .slick-next:before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Make service boxes equal height */
.service_box_layout {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service_box_layout .btn_text1 {
    margin-top: auto;
}

/* Recognition items styling */
.recognition-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.recognition-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Testimonial styling */
.testimonial_item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    transition: all 0.3s ease;
}

.testimonial_carousel .slick-dots {
    bottom: -40px;
}

.testimonial_carousel .slick-dots li button {
    background-color: #7e2e00;
}

.client-logo {
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}