/* --- Service Detail Section --- */
.flat-blog-details {
    /* padding: 80px 0; */
    background-color: #fff;
}

.flat-blog-details .post {
    margin-bottom: 50px;
}

/* Hero Image & Meta Styling */
.flat-blog-details .box-img {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.flat-blog-details .box-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.flat-blog-details .post:hover .box-img img {
    transform: scale(1.05);
}

.flat-blog-details .meta a {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary--color); /* Brand Orange */
    /*text-transform: uppercase;*/
    margin-right: 10px;
    text-decoration: none;
}

.flat-blog-details h2 {
    font-size: 40px;
    color: var(--black--color); /* Brand Blue */
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Paragraph Styling */
.flat-blog-details p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Quote/Highlighted Text Style */
.flat-blog-details .text-style {
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid var(--black--color);
    font-style: italic;
    color: #333;
    border-radius: 0 8px 8px 0;
}

/* Image Gallery (3 Column) */
.flat-blog-details .wrap-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 767px) {
    .flat-blog-details .wrap-img {
        grid-template-columns: 1fr;
    }
}

/* Section Subheadings */
.flat-blog-details .title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black--color);
    margin-bottom: 20px;
}

/* --- Pagination / Service Nav --- */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.pagination .nav-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    max-width: 45%;
}

.pagination .nav-item p {
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--primary--color);
    font-weight: 700;
}

.pagination .nav-item h4 {
    margin: 5px 0 0;
    font-size: 22px;
    color: var(--black--color);
    transition: color 0.3s;
}

.pagination .nav-item:hover h4 {
    color: var(--primary--color);
}

.pagination .right {
    text-align: right;
}

/* Contact Call-to-Action Section */
.contact.st2 {
    position: relative;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
}

.contact.st2 .overlay {
    background-color: var(--black--color); /* Dark Blue Brand Overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact.st2 .inner {
    position: relative;
    z-index: 2;
}

.contact.st2 h5 {
    color: var(--primary--color); /* Brand Orange */
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 700;
    /*margin-bottom: 20px;*/
}

.contact.st2 h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    /*margin-bottom: 40px;*/
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styling */
.contact.st2 .button-st {
    background-color: var(--primary--color);
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact.st2 .button-st:hover {
    background-color: transparent;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .contact.st2 h1 {
        font-size: 28px;
    }
    .contact.st2 {
        padding: 60px 0;
    }
}

.product-sidebar {
    background: #fcfcfc;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black--color);
}

/* Service Button Animations */
.service-button-list { list-style: none; padding: 0; }
.service-button-list li { margin-bottom: 12px; }

.nav-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    color: #444;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-btn i { font-size: 18px; color: var(--black--color); transition: 0.3s; }

/* Hover Animation: Slide background in */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--black--color);
    transition: all 0.4s ease;
    z-index: 1;
}

.nav-btn:hover::before, .nav-btn.active::before { left: 0; }

.nav-btn span, .nav-btn i { position: relative; z-index: 2; }

.nav-btn:hover span, .nav-btn:hover i,
.nav-btn.active span, .nav-btn.active i { color: #fff; }

.nav-btn:hover { transform: translateX(10px); }

/* Container to allow rounded corners to show */
.table-responsive {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 20px;
}

/* Main Table Styling */
.gls-product-table {
    width: 100%;
    border-collapse: collapse; /* Changed to collapse for cleaner borders */
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header Styling */
.gls-product-table thead {
    background: linear-gradient(90deg, #004B8D 0%, #003366 100%);
}
.gls-product-table tr{
   border-bottom: 1px solid white; 
}
.gls-product-table th {
    padding: 18px 15px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 1px solid white;
}

/* Body Cell Styling */
.gls-product-table td {
    padding: 10px;
    border-bottom: 1px solid #444444;
    color: #444444;
    font-size: 20px;
    line-height: 1.6;
    vertical-align: center;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Specific styling for CAS No. to make it look technical */
.gls-product-table td:last-child {
    /*font-family: 'Courier New', Courier, monospace;*/
    font-weight: 600;
    color: var(--black--color);
}

/* Alternating Row Colors for readability */
.gls-product-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Interactive Hover Effect */
.gls-product-table tbody tr {
    transition: all 0.2s ease-in-out;
}

/*.gls-product-table tbody tr:hover {
    background-color: #f4f8fb;
    transform: scale(1.002);
    box-shadow: inset 4px 0 0 #E54117; /* Brand Orange accent on hover */
}
*/
/* Responsive adjustments */
@media (max-width: 768px) {
    .gls-product-table th, .gls-product-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
}

/* Contact Card in Sidebar */
.sidebar-contact-card {
    margin-top: 30px;
    padding: 20px;
    background: var(--primary--color);
    border-radius: 10px;
    color: #fff;
    text-align: center;
}
.sidebar-contact-card .sc-button { background: #fff; color: var(--primary--color); border-radius: 4px; margin-top: 10px;padding:8px; }


/* Sidebar Contact Card Styling */
.sidebar-contact-card {
    margin-top: 35px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #03315a 0%, #01223f 100%); /* Brand Blue Gradient */
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 75, 141, 0.2);
}

/* Subtle background pattern effect */
.sidebar-contact-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    z-index: 1;
}

.sidebar-contact-card h5 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.sidebar-contact-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Sidebar Inquiry Button Styling */
.sidebar-contact-card .sc-button.btn-1 {
    display: inline-block;
    background-color: var(--primary--color); /* Brand Orange-Red */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    border: 2px solid var(--primary--color);
}

/* Button Hover Animation */
.sidebar-contact-card .sc-button.btn-1:hover {
    background-color: #ffffff;
    color: var(--black--color);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Target the text inside the sidebar buttons */
.nav-btn span {
    font-size: 18px; /* Adjust this value as needed */
    font-weight: 600; /* Optional: keeps the text professional and bold */
}


/* SERVICE */
.service-page .service {
    padding: 80px 0 40px;
}

.service-page .service .wrap-service {
    margin-bottom: 30px;

}
.service-page .service .wrap-service .title .h4 {
    transition: all 0.3s ease-in-out;
}
.service-page .service .wrap-service:hover .title .h4 {
    color: #fff;
}
.banner {
    padding: 187px 0 185px;
    background: url(../images/layout/banner-service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 60% 50%;
}

.banner .wrap-banner h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #FFFFFF;
    padding-bottom: 8px;

}

.banner .wrap-banner p {
    color: #FFFFFF;
    padding-bottom: 40px;

}

.service-page .skill {
    padding: 40px 0 136px;
}


/* SERVICE_DETAIL */
.servicedetail .flat-title-page .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/layout/Special-services-detail.jpg);
}

.servicedetail .slider .slider-item {
    position: relative;
    padding: 0px 0 70px;
}

.servicedetail .flat-blog-details {
    padding: 80px 0 0;
}

.servicedetail .flat-blog-details .post .item-1 {
    display: flex;
}

.servicedetail .flat-blog-details .inner-content .text-p .text-color-3::before {
    display: none;
}

.servicedetail .box-img {
    padding-right: 23px;
}

.servicedetail .flat-blog-details .inner-content .meta.text-p {
    padding-top: 3px;
}

.servicedetail .flat-blog-details .inner-content .text-p .text-color-3 {
    padding-right: 3px;
    margin-right: 0px;
    color: var(--black--color);
}

.servicedetail .flat-blog-details .inner-content .text-p h2 {
    padding-top: 6px;
}

.servicedetail .flat-blog-details .post p {
    padding-bottom: 10px;
}

.servicedetail .flat-blog-details .post .text-style {
    padding-bottom: 37px;
}

.servicedetail .post .inner-content .wrap-img {
    /*display: flex;*/
    margin-left: -24px;
    padding: 30px 0 26px;
}

.servicedetail .post .inner-content .wrap-img .box-img {
    padding-right: 0px;
    margin-left: 24px;

}

.servicedetail .post .inner-content .wrap-img .box-img img {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.servicedetail .post .inner-content .wrap-img .box-img img:hover {

    cursor: pointer;
    border-radius: 16px;

}

.servicedetail .pagination {
    margin-top: 28px;
}

/* SEARCH */
.journal .search .search-form .search-field {
    background: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 0px;
    margin-bottom: 0px;
}

.search .wrap-search {
    display: flex;
    border: 1px solid #EEEEEE;
    width: 65%;
    height: 60px;
    position: absolute;
    right: 17.5%;
    top: -1px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8px 10px 30px;
}

.search .wrap-search .flat-accordion {
    display: flex;
    justify-content: center;
    padding: 0 135px 0 0px;
    position: relative;
    border-right: 1px solid #9AA5B3;
    width: 27%;
    margin-right: 20px;
}
.search .wrap-search select {
    border: none;
    outline: none;
}


.search .wrap-search .flat-accordion .flat-toggle .btn-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    color: #9AA5B3;
    font-size: 14px;
    top: 8px;
    position: absolute;
    right: 16%;
}

.search .wrap-search form {
    width: 73%;
}

.search {
    padding: 120px 0 135px;
}

.journal .posts .post-box .meta a::before {
    display: none;
}

.posts.service .post-box {
    background: #fff;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 6%);
    border-radius: 12px;
    width: 100%;
    margin-right: 0px;
    padding: 21px 33px 20px 30px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
}

/* .posts.service .post-box.action {
    background: #3764EB;

}

.posts.service .post-box:hover {
    cursor: pointer;
    background: #3764EB;

}

.journal .service .wr {
    padding: 0px;
}

.journal .post-box .content-post h4 {
    line-height: 150%;
    text-transform: none;
    padding-bottom: 14px;

}

.post-box:hover .content-post h4,
.journal .post-box:hover .content-post p {
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.journal .post-box.action .content-post h4,
.journal .post-box.action .content-post p {
    color: #fff;
}

.service .post-box:hover .meta a {
    color: #E54117;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.service .post-box.action .meta a {
    color: #E54117;
}

.service .wrap-file {
    display: flex;
} */

.service .wrap-file .uploadFile a {
    /* background: #FFFFFF; */
    box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
    border-radius: 25px;
    padding: 0px 23px 0px 30px;
    color: #142441;
    height: 40px;
    background: transparent none repeat scroll 0 0;
    /* color: #ffff; */
}

.service .post-box.action .wrap-file .uploadFile a {
    border: 2px solid #ffff;
    color: #FFFFFF;
}

.service .post-box:hover .wrap-file .uploadFile a {
    border: 2px solid #ffff;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.service .wrap-file .uploadFile {
    margin-right: 12px;
}

.journal .btn-upload::after {
    display: none;
}

.journal .post-box.action .btn-upload::before {
    color: #ffff;
}

.journal .post-box:hover .btn-upload::before {
    color: #ffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.journal .btn-upload::before {
    color: var(--black--color);
    margin-right: 10px;
    font-size: 23px;
}

.posts .wrap-post {
    padding-bottom: 30px;
    display: flex;
}

.journal .service {
    padding-bottom: 115px;
}

.journal .trusted .wrap-trusted {
    padding-bottom: 114px;
}

.journal .search .search-submit {
    top: -9px;
    right: 6px;
    font-size: 17px;
    background: transparent;
    color: #fff;
    line-height: 20px;
    padding: 9px 14.5px;
}

/* OUR-BOOK */
.service.ob .post-box {
    background: #FFFFFF;
    border: 1px solid rgba(20, 36, 65, 0.07);
    box-shadow: none;
    border-radius: 12px;
    width: 100%;
    margin-right: 25px;
    padding-bottom: 4px;
    margin-bottom: 27px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.service.ob .post-box:hover {
    cursor: pointer;
    transform: translateY(-10px);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.service.ob .post-box .meta a::before {
    display: none;
}

.service.ob .post-box .meta a {

    padding-right: 0px;
    margin-right: 0;
}

.service.ob {
    padding: 122px 0 116px;
}
.service.ob .wrap-post .box-img {
    text-align: center;
    padding: 30px 0;
    height: auto;
}
.service.ob .wrap-post .box-img a img {
    width: auto;
    height: auto;
}
.service.ob .wrap-post .box-img.st5 img {
    margin-top: -14px;

}

.service.ob .wrap-post .box-img.st6 {
    padding: 17px 0px 0px 50px;

}

.service.ob .wrap-post .box-img.st6 .meta {
    margin-top: -30px;

}

.service.ob .wr {
    padding: 0px 29px 0px 30px;
}

.service.ob .wr.st {
    margin-top: -30px;
}

.service.ob .content-post h6 {
    padding-bottom: 11px;
}

.service.ob .themesflat-pagination {
    padding-top: 31px;
}

.book .trusted .wrap-trusted {
    display: flex;
    padding-bottom: 114px;
}


.pagination .nav-item {
    display: flex;
    align-items: center;
}

.pagination .nav-item.right .content {
    text-align: right;
}

.pagination .nav-item.left a {
    margin-right: 26px;
}

.pagination .nav-item .content p {
    padding-bottom: 3px;
}

.pagination .nav-item.right a {
    margin-left: 25px;
}

.pagination .nav-item a {
    padding: 10px 20px 7px 20px;
    border: 1px solid #EEEEEE;
    border-radius: 3px;
}

.pagination .nav-item .action {
    background: #023367;
}

.pagination .nav-item a:hover {
    color: #fff;
    background: #023367;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pagination .nav-item.left a:hover:after {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* .pagination .nav-item.left a::after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 24px;
    color: #9AA5B3;
    transform: matrix(-1, 0, 0, 1, 0, 0);
} */

.pagination.style ul li .left,
.pagination.style ul li .right {
    padding: 10px 20px 10px 20px;
    border: 1px solid #EEEEEE;
    border-radius: 3px;
}


.themesflat-pagination ul {
    position: relative;
}

.themesflat-pagination ul li {
    display: inline-block;
    margin-right: 8px;
}

.themesflat-pagination ul li .style.right::after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    color: #fff;
    font-size: 15px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}


.themesflat-pagination ul li .style.left::after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #9AA5B3;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.themesflat-pagination ul li .style.left:hover:after {

    color: #fff;
}

.themesflat-pagination ul li .page-numbers:hover,
.themesflat-pagination ul li .page-numbers.current {
    background: #023367;
    color: #fff;
}


.pagination.style ul li a:hover:after {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.themesflat-pagination ul li .page-numbers {
    display: inline-block;
    text-align: center;
    width: 50px;
    height: 40px;
    border: 1px solid #EEEEEE;
    line-height: 40px;
    object-fit: cover;
}

/* .pagination .nav-item.right a::after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 24px;
    color: #fff;
    transform: matrix(-1, 0, 0, 1, 0, 0);
} */

.pagination {
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EEEEEE;
    padding-top: 23px;
}

.pagination.style {
    justify-content: space-around;
    padding-top: 35px;

}

.pagination.style ul {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.pagination.style ul li a {
    padding: 10px 20px 10px 20px;
    border: 1px solid #EEEEEE;
    border-radius: 3px;
}

.box-hv .hover-style::before {
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgba(177, 66, 51, 0.5);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 500ms ease;
}

.box-hv:hover .hover-style::before {
    transform: scale(1, 1);
    transform-origin: top;
}

.box-hv .hover-style.hv2::before {
    transform-origin: unset;
    background: rgba(194, 151, 101, 0.5019607843);
    transform: scale(1, 0);
}

.box-hv:hover .hover-style.hv2::before {
    transform: scale(1, 1);
    transform-origin: center;
}

.box-hv .hover-style.hv3::before {
    background: rgba(194, 151, 101, 0.5019607843) !important;
    transform: scale(1, 0);
}

.box-hv:hover .hover-style.hv3::before {
    transform: scale(1, 1);
}

.box-hv .hover-style.hv4::before {
    background: rgba(22, 81, 83, 0.5019607843);
    transform: scale(1, 0);
}

.box-hv:hover .hover-style.hv4::before {
    transform: scale(1, 1);
}

.box-hv .hover-style.hv5::before {
    transform-origin: unset;
    background: rgba(22, 81, 83, 0.5019607843);
    transform: scale(1, 0);
}

.box-hv:hover .hover-style.hv5::before {
    transform: scale(1, 1);
    transform-origin: center;
}

.box-hv .hover-style.hv6::before {
    transform-origin: unset;
    background: rgba(177, 66, 51, 0.5019607843);
    transform: scale(1, 0);
}

.box-hv:hover .hover-style.hv6::before {
    transform: scale(1, 1);
    transform-origin: center;
}

.box-hv .hover-style.hv7::before {
    transform-origin: center;
    transform: scale(0, 0);
    border-radius: 50%;
    transition: transform 800ms ease;
}

.box-hv .hover-style.hv7.hv8::before {
    background: rgba(194, 151, 101, 0.5019607843);
}

.box-hv .hover-style.hv7.hv9::before {
    background: rgba(22, 81, 83, 0.5019607843);
}

.box-hv .hover-style.hv7.hv10::before {
    border-radius: unset;
}

.box-hv:hover .hover-style.hv7::before {
    transform: scale(1, 1);
    transform-origin: center;
}

.book-app-select {
    display: flex;
    background: #fff;
    padding: 6px 6px 6px 6px;
    border-radius: 8px;
}












@media (max-width:991px){

.title{
font-size:26px;
}

.subtitle{
font-size:16px;
}

.wrap-img{
flex-wrap:wrap;
}

.wrap-img .box-img{
flex:0 0 48%;
}

.product-sidebar{
margin-top:30px;
}

}

/* ===============================
MOBILE RESPONSIVE (Below 768px)
=============================== */

@media (max-width:768px){

    .flat-blog-details h2 {
  font-size: 30px;
  color: var(--black--color);
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.flat-blog-details p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.flat-blog-details .title {
  font-size: 25px;
  font-weight: 700;
  color: var(--black--color);
  margin-bottom: 20px;
}
.flat-blog-details .text-style {
  padding: 14px;
  background: #f8f9fa;
  border-left: 5px solid var(--black--color);
  font-style: italic;
  color: #333;
  border-radius: 0 8px 8px 0;
}

.title{
font-size:22px;
}

.subtitle{
font-size:15px;
}

.text-style{
font-size:14px;
}

.wrap-img{
flex-direction:column;
}

.services-list li{
font-size:14px;
}

.nav-btn{
font-size:14px;
padding:10px;
}

.sidebar-title{
font-size:18px;
}

.product-sidebar{
padding:20px;
}

.pagination{
flex-direction:column;
}

.pagination .nav-item{
justify-content:space-between;
}

}

/* ===============================
SMALL MOBILE (Below 480px)
=============================== */

@media (max-width:480px){

.title{
font-size:20px;
}

.subtitle{
font-size:14px;
}

.services-list li{
font-size:13px;
}

.nav-btn span{
font-size:13px;
}

.sidebar-contact-card{
padding:15px;
}

}

/*@media (max-width: 767px){*/
/*.product-sidebar{*/
/*    margin-top: -10px;*/
/*}*/
/*}*/