/* ==============================
   1. Imported styles
   ============================== */
/**/


/* Google Fonts - CDN (faster than self-hosted) */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

@import url(bootstrap.min.css);

@import url(font-awesome.css);
@import url(icomoon.css);

@import url(animate.min.css);


/* ==============================
   2. Global styles
   ============================== */

body {
  font-family: 'Hind', sans-serif;
  color:#222222;
  font-size: 16px;
}

h1,h2,h3,h4,h5,h6,p,ul { margin:0;padding: 0;}
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
} 

ul {list-style-type: none;}

p {font-family: 'Hind', sans-serif;font-size: 16px;color: #222222;line-height: 35px; font-weight: 300;}
a {text-decoration: none; display: inline-block; outline: none;}
a:hover,a:focus,a:visited {text-decoration: none; outline: none;}

img {max-width: 100%;display: inline-block;}

button {border:none; outline:none; box-shadow: none; display: block; padding: 0; background: transparent;}
input,textarea {font-family: 'Hind', sans-serif;display: block; font-size: 16px; line-height: 28px; outline: none; box-shadow: none;-webkit-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;}
iframe{max-width: 100%;}
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 2000px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    will-change: transform;
}
.badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}
.hero-content h1 {
    color: #fff;
    font-size: 6.5rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 2.125rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.stat-item strong {
    color: #b81c22;
    font-weight: 700;
}
.stat-divider {
    color: rgba(255,255,255,0.3);
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 2.0625rem;
}
.btn-primary {
    background: #b81c22;
    color: #ffffff;
}
.btn-primary:hover {
    background: #e5a02e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,178,52,0.35);
}
.btn-primary svg {
    transition: transform 0.25s ease;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Tablet */
@media (max-width: 992px) {
    .hero-section { min-height: 500px; }
    .hero-content h1 { font-size: 2.25rem; }
    .hero-stats { font-size: 1rem; gap: 16px; }
    .hero-content { padding: 60px 20px; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section { 
        min-height: calc(100vh - 120px);
        min-height: calc(100dvh - 120px);
    }
    .hero-content { 
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 32px);
    }
    .hero-badge { font-size: 1.25rem; padding: 6px 12px; line-height:1; margin-bottom: 16px;}
    .hero-content h1 { 
        font-size: 2.8rem; 
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .hero-stats { 
        font-size: 1.275rem; 
        gap: 2px;
        margin-bottom: 2px;
    }
    .stat-divider { display: none; }
    .hero-stats .stat-item { width: 100%; margin-bottom: 6px; }
    .hero-actions { 
        flex-direction: column; 
        width: 100%;
        gap: 10px;
    }
    .hero-actions .btn { 
        width: 100%; 
        max-width: 180px;
        padding: 14px 20px;
        font-size: 1.3375rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-content h1 { font-size: 1.25rem; }
    .hero-stats { font-size: 0.8125rem; }
}
.boxed_wrapper {
    width: 100%;
    background: #fff;
    overflow-x: hidden;
    min-width: 400px;
}
.sec-padd {
  padding: 50px 0;
}
.sec-padd-top {
  padding-top: 70px;
}
.sec-padd-bottom {
  padding-bottom: 70px;
}
.no-padd {
  padding: 0px;
}
.clear_fix { clear:both;}
.clear_fix:after {
  display: table;
  content: '';
  clear: both;
}
.list_inline li {
  display: inline-block;
}
.social li {
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
}
.social li a {
  color: #fff;
  transition: .5s ease-in-out;
}
.social li a:hover{
	color: #000000;
}
.default_link {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #b81c22;
  font-weight: 600;
}
.default_link:hover {
  color: #222222;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
.default_link i {
  margin-left: 3px;
  font-weight: 700;
  font-size: 18px;
}
.uppercase {
  text-transform: uppercase;
}
.padd-80 {
  padding-top: 80px;
}
.tran3s {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.center {
  text-align: center;
}


.row-5 {
  margin: 0 -5px;
}
.thm-color {
  color: #848484;
}

.bold {
  font-weight: 700;
}
.s-bold {
  font-weight: 600;
}
.m-bold {
  font-weight: 600;
}

.float_left {
    float: left;
}
.float_right {
    float: right;
}

.border-bottom {
  border-bottom: 1px solid #f7f7f7;
}

.glyphicon {
	top:15px;
} 
.red{
	color: #b81c22;
}
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

.thm-btn {
  position: relative;
  background: #b81c22;
  font-size: 14px;
  line-height: 46px;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid #b81c22;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  display: inline-block;
  padding: 0 38px;
  transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}
.thm-btn:hover {
  background: transparent;
  color: #b81c22;
  transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}

.anim-3 {
  transition: all 0.3s ease;
}
.anim-5 {
  transition: all 0.5s ease;
}


.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
.section-title h2 {
  position: relative;
  font-size: 32px;
  text-transform: capitalize;
  color: #222222;
}
.section-title h3 {
  position: relative;
  font-size: 24px;
  text-transform: capitalize;
}
.section-title h4 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
}
.section-title:before {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    width: 50px;
    height: 4px;
    background: #b81c22;
}
.section-title.center:before {
    left: 50%;
    margin-left: -25px;
}




.scroll-top {
    width: 50px;
    height: 40px;
    position: fixed;
    bottom: 130px;
    right: 30px;
    z-index: 99;
    display: none;
    color: #fff;
    text-align: center;
    background: #b81c22;
}
.scroll-top span:before {
  font-size: 27px;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%;
 z-index:999999; background-color:#ffffff; background-position:center center;
  background-repeat:no-repeat; background-image:url(../images/preloader.gif);}











/* ==============================
   2. header-style
   ============================== */

.top-bar {
  position: relative;
  background: #b81c22;
  line-height: 56px;
}

.top-bar .top-bar-text li {
  color: #fff;
  margin-right: 20px;
  display: inline-block;
}
.top-bar .top-bar-text li i {
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    position: relative;
    top: 3px;
}



.top-bar .social li a:hover {
  color: #b81c22;
  transition: .5s ease-in-out;
}

.top-bar .social li:last-child {
  padding-right: 0px;
}

/*logo*/

.main-logo {
  margin: 28px 0  21px;
}

/*menu*/
/*menu*/

/* ===================================
   Navigation Dropdown - Slide Animation
   =================================== */
   
.navbar-nav > li.dropdown {
    position: relative;
}

/* Dropdown Menu Slide Effect */
.navbar-nav .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: 0;
    border: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 240px;
}

.navbar-nav li.dropdown:hover > .dropdown-menu,
.navbar-nav .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Show on click for touch devices */
.navbar-nav .dropdown.open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Items */
.navbar-nav .dropdown-menu > li {
    padding: 0 8px;
}

.navbar-nav .dropdown-menu > li > a {
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-nav .dropdown-menu > li > a:hover,
.navbar-nav .dropdown-menu > li > a:focus {
    background: linear-gradient(135deg, #b81c22 0%, #d42127 100%);
    color: #fff;
    padding-left: 24px;
}

.navbar-nav .dropdown-menu > li:last-child > a {
    border-bottom: none;
}

/* Caret Animation */
.navbar-nav .dropdown > a .caret {
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.navbar-nav .dropdown:hover > a .caret,
.navbar-nav .dropdown.open > a .caret {
    transform: rotate(180deg);
}

/* Top Border Accent */
.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #b81c22, #d42127);
    border-radius: 0 0 3px 3px;
}

/* ===================================
   Navigation Hover Effects
   =================================== */
.navbar-nav > li > a {
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #b81c22;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li.active > a::after {
    width: calc(100% - 40px);
}


.theme_menu .container {
  position: relative;
}

.theme_menu {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background: #fff;
}
.navbar-default{
	background-color: #fff !important;
	border:none;
	margin: 2% auto;
	}

.theme_menu .menuzord {
  padding: 0;
}


.menuzord-menu > li > a {
    padding: 40px 18px;
    text-transform: uppercase;
    color: #222;
}
.menuzord-menu > li:first-child a {
    padding-left: 0px;
}

.menuzord-menu ul.dropdown, .menuzord-menu ul.dropdown li ul.dropdown {
    padding: 0 30px;
    min-width: 230px;
    background: #222;
    border-top: 3px solid #b81c22;
}

.menuzord-menu ul.dropdown li a {
  padding: 10px 0 9px;
  color: #848484;
  border-bottom: 1px dashed #3c3c3c;
  transition: .5s ease-in-out;
  font-size: 14px;
}

.menuzord-menu ul.dropdown li:hover > a {
    padding-left: 0px;
    padding-right: 0px;
    color: #b81c22;
    transition: .5s ease-in-out;
    font-size: 14px;
}



.mobile_nav a {
	display: block;
	width: 25%;
	padding: 7px 10px 0;
	float: left;
	text-align: center;
	color: #b81c22;
}
.mobile_nav a i {
	font-size: 16px;
}
.mobile_nav a p {
	color: #0d0d0d;
	padding-top: 5px;
	font-size: 12px;
	text-transform: uppercase;
	line-height: 12px;
	margin: 0;
	}



/*megamenu*/



.w100 {
  width: 100%;
}
.w50 {
  width: 50%;
  float: left;
}
.row-10 {
  margin: 0 -10px;
}
.megamenu .form-group {
  padding: 0 10px;
}
.megamenu .default-form {
  max-width: 410px;
  margin-bottom: 30px;
}
.megamenu .default-form.register-form {
  width: 405px;
  border: 1px solid #2f2f2f;
  padding: 10px 30px 24px;
  background: #252525;
}

.default-form.register-form .form-group {
  margin-bottom: 0;
}
.default-form.register-form .link {
  border-bottom: 1px solid #2f2f2f;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #fff;
}
.default-form.register-form .link .thm-color-2 {
  color: #848484;
}
.default-form.register-form .thm-color:hover,
.default-form.register-form .thm-color-2:hover {
  color: #b81c22;
  transition: .5s ease;
}

.default-form.register-form .link_2 {
  position: relative;
}

.default-form.register-form .link_2.singn {
  padding-left: 25px;

}
.default-form.register-form .link_2 .fancy_video {
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  border-radius: 50%;
  font-size: 8px;
  text-align: center;
  line-height: 15px;
  height: 15px;
  color: #222;
  background: #848484;
  font-family: "FontAwesome";

}
.default-form.register-form .link_2 .fancy_video span {
  position: relative;right:-1px;
}



.megamenu .default-form.register-form input[type="text"], 
.megamenu .default-form.register-form input[type="email"], 
.megamenu .default-form.register-form input[type="password"], 
.megamenu .default-form.register-form input[type="number"],
.megamenu .default-form.register-form select,
.megamenu .default-form.register-form textarea {
  border: 0px;
  border-bottom: 1px solid #2f2f2f;
  padding: 12px 0;
}

.megamenu .default-form h5 {
  color: #848484;
  font-size: 16px;
  margin: 0 0 12px;
}
.megamenu .default-form .thm-btn {
  width: auto;
  line-height: 38px;
}

.megamenu .default-form input[type="text"], 
.megamenu .default-form input[type="email"], 
.megamenu .default-form input[type="password"], 
.megamenu .default-form input[type="number"],
.megamenu .default-form select,
.megamenu .default-form textarea {
    display: block;
    width: 100%;
    line-height: 24px;
    height: 46px;
    color: #ababab;
    font-size: 16px;
    box-shadow: none;
    border: 1px solid #2f2f2f;
    padding: 12px 15px;
    background: #252525;
    border-radius: 0px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.megamenu .default-form .bootstrap-select {
    border: 1px solid #2f2f2f;
    background: #252525;
    color: #ababab;
    padding: 5px 0;
    font-size: 16px;
}
.megamenu .bootstrap-select>.dropdown-toggle:focus,
.megamenu .bootstrap-select>.dropdown-toggle:hover {
  color: #ababab;
}



.menuzord-menu > li > .megamenu {
  left: inherit;
  right: -0px !important;
  width: auto;
  padding: 40px 30px 10px;
  background: #222;
  border-top: 3px solid #848484;
}

.menuzord-menu ul.megamenu-dropdown {
  min-width: 190px;
  border-right: 1px solid #3c3c3c;
  margin-right: 40px;
  margin-bottom: 30px;
}

.menuzord-menu ul.megamenu-dropdown li a {
    padding: 10px 0 9px;
    color: #848484;
    transition: .5s ease-in-out;
    font-size: 14px;
    width: 100%;
}

.menuzord-menu ul.megamenu-dropdown li a:hover {
  color: #848484;
  transition: .5s ease;
}





/*contant us*/

.megamenu .contact-map {
  width: 330px;
}
.megamenu .home-google-map #menu-google-map {
  width: 100% !important;
  height: 240px !important;
}

.megamenu .author-details {
  background: #222;
  padding-top: 0;
}

.megamenu .author-details.style-2 .item {
  padding-left: 0;
}
.megamenu .author-details .item h5 {
  color: #fff;
}

.megamenu .author-details .item .content p i {
  font-family: "FontAwesome";
}











/*=================== Cart And Search Option ===============*/

.theme_menu .right-column {
    position: absolute;
    right: 0;
    width: 300px;
}


.nav_side_content {
  margin-top: 33px;
  float: left;
  position: relative;
  left: -20px;
}
.nav_side_content .cart_select>button {
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  margin-right: 23px;
  color:#272727;
}
.nav_side_content .cart_select>button span {
  font-weight: normal;
  padding: 0 0px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -20px;
  color: #848484;
}
.nav_side_content .cart_select>button i {
  font-size: 18px;
  margin-left:5px;
}
.nav_side_content .cart_select,
.nav_side_content .search_option {
  display: inline-block;
}
.nav_side_content .search_option>button {
  width: 30px;
  height:40px;
  border-radius: 50%;
  font-size: 14px;
  color: #222;
}

.nav_side_content .search_option form {
    height: 50px;
    width: 280px;
    padding: 5px;
    border-radius: 4px;
    margin: 0;
    left: auto;
    right: 0;
    border-color: #848484;
    top: 67px;
}
.nav_side_content .search_option form input {
  font-family: 'Raleway', sans-serif;
  font-weight: normal;
  width:100%;
  height:100%;
  background: transparent;
  color:#9e9e9e;
  border:1px solid #f7f7f7;
  padding: 0 47px 0 10px;
  font-size: 15px;
}
.nav_side_content .search_option form button {
  display: block;
  width:40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top:5px;
  right:5px;
  color:#848484;
}
.nav_side_content .cart_select {
  border-left: 1px solid #ececec;
  padding-left: 5px;
}

.theme_menu .link_btn {
  margin-top: 24px;
}





/* Mainmenu fixed style */
@keyframes menu_sticky {
  0%   {margin-top:-100px;}
  50%  {margin-top: -90px;}
  100% {margin-top: 0;}
}
.theme_menu.stricky-fixed {
  margin: 0;
  position: fixed;
  background: #fff;
  top:0;
  left:0;
  width: 100%;
  z-index: 99999;
  animation-name: menu_sticky;
  animation-duration: 0.60s;
  animation-timing-function: ease-out;
}





/*** 
=============================================
    Rev Slider Wrapper style
=============================================
***/
.rev_slider_wrapper .slide-content-box h3 {
  background: rgba(0, 0, 0, 0) url("../images/press-bg.png") no-repeat;
  background-size: contain;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 22px;
  font-family: 'Poppins', sans-serif;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.rev_slider_wrapper .slide-content-box h1 {
  color: #ffffff;
  font-size: 55px;
  line-height: 62px;
  margin: 14px 0 9px;
  font-weight: 700;
}
.rev_slider_wrapper .slide-content-box p{
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  margin: 0 0 30px;
}
.rev_slider_wrapper .slide-content-box .button a{
  padding: 0px 22px;
  margin-right: 15px;
  -webkit-transition: all 500ms ease !important;
  -moz-transition: all 500ms ease !important;
  -ms-transition: all 500ms ease !important;
  -o-transition: all 500ms ease !important;
  transition: all 500ms ease !important;
}
.rev_slider_wrapper .slide-content-box .button a.thm-btn.our-solution{
  background: #fff;
  padding: 0px 35px;
  color: #222;
  border-color: #fff;
}
.rev_slider_wrapper .slide-content-box .button a.thm-btn.our-solution:hover{
  background: #b81c22;
  color: #fff;
  border-color: #b81c22;
}

.rev_slider_wrapper .slide-content-box.last-slide p{
  margin: 0;    
}
.rev_slider_wrapper .slide-content-box.last-slide a{
  margin: 0 8px;    
}

.rev_slider_wrapper .slotholder {
  position: relative;
}

.slotholder:after {
    background: rgba(0, 0, 0, 0.20);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

.tp-bannertimer {
  display: none;
  
}

.rev_slider_wrapper .tparrows {
  background: transparent;
  border: 2px solid #fff;

}










/*** 

====================================================================
  Main Footer
====================================================================

***/

.main-footer{
  position:relative;
  background:#222;
  color:#848484;
}

.main-footer .section-title{
  margin-bottom: 40px;
}
.main-footer .footer-logo {
  margin-bottom: 40px;
}

.main-footer .widgets-section{
  position:relative;
  padding:70px 0px 20px;
}

.main-footer .footer-column{
  margin-bottom:30px; 
}

.main-footer .footer-widget{
  position:relative;  
}

.main-footer .footer-column h2{
  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:30px;
  color:#a1c436;  
}


.main-footer .about-widget .text{
  margin-bottom:20px;
  padding-bottom: 15px;
}

.main-footer .contact-info{
  margin-bottom:30px; 
}

.main-footer .contact-info li{
  position:relative;
  padding-left:30px;
  margin-bottom:15px;
  line-height:24px;
}

.main-footer .contact-info li .icon{
  position:absolute;
  left:0px;
  top:0px;
  line-height:24px;
  font-size:14px; 
}

.main-footer .social-links a{
  display:inline-block;
  width:32px;
  height:32px;
  margin-left:5px;
  line-height:30px;
  border:1px solid transparent;
  background:none;
  color:#686868;
  font-size:14px;
  text-align:center;
  -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;
}

.main-footer .social-links a:hover{
  color:#a1c436;
  border-color:#a1c436; 
}

.main-footer .posts-widget .post{
  position:relative;
  margin-bottom: 14px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-bottom:1px solid rgba(255,255,255,0.15);
}

.main-footer .posts-widget .post:last-child{
  border-bottom:none;
  padding-bottom:0px;
  margin-bottom:0px;  
}

.main-footer .posts-widget .post .content{
  position:relative;
  min-height: 40px;
  padding-left: 0;
  padding-top:0px;
  margin-bottom: 5px;
}

.main-footer .posts-widget .post .content .post-thumb{
  position:absolute;
  left:0px;
  top:0px;
  width:60px;
  height:52px;
}

.main-footer .posts-widget .post .content .post-thumb img{
  display:block;
  width:100%; 
}

.main-footer .posts-widget .post h4{
  font-size:14px;
  color:#999999;
  line-height: 26px;
}

.main-footer .posts-widget .post h4 a{
  color:#848484;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.main-footer .posts-widget .post .time{
  color:#848484;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.main-footer .posts-widget .post .time .fa{
  padding-right:8px;  
}

.main-footer .links-widget .list li{
  position:relative;
  margin-bottom: 11px;
}

.main-footer .links-widget .list li a{
  position:relative;
  display:block;
  padding-left: 15px;
  color:#848484;
  font-family: 'Hind', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.main-footer .posts-widget .post:before,
.main-footer .links-widget .list li a:before{
  content: '';
  position:absolute;
  left:0px;
  background: #2e2e2e;
  top: 9px;
  width: 5px;
  height: 5px;
  transition: .5s ease-in-out;
}

.main-footer .links-widget .list li:hover a:before{
  background: #848484;
  transition: .5s ease-in-out;
}

.main-footer .links-widget .list li a:hover{
  color: #848484;
}

.main-footer .contact-widget{
  position:relative;
  background:url(../images/map.png) left bottom no-repeat;  
}



.footer-bottom {
  background: #1d1d1d;
  padding: 26px 0;
}
.footer-bottom .copy-text p{
  font-family: 'Poppins', sans-serif;
  color: #848484;
  font-size: 14px;
}
.footer-bottom .copy-text a {
  color: #848484;
  transition: .3s ease;
}
.footer-bottom .get-text ul li {
  float: left;
}
.footer-bottom .get-text ul li a {
  color: #848484;
  font-size: 16px;
  font-weight: 300;
  margin-right: 25px;
}
.footer-bottom .get-text ul li a:hover {
  color: #848484;
  transition: .3s ease;
}






/************************** 
* Inner Banner styles 
***************************/
.inner-banner {
 width: 100%;
 height: 100%;
 margin-bottom: 20px;
}

.inner-banner:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.inner-banner h3 {
  margin: 0;
  display: table-cell;
  vertical-align: middle;
  font-size: 48px;
  line-height: 60px;
  color: #222222;
  font-weight: 600;
  text-transform: capitalize;
}
.inner-banner .box {
  position: relative;
  display: table;
  height: 500px;
  width: 100%;
  text-align: center;
}

.breadcumb-wrapper {
  background: #fff;
  padding: 17px 0;
  border-bottom: 1px solid #f4f4f4;
}
.breadcumb-wrapper ul,
.breadcumb-wrapper li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  color: #848484;
}
.breadcumb-wrapper ul.link-list li a {
  color: #222;
  text-transform: capitalize;
  font-size: 18px;
  transition: .3s ease;
}
.breadcumb-wrapper ul.link-list li a:hover {
  transition: .3s ease;
}

.breadcumb-wrapper ul.link-list li a i {
  color: #fac012;
  margin-right: 7px;
}

.breadcumb-wrapper ul.link-list li a:after {
  content: "\f105";
  font-family: 'FontAwesome';
  margin: 0 10px;
}
.breadcumb-wrapper a.get-qoute {
  text-transform: capitalize;
  font-weight: 400;
  color: #b81c22;
  font-size: 18px;
}
.breadcumb-wrapper a.get-qoute i {
  margin-left: 7px;
  color: #222;
  margin-right: 7px;
  font-size: 14px;
}



/************************** 
* why-choose styles 
***************************/


.why-choose {
  position: relative;
  background-color: #ffffff;
}
.why-choose h2{
	color: #000000;
}

.why-choose .img-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.why-choose .overlay-box {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: -60px;
  transition: .3s ease-out;
  transform: translate(0,100%);
}
.why-choose .item:hover .overlay-box {
  transition: .5s ease-in-out;
  top: 0px;
  transform: translate(0,0);
}

.why-choose .inner-box {
  position: relative;
  text-align: center;
  transition: 1s ease;
}
.why-choose .item{
	margin-bottom: 15px;
}
.why-choose .item:hover .inner-box {
  text-align: center;
  align-items: center;
  transition: .5s ease;
}

.why-choose .icon_box {
  position: absolute;
  width: 60px;
  height: 100%;
  text-align: center;
  background: #ffffff;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 60px;
  color: #fff;
  transition: .5s ease;
}
.why-choose .icon_box span {
    font-size: 33px;
    line-height: 60px;
}

.why-choose .item:hover .icon_box span {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    margin-top: -20px;
    transition: .5s ease;
}

.why-choose .overlay-box .text {
  color: #fff;
}

.why-choose .overlay-box h4 {
  color: #000000;
  line-height: 60px;
  transition: .5s ease-in-out;
}
.why-choose .item:hover .overlay-box h4 {
  color: #000000;
  transition: .5s ease-in-out;
  padding-top: 10%;
}

.why-choose .overlay-box .text p {
  color: ffffff;
  transform: translate(0,100%);
  transition: 1s ease;
  opacity: 0;
}
.why-choose .item:hover .overlay-box .text p {
  transform: translate(0,0);
  transition: .5s ease;
  transition-delay: .3s;
  opacity: 1;
  color: #fff;
}



/************************** 
* default-blog styles 
***************************/
.default-blog-news {
  position: relative;
  transition: .5s ease-in-out;
  margin-bottom: 20px;
  text-align: center;
}

.default-blog-news:hover {
  box-shadow: 0 15px 16px 0 rgba(0, 0, 0, 0.03), 0 0px 82px 0 rgba(0, 0, 0, 0.02);
  transition: .2s cubic-bezier(0.4, 0, 1, 1);
}

.default-blog-news .lower-content{
  position:relative;
  padding: 30px 20px 10px;
  border: 1px solid #f4f4f4;
  height: 106px;
}

.default-blog-news .lower-content .text p{
  margin-bottom:20px; 
}

.default-blog-news .lower-content h4 {
  color:#222;
  font-weight: 400;
  margin-bottom: 5px;
}

.default-blog-news .lower-content h4 a{
  color:#222;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 18px;
}

.default-blog-news .lower-content h4 a:hover{
  color:#848484;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.default-blog-news .lower-content .post-meta{
  color: #848484;
  font-size:16px;
  margin-bottom:10px;
}

/* tag content card: clamp long titles to keep grid tidy */
.tag-content-card .lower-content {
  height: auto;
  min-height: 106px;
}
.tag-content-card .lower-content h4 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 2.8em;
}

/* tags-list: reusable tag cloud (chip style), site-wide */
.tags-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-list li {
  margin: 0;
}
.tags-list a {
  display: inline-block;
  padding: 7px 16px;
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 30px;
  color: #444;
  font-size: 14px;
  text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
}
.tags-list a:hover {
  background: #b81c22;
  border-color: #b81c22;
  color: #fff;
}
.tags-list a span {
  color: #999;
  font-size: .85em;
  margin-left: 4px;
}
.tags-list a:hover span {
  color: rgba(255, 255, 255, .85);
}
.tags-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 18px;
}

/*large blog*/

.large-blog-news {
  position: relative;
  transition: .5s ease-in-out;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #f4f4f4;
}


.large-blog-news .lower-content{
  position:relative;
  padding: 25px 0px 0px;
}

.large-blog-news .lower-content .text p{
  margin-bottom:20px; 
}

.large-blog-news .lower-content h4 {
  color:#222;
  font-weight: 400;
  margin-bottom: 10px;
}
.large-blog-news .lower-content h5 {
  text-transform: uppercase;
  color: #848484;
  font-size: 14px;
  margin-bottom: 15px;
}


.large-blog-news .lower-content h4 a{
  color:#222;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 26px;
}

.large-blog-news .lower-content h4 a:hover{
  color:#848484;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.large-blog-news .lower-content .post-meta{
  color: #848484;
  font-size:16px;
  margin-bottom: 15px;
}
.large-blog-news .lower-content .thm-btn {
  background: transparent;
  color: #848484;
  border-color: #f4f4f4;
}
.large-blog-news .lower-content .thm-btn:hover {
  background: #848484;
  color: #fff;
  border-color: #848484;
}


/*side-bar-blog*/

.blog-sidebar {
  position: relative;
  border-left: 1px solid #f4f4f4;
  padding-left: 30px;
}
.category-style-one {
  position: relative;
}
.category-style-one ul {
  margin-top:22px;
  margin-bottom: 35px;
  padding: 20px 30px;
  background: #f7f7f7;
}
.category-style-one ul li {border-bottom: 1px solid #eaeaea;margin: 0;}
.category-style-one ul li:last-child {
  border:none;
}
.category-style-one ul li a {
  font-weight: normal;
  color: #848484;
  position: relative;
  width: 100%;
  transition: .5s ease;
  line-height: 40px;
  display: block;
}
.category-style-one ul li a:hover {
  color: #848484;
  transition: .5s ease;
}


/*post-thumb*/


.popular-post {
    position: relative;
}

.popular-post .item {
    position: relative;
    font-size: 14px;
    margin-bottom: 13px;
    min-height: 50px;
    padding: 0px 0px 20px 105px;
    color: #cccccc;
    border-bottom: 1px solid #f1f1f1;
}

.popular-post .item:last-child{
    border-bottom: 0px;
}
.popular-post .item .post-thumb{
    position:absolute;
    left:0px;
    top: 5px;
    width: 90px;
    height: 90px;
}

.popular-post .item .post-thumb img{
    width:100%;
    display:block;  
}


.popular-post .item .post-thumb a{
  position: relative;
}
.popular-post .item .post-thumb a:after {
    position: absolute;
    content: "\f0c1";
    font-family: FontAwesome;
    left: 0px;
    top: 0px;
    text-align: center;
    line-height: 80px;
    width: 100%;
    height: 100%;
    background: rgba(72, 199, 236, 0.9);
    color: #ffffff;
    opacity: 0;
    transition: .5s ease;
}
.popular-post .item .post-thumb:hover a:after {
  opacity: 1;
  transition: .5s ease;
}

.popular-post .item a:hover{
  color: #848484;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.popular-post .item h4{
    position: relative;
    top: 8px;
    font-size: 16px;
    font-weight: 600;
    margin: 0px 0px 17px;
    line-height: 26px;
    color:#333;
}
.popular-post .item h4 a{
    color: #333;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.recent-posts.post-thumb .post .post-info{
    font-size: 14px;
    font-weight:400;
    margin:0px;
    line-height:1.6em;
    color: #9c9c9c;
}
.popular-post .item .post-info {
  color: #848484;
  font-size: 16px;
}


.inner-title {
  position: relative;
  margin-bottom: 20px;
  margin-top: 45px;
}


.inner-title h4 {
  position: relative;
  font-size: 22px;
  color: #222;
}


/* æªä½¿ç¨çæ ·å¼å·²å é¤: sidebar-archive, sidebar-intsgram, facebook-feed */


/*single-blog*/




/*---------------- Author -------------*/

.single-blog-post .author {
  background-color:#ffffff;
  position:relative;
  margin-bottom: 2px;
}
.single-blog-post .author img {
  position:absolute;
}
.single-blog-post .author-comment {
  margin-left:340px;
  padding-left:30px;
}

.single-blog-post .author-comment .quote {
  font-size: 25px;
  color: #f1f1f1;
  margin-bottom: 15px;
}
.single-blog-post .author-comment h5 {
  font-weight: 600;
  margin: 16px 0 5px 0;
  text-transform: uppercase;
  font-size: 18px;
}
.single-blog-post .author-comment p.a-title {
  color: #848484;
  font-size: 16px;
}



/*share-box*/

.share-box {
  background: #ffffff;
  padding: 23px 0px 12px 0px;
  margin-bottom: 40px;
}
.share-box .tag-box span {
  font-size: 14px;
  color: #3F3E3E;
}
.share-box .tag-box a {
  color: #848484;
  font-size: 16px;
  transition: .3s ease;
  line-height: 30px;
  text-transform: capitalize;
}
.share-box .tag-box a:hover {
  color: #848484;
  transition: .3s ease;
}

.share-box .social-box span {
  color: #252525;
  margin-right: 13px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.share-box .social {
  display: inline-block;
  margin-bottom: 0;
  margin-left: -2.5px;
}
.share-box .social > li {
  padding-right: 0;
  margin: 0;
  padding-left: 0;
}
.share-box .social a {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  color: #BCBCBC;
  text-align: center;
  margin: 0 3px;
  border: 1px solid #eee;
  display: block;
  line-height: 41px;
  transition: all 0.5s ease;
}
.share-box .social a:hover {
  color: #ffffff;
  background: #848484;
  border-color: #848484;
}



.share-box .tag-box li {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}





.post-author{
  position:relative;
  color:#777777;
  margin-bottom:50px; 
}


.post-author .inner-box{
  position:relative;
  padding: 33px 35px 12px 155px;
  min-height:160px;
  background:#f4f4f4;
  margin-left: 23px;
}

.post-author .inner-box .author-thumb{
  position:absolute;
  left:35px;
  top:35px;
  width: 85px;
  height: 85px;
  border-radius:2px;
}

.post-author .inner-box .author-thumb img{
  display:block;
  width:100%; 
}

.post-author h4{
  position:relative;
  margin: 0px 0px 16px;
  font-size:18px;
  text-transform:capitalize;
  font-weight: 600;
  color: #252525;
}
.post-author ul li{
  margin: 0;
  margin-top: 10px;
}
.post-author ul li:hover a {
  color: #ab7442;
}


.news .blogList_single_post .post-author h4 .author-designation{
  position:relative;
  color:#a8c41b;
  font-style:italic;
  font-family:'Lato',sans-serif;
}

.post-author .text{
  line-height:1.8em;
  color:#777777;
}

.post-author .text a{
  color:#777777;
  text-decoration:underline;  
}

.post-author .text a:hover{
  color:#a8c41b;  
}




/*review-tab*/

.single-blog .product-review-tab {
  margin: 0 27px;
}
.product-review-tab .item_review_content {
  border-bottom: 1px solid #f7f7f7;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
  padding-left: 80px;
}
.product-review-tab .item_review_content .img_holder {
  position: absolute;
  left: 0;
  top: 0;
}
.product-review-tab .add_your_review {
  margin:81px 0 75px 0px;
}

.product-review-tab .add_your_review>span {
  display: block;
  margin: 36px 0 14px 0;
  color: #a2a2a2;
}
.product-review-tab .add_your_review ul,
.product-review-tab .add_your_review ul li {
  display: inline-block;
  color: #a2a2a2;
}
.product-review-tab .add_your_review ul.rating:hover li,
.product-review-tab .add_your_review ul.rating.active li{
  color: #848484;
  transition: .5s ease;
}
.news .blogList_single_post .post .product-review-tab .add_your_review ul.rating li {
  font-size: 12px;
  margin-right: 3px;
  color:#d6d6d6;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news .blogList_single_post .post .product-review-tab .add_your_review ul.active li {
  color: #ab7442;
}
.news .blogList_single_post .post .product-review-tab .add_your_review ul:hover li{
  color: #ab7442;
}
.product-review-tab .add_your_review ul {
  line-height: 20px;
  border-right: 1px solid #d6d6d6;
  padding-right: 6px;
  margin-right: 5px;
}
.product-review-tab .add_your_review ul.fix_border {
  border:none;
}
.product-review-tab .add_your_review form {
  margin-top:31px;
}
.product-review-tab .add_your_review form label {
  color: #a2a2a2;
  font-size: 16px;
  margin-bottom: 5px;
}
.product-review-tab .add_your_review form input {
  height:54px;
  padding: 0 15px 0 19px;
}
.product-review-tab .add_your_review form textarea {
  max-width: 100%;
  min-height: 165px;
  padding: 15px 17px 5px 19px;
}
.product-review-tab .add_your_review form input,
.product-review-tab .add_your_review form textarea {
    width:100%;
    border:1px solid #f0f0f0;
    margin-bottom: 30px;
    color:#9e9e9e;
    resize: none;
}

.news.single-blog .blogList_single_post .post ul li:before {
  display: none;
}

















/************************** 
* 11. Project styles 
***************************/
.latest-project {
  background: #f7f7ff;
}
.latest-project .section-title {
  margin-bottom: 37px;
}
.latest-project .text {
  margin-bottom: 15px;
}

.project-cta {
  background: #F7F7F7;
  padding: 30px 0;
}
.project-cta h3 {
  margin: 0;
  font-size: 26px;
  color: #333333;
  line-height: 50px;
}
.project-cta .thm-btn {
  padding-left: 25px;
  padding-right: 25px;
  border: none;
  line-height: 50px;
}
.project-cta .thm-btn:hover {
  color: #fff;
  background: #0D0D0D;
  border-color: #0D0D0D;
}

.single-latest-project-carousel .img-box {
  position: relative;
  overflow: hidden;
}
.single-latest-project-carousel .img-box img {
  width: 100%;
}
.single-latest-project-carousel .img-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform .4s ease, opacity .4s ease, visibility .4s ease;
  transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
}
.single-latest-project-carousel .img-box .overlay .box {
  display: table;
  width: 100%;
  height: 100%;
}
.single-latest-project-carousel .img-box .overlay .box .content {
  display: table-cell;
  vertical-align: bottom;
}
.single-latest-project-carousel .img-box .overlay .top {
  text-align: center;
}
.single-latest-project-carousel .img-box .overlay .top a {
  margin-bottom: 24%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 29px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 48px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: background .4s ease, border-color .4s ease;
  transition: background .4s ease, border-color .4s ease;
}
.single-latest-project-carousel .img-box .overlay .bottom {
  background: #848484;
  padding: 16px 20px;
  padding-right: 0;
}
.single-latest-project-carousel .img-box .overlay .bottom .title h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  margin-bottom: 7px;
}
.single-latest-project-carousel .img-box .overlay .bottom .title span {
  color: #fff;
  font-family: "Hind", sans-serif;
  font-size: 16px;
}
.single-latest-project-carousel .img-box .overlay .bottom a {
  color: #fff;
  width: 50px;
  height: 40px;
  line-height: 40px;
  border-left: 1px solid #5E80BD;
  display: block;
  position: relative;
  text-align: center;
}
.single-latest-project-carousel .img-box .overlay .bottom a:before {
  content: '';
  width: 1px;
  height: 100%;
  background: #2A5391;
  position: absolute;
  top: 0;
  left: -2px;
}
.single-latest-project-carousel:hover .img-box .overlay {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.latest-project-carousel .owl-nav {
  margin: 0;
  padding: 0;
}
.latest-project-carousel .owl-nav [class*=owl-] {
  color: #999999;
  font-size: 24px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  padding: 0 5px;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  position: absolute;
  bottom: 50%;
  margin: 0;
  margin-bottom: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.66);
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  margin-bottom: -20px;
  color: #fff;
  transition: .5s ease;
}
.latest-project-carousel .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background: rgba(72, 199, 236, 0.65);
  transition: .5s ease;
}
.latest-project-carousel .owl-nav .owl-next {
  right: 0;
}
.latest-project-carousel .owl-nav .owl-prev {
  left: 0;
}

.single-project-item h3 {
  margin: 0;
}
.single-project-item .img-box {
  position: relative;
  overflow: hidden;
}
.single-project-item .img-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(53, 99, 169, 0.9);
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform .4s ease, opacity .4s ease, visibility .4s ease;
          transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
}
.single-project-item .img-box .overlay .box {
  display: table;
  width: 100%;
  height: 100%;
}
.single-project-item .img-box .overlay .box .content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.single-project-item .img-box .overlay .box .content ul.list-inline li a {
  width: 45px;
  height: 45px;
  color: #848484;
  border-radius: 50%;
  text-align: center;
  background: rgba(0, 0, 0, 0.84);
  display: block;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  -webkit-transition: background .4s ease, color .4s ease;
  transition: background .4s ease, color .4s ease;
}
.single-project-item .img-box .overlay .box .content ul.list-inline li a:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}
.single-project-item:hover .img-box .overlay {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.single-project-item h3 {
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  font-family: "Montserrat-Regular", sans-serif;
}
.single-project-item h3:hover {
  color: #3563a9;
}
.single-project-item h3 a {
  color: inherit;
}
.single-project-item span {
  color: #999999;
  line-height: 24px;
}
.single-project-item .text-box {
  margin-top: 25px;
  padding-bottom: 23px;
}

.project-page .masonary-layout {
  margin-bottom: 20px;
}

.why-choose .testimonials-section .section-title h2 {
	color: #fff;
}


/*** 

====================================================================
    Testimonials Section style
====================================================================

***/

.testimonials-section{
    position:relative;
    background: #F7F7F7;
}

.testimonials-section .section-title h2 {
    color: #222222;
}


.testimonials-section .slide-item{
    position:relative;
    margin-top: 5px;

    transition: .5s ease;
}

.project-content.testimonials-section .slide-item{
    margin-bottom: 50px;
}
.padd-bottom-30{
  padding-bottom: 30px ;
}

.testimonials-section .slide-item:hover {
  transition: .5s ease;
}



.testimonials-section .quote {
    position: absolute;
    font-size: 30px;
    right: 30px;
    top: 38px;
    color: #333;
    transition: .5s ease;
}
.testimonials-section .slide-item:hover .quote {
  transition: .5s ease;
}

.testimonials-section .author{
    position:relative;
    padding: 15px 0px 0px 100px;
    margin-bottom: 43px;
    color:#c9c9c9;
    line-height:20px;
}

.testimonials-section .author .img-box {
    position:absolute;
    left:0px;
    top:0px;
}
.testimonials-section .author .img-box img {
    border-radius: 50%;
}


.testimonials-section .author h4 {
  position:relative;
  color: #ffffff;
  font-size: 20px;
}




.testimonials-section .author p {
    position:relative;
    color: #848484;
}

.testimonials-section .slide-text{
  margin-top: 15px;
  margin-left: 0px;
}


/* Native scroll-snap carousels (replaces owl.carousel â no jQuery) */
.testimonials-section .testimonials-slider.snap-carousel,
.clients-section .client-carousel.snap-carousel {
    position: relative;
}
.testimonials-section .testimonials-slider .snap-track,
.clients-section .client-carousel .snap-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
}
.testimonials-section .testimonials-slider .snap-track::-webkit-scrollbar,
.clients-section .client-carousel .snap-track::-webkit-scrollbar {
    display: none;                  /* WebKit */
}

/* nav buttons */
.snap-carousel .snap-prev,
.snap-carousel .snap-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c5c5c5;
    border-radius: 50%;
    background: #fff;
    color: #c5c5c5;
    font-size: 22px;
    cursor: pointer;
    z-index: 3;
    transition: color .3s ease, border-color .3s ease;
}
.snap-carousel .snap-prev { left: -8px; }
.snap-carousel .snap-next { right: -8px; }
.snap-carousel .snap-prev:hover,
.snap-carousel .snap-next:hover {
    color: #848484;
    border-color: #848484;
}
@media (max-width: 767px) {
    .snap-carousel .snap-prev,
    .snap-carousel .snap-next { display: none; }
}

/* testimonials slides: 3-up desktop, 2-up tablet, 1-up mobile */
.testimonials-section .testimonials-slider .slide-item {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
}
@media (max-width: 999px) {
    .testimonials-section .testimonials-slider .slide-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (max-width: 767px) {
    .testimonials-section .testimonials-slider .slide-item {
        flex: 0 0 100%;
    }
}



/*** 

====================================================================
    client Section style
====================================================================

***/

.clients-section .section-title {
  margin-bottom: 10px;
}
.clients-section .tooltip-inner {
  background: #848484;
}
.clients-section .tooltip.top .tooltip-arrow {
  border-top-color: #848484;
}

.clients-section .client-carousel .snap-track {
    padding-top: 40px;
}

/* clients slides: 5-up desktop -> 4 / 3 / 2 / 1 on smaller screens */
.clients-section .client-carousel .item {
    flex: 0 0 calc((100% - 120px) / 5);
    scroll-snap-align: start;
}
@media (max-width: 999px) {
    .clients-section .client-carousel .item { flex: 0 0 calc((100% - 90px) / 4); }
}
@media (max-width: 739px) {
    .clients-section .client-carousel .item { flex: 0 0 calc((100% - 60px) / 3); }
}
@media (max-width: 539px) {
    .clients-section .client-carousel .item { flex: 0 0 calc((100% - 30px) / 2); }
}
@media (max-width: 379px) {
    .clients-section .client-carousel .item { flex: 0 0 100%; }
}




/*** 

====================================================================
    service Section style
====================================================================

***/

.service {
  background: #F7F7F7;
}

.service .item {
  position: relative;
  min-height: 366px;
  overflow: hidden;
}
.service .item:last-child {
  border-right: 1px solid #e8e8e8;
}

.service .item .icon_box {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -39px;
}

.service .item .icon_box span {
  color: #222;
  font-size: 40px;
}

.service .item .icon_box h4 {
  font-size: 20px;
  margin-top: 12px;
}


.service .item .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 0%;
    background: #b81c22;
    transition: .5s cubic-bezier(0.4, 0, 1, 1);
    opacity: 0;
    visibility: hidden;
}
.service .item:hover .overlay-box {
    height: 100%;
    transition: .5s cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    visibility: visible;
}
.service .item .overlay-box .icon_box {
    position: relative;
    width: 100%;
    display: block;
    margin: 0;
    top: 0;
    margin-top: 70px;
    margin-bottom: 20px;
}
.service .item .overlay-box p,
.service .item .overlay-box .icon_box h4,
.service .item .overlay-box .default_link,
.service .item .overlay-box .icon_box span {
  color: #fff;
}

.service .item .overlay-box p {
  margin-bottom: 20px;
}







/*** 

====================================================================
    service-single Section style
====================================================================

***/

/* æªä½¿ç¨çæ ·å¼å·²å é¤: service-catergory */

.service-single blockquote {
    padding: 20px 20px;
    margin: 0 0 20px;
    padding-left: 30px;
    font-size: 18px;
    border-left: 5px solid #f7f7f7;
    font-style: italic;
    color: #848484;
    font-family: "Poppins", sans-serif;
}

/* æªä½¿ç¨çæ ·å¼å·²å é¤: brochures-lists, brochures */

.author-details.style-2 .item {
    padding: 20px 20px 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
    background: transparent;
    margin: 0;
    padding: 15px 0;
}


/*growth-service*/

.growth-service .item {
  background: #f7f7f7;
  padding: 30px 0;
  border: 1px solid #eaeaea;
}
.growth-service .item span {
  color: #848484;
  font-size: 48px;
  transition: .5s ease;
}
.growth-service .item h4 {
  font-size: 20px;
  margin-bottom: 5px;
  padding-top: 20px;
}

/*style-2*/

.growth-service.style-2 .item {
    background: #fff;
    padding: 45px 15px;
    border: none;
    transition: .5s ease
}
.growth-service.style-2 .item.active,
.growth-service.style-2 .item:hover {
  background-color: #848484;
  transition: .5s ease
}
.growth-service.style-2 .item h4 {
    font-size: 20px;
    margin-bottom: 18px;
    padding-top: 20px;
    transition: .5s ease;
}
.growth-service.style-2 .item span {
  font-size: 70px;
}
.growth-service.style-2 .item.active span,
.growth-service.style-2 .item:hover span,
.growth-service.style-2 .item.active h4,
.growth-service.style-2 .item:hover h4,
.growth-service.style-2 .item.active p,
.growth-service.style-2 .item:hover p {
  color: #fff;
  transition: .5s ease;
}
/*benifit*/
.benifit li {
    position: relative;
    color: #848484;
    padding-left: 20px;
    margin: 15px 0;
}

.benifit li:after {
    position: absolute;
    content: '';
    background: #848484;
    height: 8px;
    width: 8px;
    left: 0;;
    top: 7px;
}

.benifit {margin-bottom: 10px;}

.service-single .accordion-box .accordion .acc-content {
  padding: 2px 0 8px;
}
.service-single .accordion {
  margin-bottom: 5px;
}

.default-form.service-form textarea {
    height: 226px;
}

/*** 

====================================================================
    about Section style
====================================================================

***/

.about-faq .link_btn .sign {
    display: inline-block;
    position: relative;
    left: 50px;
    top: 5px;
}

.about{
	margin: 10px auto;
}

.accordion-box {
    border: 1px solid #f7f7f7;
}

.accordion {
    margin-bottom: 25px;
    position: relative;
}

.accordion .acc-btn .left-icon {
    position: absolute;
    left: 0;
    top: 0;
    background: #f1f1f1;
    width: 60px;
    height: 100%;
    color: #9c9c9c;
    font-size: 20px;
    text-align: center; 
}
.accordion .acc-btn.active .left-icon {
    color: #fff;
}

.accordion .left-icon span {
    position: relative;
    top: 18px;  
}

.accordion .acc-btn {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 0px 10px;
    margin: 0 30px;
    padding-right: 50px;
    border-top: 1px solid #f7f7f7;
}
.accordion .acc-btn p {
    color: #222;
    font-family: 'Poppins', sans-serif;
}
.accordion .acc-btn.active p {
    color: #848484;
}

.accordion .acc-btn.pr {
    position: relative;
}

.accordion .acc-btn .img-box {
    display: none;
}
.accordion .acc-btn.active .img-box {
    display: block;
}


.accordion .acc-btn .toggle-icon {
    color: #9c9c9c;
    display: block;
    font-weight: 100;
    height: 24px;
    line-height: 24px;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 24px;
}
.accordion .acc-btn .toggle-icon.left {
    color: #9c9c9c;
    display: block;
    font-weight: 100;
    height: 24px;
    line-height: 24px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 30px;
}
.accordion .acc-btn .toggle-icon .plus::before {
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #222;
}

.accordion-box .accordion .acc-btn.active .toggle-icon .plus {
    opacity: 0;
}


.accordion-box .accordion .acc-btn .toggle-icon .minus::before {
    font-size: 24px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    width: 100%;
}
.accordion-box .accordion .acc-btn .toggle-icon .minus{
    opacity: 0;
}
.accordion-box .accordion .acc-btn.active .toggle-icon .minus {
    opacity: 1;
}

.accordion-box .accordion .acc-content {
    color: #9c9c9c;
    display: none;
    padding: 15px 0px 15px;
    margin: 0 30px;
}

.accordion-box .accordion .acc-content.collapsed {
    display: block;
}

.accordion-box .accordion .acc-content p {
    margin: 0;
}


.accordion-box .accordion .acc-btn.active .toggle-icon .minus {
  color: #121d2f;
}

.single-faq-bg {
  position: relative;
}
.single-faq-bg:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 5000%;
    height: 100%;
    background: #f7f7f7;
    z-index: 0;
}




.about-faq .default-form input[type="text"], .about-faq .default-form input[type="email"], .about-faq .default-form input[type="password"], 
.about-faq .default-form input[type="number"], .about-faq .default-form select, .about-faq .default-form textarea {
    border-color: #eaeaea;
}

.about-faq .default-form-area {
  padding-left: 30px;
}
.about-faq .default-form-area h3 {
  margin-bottom: 38px;
  position: relative;
  font-weight: 400;
}

.accordion-box.style-2 .accordion .acc-content {
  padding: 10px 0;
}
.accordion-box.style-2 .accordion {
  margin-bottom: 5px;
}

/*** 

====================================================================
  Fact Counter Section
====================================================================

***/

.fact-counter{
  position:relative;
  padding: 70px 0px 40px;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
  overflow:hidden;
  color:#ffffff;
}

.fact-counter:before{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  background: rgba(0, 0, 0, 0);
  opacity:0.80;
  z-index:0;
}

.fact-counter .auto-container{
  position:relative;
  z-index:1;
}

.fact-counter .column{
  position:relative;
  margin-bottom:40px;
  text-align:center;
  z-index:5;  
}
.fact-counter .item {
  background: #f7f7f7;
  color: #b81c22;
  padding: 17px 0 25px;
}

.fact-counter .column .icon span{
  position:relative;
  top:0px;
  font-size: 50px;
  position: absolute;
  line-height:70px;
  top: -5px;
  left: 0;
  margin-bottom:20px;
  color: #ab7442;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.fact-counter .count-outer{
  position:relative;
  font-size: 36px;
  font-weight: 600;
  padding: 0px 10px 23px;
  font-family: 'Poppins', Sans-serif;
}
.fact-counter .count-outer:before {
    content: "";
    position: absolute;
    top: 53px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 1px;
    background: #404652;
}

.fact-counter .column .counter-title{
  position:relative;
  font-size: 18px;
  font-weight: 300;
  font-family: "Hind", Sans-serif;
  color:#222;
}



/*** 

====================================================================
  google map Section
====================================================================

***/
.home-google-map #contact-google-map {
  width: 100%;
  height: 430px;
}
.home-google-map .gmnoprint {
    display: none;
}


/*** 

====================================================================
  contact Section
====================================================================

***/


.default-cinfo .icon_box {
  width: 40px;
}
.default-cinfo li + li {
  margin-top: 10px;

  padding-top: 12px;
}
.default-cinfo li .icon_box,
.default-cinfo li .text-box {
  display: table-cell;
  vertical-align: top;
}

.default-cinfo li .icon_box i {
  font-size: 20px;
  color: #848484;
  position: relative;
  top: 7px;
}
.default-cinfo .accordion .acc-btn {
  background: #b81c22;
  padding: 14px 30px;
  margin: 0;
  color: #ffffff;
}

.default-cinfo .accordion-box {
  border: none;
}
.default-cinfo .accordion {
  border: 1px solid #f7f7f7;
}
.default-cinfo .accordion-box .accordion .acc-content b {
  color: #222;
  font-weight: 600;
}

/*form*/

.default-form {
  position: relative;
}


.default-form p {
  color: #fff;
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 20px;
}
.default-form p span {
  color: #ab7442;
  font-size: 20px;
  font-weight: 600;
}


.default-form .form-box{
  position:relative;
}

.comment-form .form-box{
  padding:25px 25px 0px 25px; 
}

.default-form .form-group{
  position:relative;
  margin-bottom:30px; 
}

.default-form .comment-form .form-box .form-group{
  margin-bottom:25px;
}

.default-form.form-box .row{
  margin-left:-10px;
  margin-right:-10px; 
}

.default-form.form-box .row .form-group{
  padding:0px 0px;  
}

.default-form .form-group .field-label{
  display:block;
  line-height:24px;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#232323;
  font-weight:500;
  font-size:13px;
}

.default-form .form-group .field-label sup{
  color:#ff0000;
  font-size:14px;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form input[type="number"],
.default-form input[type="address"],
.default-form select,
.default-form textarea{
  display:block;
  width:100%;
  line-height:24px;
  height:55px;
  font-size:16px;
  box-shadow: none;
  border: 1px solid #222222;
  padding:12px 15px;
  background: #f7f7f7;
  border-radius: 0px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.default-form textarea{
  height: 120px;
}
.default-form .bootstrap-select {
    border: 1px solid #f4f4f4;
    background: #f7f7f7;
    color: #a2a2a2;
    padding: 10px 0;
    font-size: 16px;
}
.default-form .btn-group.open .dropdown-toggle {
    box-shadow: none;
}
.default-form .btn-group.open .dropdown-toggle:focus {
  border: none;
  outline: none;
}
.default-form  .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.default-form  .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
  background-color: #848484;
  color: #fff;
}
.default-form .form-control:focus {
  border-color: #848484;
  box-shadow: none;
}

.default-form .thm-btn {
  width: 100%;
}


.default-form form input::-webkit-input-placeholder {
  color: #9e9e9e;
}
.default-form form input:-moz-placeholder {
  /* Firefox 18- */
  color: #9e9e9e;
}
.default-form form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #9e9e9e;
}
.default-form form input:-ms-input-placeholder {
  color: #9e9e9e;
}


.default-form .alert-success {
    color: #848484;
    background: none;
    border: none;
    font-size: 18px;
}


/*author-details*/



.author-details {
  background: #f7f7f7;
  padding: 1px 20px;
}
.author-details .item {
  padding: 20px 20px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  background: #fff;
  margin: 30px 0;
}
.author-details .item:last-child {
  border-bottom: 0px;
}
.author-details .item .img-box,
.author-details .item .content {
  display: table-cell;
  vertical-align: top;
}

.author-details .item .img-box{
  width: 67px;
}

.author-details .item .content{
  padding-left: 20px;
}

.author-details .item .content p {
  color: #9e9e9e;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 25px;
}
.author-details .item .content p i {
  color: #848484;
  margin-right: 5px;
}

.author-details .item h5 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #272727;
}
.author-details .item .content h5 {
  color: #848484;
  margin: 0;
}






/*** 

====================================================================
  consultation Section
====================================================================

***/



.consultation .default-form-area {
    background: #fff;
    padding: 40px 30px 10px;
    border: 1px solid #f4f4f4;
    max-width: 690px;
    margin: 0 auto;
    margin-top: -40px;
    position: relative;
}






/***
==============================
   8. Team Member styles
============================== 
***/


.our-team {
  position: relative;
  padding: 70px 0 20px;
}



.single-team-member h3,
.single-team-member p {
  margin: 0;
}
.single-team-member h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  margin-top: 12px;
  margin-bottom: 6px;
}


.single-team-member .img-box {
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.07);
  display: inline-block;
  background: #f7f7f7;
}
.single-team-member .img-box img {
  transition: all 0.5s ease;
  transform: scale(1);
}


.our-team .single-team-member {
  margin-bottom: 50px;
  text-align: center;
}
.single-team-member .author-info {
  overflow: hidden;
  border: 2px solid #f4f4f4;
  padding: 6px 0 9px;
}

.single-team-member a p {
  color: #848484;
  transition: .5s ease;
}

.single-team-member .text {
  margin-top: 15px;

}
.single-team-member .text p {
  font-size: 16px;

}

.single-team-member .img-box .overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(72, 199, 236, 0.9);
  width: 100%;
  transform: scale(0.7,0);
  transition: .5s ease-in-out;
}
.single-team-member:hover .img-box .overlay {
  transform: scale(1,1);
  transition: .5s ease-in-out;
}

.single-team-member .inner-box {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}
.single-team-member .social {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: -20%;
    transition: .2s cubic-bezier(0.4, 0, 1, 1);
}
.single-team-member:hover .social {
  top: 0;
  transition: .5s cubic-bezier(0.4, 0, 1, 1);
  transition-delay: .3s;
}
.single-team-member .social li {
  padding: 0;
  margin: 0 3px;
}
.single-team-member .social li a {
  color: #ffffff;
  transition: color .4s ease;
  font-size: 14px;
}


.single-team-member .img-box .overlay ul li a {
  height: 42px;
  width: 42px;
  color: #fff;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  line-height: 44px;
  border: 1px solid #fff;
}
/*style-2*/

.our-team.style-2 .section-title h2 {
  color: #fff;
}


.our-team.style-2:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(12, 20, 25, 0.95);
    z-index: 0;
}
.our-team.style-2 .container {
  position: relative;
}

.our-team.style-2 .single-team-member .author-info {
  border-color: #1a2228;
}
.our-team.style-2 .single-team-member h4 {
  color: #fff;
}




/***
==============================
   8. Team Member styles
============================== 
***/


.testimonials {
  position: relative;
  padding-bottom: 30px;
}



.single-testimonial h3,
.single-testimonial p {
  margin: 0;
}
.single-testimonial h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  margin-top: 12px;
  margin-bottom: 6px;
}


.single-testimonial .img-box {
  position: relative;
}
.single-testimonial .img-box img {
  transition: all 0.5s ease;
  transform: scale(1);
}


.testimonials .single-testimonial {
  margin-bottom: 40px;
  border: 1px solid #f4f4f4;
  padding: 30px 10px 26px;
  transition: .5s ease-in-out;
}

.testimonials .single-testimonial:hover {
  box-shadow: 0 1px 16px 0 rgba(0, 0, 0, 0), 0 0px 82px 0 rgba(0, 0, 0, 0.05);
  transition: .5s ease-in-out;
}



.single-testimonial .author-info {
  overflow: hidden;
  border: 2px solid #f4f4f4;
  padding: 6px 0 9px;
  margin-top: 5px;
}

.single-testimonial p a {
  color: #848484;
  transition: .5s ease;
}

.single-testimonial .text {
  margin-top: 15px;
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.single-testimonial .text p {
  font-size: 16px;

}








/************************** 
* Project styles 
***************************/
.single-project {
  padding-bottom: 30px;
}
.single-project .img-box {
  position: relative;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #eaeaea;
}
.single-project .img-box img {
  width: 100%;
}
.single-project .title h5 {
  color: #222;
  padding: 25px 0 0;
  font-size: 16px;
  font-weight: 400;
  transition: .5s ease;
}
.single-project:hover .title h5 {
  color: #848484;
  transition: .5s ease;
}

.single-project .img-box .overlay {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  background: rgba(72, 199, 236, 0.9);
  padding: 5px;
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
}
.single-project .img-box .overlay .box {
  display: table;
  width: 100%;
  height: 100%;
}
.single-project .img-box .overlay .box .content {
  display: table-cell;
  vertical-align: bottom;
}
.single-project .img-box .overlay .top {
  text-align: center;
}
.single-project .img-box .overlay .top ul {
  margin-bottom: 0;
  margin-bottom: 20%;
}
.single-project .img-box .overlay .top li a {
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  background: #222;
  display: block;
  border-radius: 50%;
  transition: .4s ease;
}
.single-project .img-box .overlay .top li a:hover {
  background: #1f1f1f;
  color: #848484;
}
.single-project .img-box .overlay .bottom {
  padding: 10px 0px;
  padding-right: 0;
  text-align: center;
}
.single-project .img-box .overlay .bottom .title h3 {
  margin: 0;
  color: #fff;
  line-height: 30px;
  font-size: 15px;
}
.single-project:hover .img-box .overlay {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}


.post-filter {
  display: inline-block;
  margin: 0;
  margin-bottom: 30px;
}
.post-filter li {
  padding: 0;
}

.post-filter li span {
  color: #848484;
  font-size: 14px;
  line-height: 24px;
  display: block;
  padding-right: 16px;
  cursor: pointer;
  transition: .5s ease;
}
.post-filter li:hover span,
.post-filter li.active span {
  color: #848484;
  transition: .5s ease;
}


/*inform-list*/
.inform-list {
  background: #f7f7f7;
  padding: 23px 20px;
}
.inform-list li  {
  color: #848484;
  font-size: 16px;
  line-height: 43px;
}   
.inform-list li span {
  color: #848484;
  font-weight: 700;
}
.client-information .title {
  color: #848484;
  margin: 10px 0;
}
.client-information .text {margin-bottom: 35px;}

/*contact-service*/

.service-contact {
  background: #848484;
  padding: 30px;
  margin-top: 50px;
}
.service-contact h4 {
  color: #fff;
}
.service-contact p {
  color: #fff;
  font-size: 18px;
  margin: 10px 0
}
.service-contact .thm-btn {
  background: #fff;
  line-height: 38px;
  padding: 0 15px;
  color: #848484;
}
.service-contact .thm-btn:hover {
  background: #fff;
  color: #848484;
}





/* æªä½¿ç¨çæ ·å¼å·²å é¤: cart-section (~450è¡) */

/*============================= Sidebar Style One ==================*/

.sidebar_styleOne .theme_title, .sidebar_styleTwo .theme_title {
  line-height: 24px;
  padding: 20px 15px;
  min-width: 120px;
  font-weight: normal;
}

.cart-table thead tr th.prod-column {
  text-align: left;
  padding-left: 40px;
}

.cart-table tbody tr td {
  line-height: 24px;
  padding: 15px 10px;
  min-width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: yellow;
}

.cart-table tbody tr .qty {
  width: 120px;
  padding-right: 20px;
}

.cart-table tbody tr .qty .quantity-spinner {
  background: black;
}

.cart-table tbody tr .prod-column .column-box {
  position: relative;
  min-height: 90px;
  padding-left: 85px;
  padding-top: 20px;
  text-align: left;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb {
  position: absolute;
  left: 0px;
  top: 11px;
  padding: 0px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img {
  display: block;
  max-width: 100%;
}

.cart-table tbody tr .prod-column .column-box h3 {
  font-size: 18px;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #222;
  text-transform: capitalize;
}

.cart-table tbody tr .sub-total {
  font-weight: 400;
  color: #848484;
}

.cart-table tbody tr .remove-btn {
  position: relative;
  font-size: 16px;
  color: yellow;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.cart-table tbody tr .remove-btn .fa {
  position: relative;
  top: 2px;
  padding-right: 10px;
  font-size: 24px;
  line-height: 30px;
  transition: .5s ease;
}

.cart-table tbody tr .remove-btn:hover {
  color: #848484;
  transition: .5s ease;
}
.cart-table tbody tr .remove-btn span:before {
  font-size: 30px;
}
.cart-table tbody tr {
  border-bottom: 1px solid #F7F7F7;
}

.cart-table tbody tr td {
  vertical-align: middle;
}

.cart-table tbody tr td .quantity-spinner {
  padding: 5px 0px 5px 20px;
  line-height: 24px;
  height: 43px;
  display: block;
  box-shadow: none;
  width: 100%;
  font-size: 20px;
  position: relative;
  color: #222;
}

.cart-table tbody .available-info {
  position: relative;
  padding-left: 50px;
  color: #9e9e9e;
  font-size: 14px;
}

.cart-table tbody .available-info .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #848484;
  border-radius: 50%;
}



/* æªä½¿ç¨çæ ·å¼å·²å é¤: cart-section (~230è¡) */






/* æªä½¿ç¨çæ ·å¼å·²å é¤: checkout-area (~240è¡) */



.cart-total .sec-title-two {
  padding-bottom: 32px;
}
.cart-total-table {
  border: 2px solid #ebebeb
}
.cart-total-table li {
  border-bottom: 1px solid #ebebeb
}
.cart-total-table li:last-child {
  border-bottom: none
}
.cart-total-table li span.col.col-title {
  border-right: 1px solid #ebebeb;
  color: #272727;
  display: block;
  float: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 10px 18px;
  position: relative;
  width: 50%;
}
.cart-total-table li span.col {
  color: #9a9a9a;
  display: block;
  float: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  padding: 10px 18px;
  position: relative;
  width: 50%;
}
.cart-total-table li span.col b {
  color: #848484;
  font-weight: 300;
  text-decoration: underline;
}


.cart-total .payment-options {
  background: #f7f7f7 none repeat scroll 0 0;
  margin-top: 30px;
  overflow: hidden;
  padding: 23px 20px 35px;
}
.cart-total .payment-options .option-block {
  margin-bottom: 14px
}

.cart-total .payment-options .option-block .checkbox {
  margin: 0 0 5px;
}
.cart-total .payment-options .option-block .checkbox label {
  font-weight: 300;
  min-height: 20px;
  padding-left: 20px;
}
.cart-total .payment-options .option-block .checkbox label input {
  top: -1px;
}
.cart-total .payment-options .option-block .checkbox label span {
  color: #252525;
  padding-left: 10px;
}
.cart-total .payment-options .option-block .checkbox label span b {
  color: #848484;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  padding-left: 25px;
  text-decoration: underline;
}
.cart-total .payment-options .option-block .text{
  padding-left: 30px;
}
.cart-total .payment-options .option-block .text p {
  margin: 0;
  line-height: 28px;
}







/*** 
=============================================
     shop style
=============================================
***/




.shop {
  position: relative;
  padding: 60px 0px 40px;
}

.shop .hover-effect {
  margin-bottom: 15px;
  padding-top: 10px;
  transition: .5s ease;
}
.shop .hover-effect:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: .5s ease-in-out;
}
.single-shop-item .img-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  transition: .5s ease;
  background: #f7f7f7;
  text-align: center;
}
.single-shop-item:hover .img-box {
  transition: .5s ease;
}
.single-shop-item .img-box .offer-box {
  position: absolute;
  top: 10px;
  left: 10px;
}
.single-shop-item .img-box .offer-box .inner {
  position: relative;
}
.single-shop-item .img-box .offer-box .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  background-color: transparent;
  border-bottom: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-top: 35px solid #ab7442;
  border-left: 35px solid #ab7442;
  border-right: 35px solid transparent;
}
.single-shop-item .img-box .offer-box .inner span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transform: rotate(-45deg);
  line-height: 35px;
  transform-origin: 70% 35%;
}
.single-shop-item .text-box h3,
.single-shop-item .text-box p {
  margin: 0;
}
.single-shop-item .text-box h3 {
  font-size: 18px;
  line-height: 50px;
  color: #1F1F1F;
  margin-top: 10px;
}
.single-shop-item .text-box p {
  font-size: 20px;
  line-height: 24px;
}
.single-shop-item .text-box p i {
  font-size: 18px;
}
.single-shop-item .text-box p span {
  display: inline-block;
  vertical-align: top;
  color: #ab7442;
  font-size: 18px;
  font-weight: 400;
}
.single-shop-item .text-box p del {
  color: #9f9f9f;
  font-size: 14px;
  line-height: 24px;
  vertical-align: super;
  display: inline-block;
  font-weight: normal;
}
.single-shop-item .text-box p del i {
  font-size: 14px;
}

.single-shop-item .thm-btn.thm-tran-bg {
  color: #ffffff;
  border-color: #fff;
}
.single-shop-item .thm-btn:hover {
  color: #848484;
  background: #ffffff;
}

.single-shop-item:hover .img-box .overlay {
  background-color: rgba(255, 255, 255, 0.9);
}
.single-shop-item:hover .img-box .overlay .box .content ul li a {
  opacity: 1;
  transform: translate3d(0px, 0px, 0);
}


.default-overlay-outer{
  position:absolute;
  display:block;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  padding:10px;
  -webkit-transition:all 700ms ease;
  -moz-transition:all 700ms ease;
  -ms-transition:all 700ms ease;
  -o-transition:all 700ms ease;
  transition:all 700ms ease;
}

.default-overlay-outer .inner{
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  display:table;
  vertical-align:middle;
  text-align:center;
}

.default-overlay-outer .inner .content-layer{
  position:relative;
  display:table-cell;
  vertical-align:middle;
  color:#ffffff;
}


.single-shop-item .default-overlay-outer{
  opacity:0;
  top:-100%;
  
}

.single-shop-item:hover .default-overlay-outer{
  top:0;
  opacity:1;  
}

.single-shop-item .content-box{
  position:relative;
  padding: 20px 0px;
}

.single-shop-item .content-box h4{
  font-size: 14px;
  font-weight: 600;
  margin:0px 0px;
  line-height:1.4em;
  color: #252525;
  margin-bottom: 6px;
}

.single-shop-item .content-box a,
.single-shop-item .content-boxa:hover{
  color:#000000;
  line-height: 25px;
  
}

.single-shop-item .content-box h4 a{
  color: #252525;

}

.single-shop-item .content-box .rating{
  font-size: 13px;
  color: #848484;
  margin-bottom:15px;
  position: absolute;
  right: 5px;
  top: 14px;
}

.single-shop-item .content-box .item-price{
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  line-height:24px;
}
.single-shop-item .content-box .item-price del{
  color: #a2a2a2;
  margin-left: 7px;
  font-size: 15px;
}
.single-shop-item .content-box .item-price .strike-through{
  color:#999999;
  font-weight:normal;
  font-size:14px;
  padding-left:10px;
  line-height:20px;
  font-family:'Lato',sans-serif;
}


/*============================= Sidebar Style One ==================*/

.sidebar_styleOne .theme_title,.sidebar_styleTwo .theme_title{
  padding-bottom: 18px;
}
.sidebar_search {
  height: 54px;
  position: relative;
  margin-top: 10px;
}
.sidebar_search input {
  width:100%;
  height:54px;
  border:none;
  border: 1px solid #f1f1f1;
  padding: 0 56px 0 12px;
  color:#9e9e9e;
}
.sidebar_search button {
  width:54px;
  height:100%;
  position: absolute;
  top:0;
  background: #848484;
  right:0;
  color:#fff;
}
.sidebar_categories {
  margin-top:60px;
}
.sidebar_categories ul {
  margin-top:22px;
  margin-bottom: 35px;
}
.sidebar_categories ul li {
  line-height: 48px;
  border-bottom: 1px solid #f1f1f1;
}
.sidebar_categories ul li:last-child {
  border:none;
}
.sidebar_categories ul li a {
  font-weight: normal;
  color: #9e9e9e;
  position: relative;
}
.sidebar_categories ul li input[type="checkbox"] {
  float: right;
  position: relative;
  top: 14px;
}
.sidebar_categories ul li a:before {
    content: '\f114';
    font-family: 'FontAwesome';
    margin-right: 10px;
}
.sidebar_categories.archive ul li a:before {
    content: "\f00c";
}
.sidebar_categories ul li a:hover {
  color: #848484;
}
.recent_news_sidebar .theme_title {
  margin-bottom: 40px;
}
.recent_news_sidebar {
  margin-bottom: 62px;
}
.recent_news_sidebar .single_news_sidebar {
  margin-bottom: 29px;
} 
.recent_news_sidebar .img_holder img {
  width:75px;
  height:75px;
  border-radius: 5px;
}
.recent_news_sidebar .post {
  padding-left: 26px;
  width: 72%;
  margin-top: -10px;
}
.recent_news_sidebar .post h6 a {
  font-size: 16px;
  color:#272727;
  line-height: 28px;
  font-weight: 900;
  margin-bottom: 2px;
}
.recent_news_sidebar .post p a {
  font-size: 14px;
}
.recent_news_sidebar .post p a i {
  margin-right: 4px;
  font-size: 16px;
}

.recent_news_sidebar .img_holder {
  position: relative;
}
.recent_news_sidebar .img_holder .opacity {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  -webkit-transform:scale(0.1);
  -moz-transform:scale(0.1);
  -ms-transform:scale(0.1);
  -o-transform:scale(0.1);
  transform: scale(0.1);
}
.recent_news_sidebar .img_holder .opacity .icon {
  display: table;
  width:100%;
  height:100%;
}
.recent_news_sidebar .img_holder .opacity .icon span {
  display: table-cell;
  vertical-align: middle;
}
.recent_news_sidebar .img_holder .opacity .icon span a {
  display: block;
  width:45px;
  height:45px;
  margin:0 auto;
  line-height: 45px;
  border-radius: 50%;
  color:#fff;
  text-align: center;
}
.recent_news_sidebar .single_news_sidebar:hover .opacity {
  opacity: 1;
  visibility:visible;
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  -o-transform:scale(1);
  transform: scale(1);
}

.sidebar_tags {
  margin:60px 0 -6px 0;
}
.sidebar_tags ul {
  margin-top: 10px;
  padding: 24px 0px;
}
.sidebar_tags ul li {
  display: inline-block;
  margin: 0 4px 8px 0;
}
.sidebar_tags ul li a {
  display: block;
  font-weight: normal;
  font-size: 15px;
  color:#9e9e9e;
  line-height: 32px;
  border: 1px solid #f1f1f1;
  background: #fff;
  border-radius: 2px;
  text-align: center;
  padding: 0 14px;
}
.sidebar_tags ul li a:hover {
  color: #ffffff;
  background: #848484;
}



.single-sidebar.price-ranger .ui-widget-content {
  background: #f7f7f7;
  border: none;
  height: 2px;
}
.single-sidebar.price-ranger .ui-slider-handle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #222;
  margin-left: -4px;
  outline: none;
  background: #848484;
}
.single-sidebar.price-ranger .ui-slider .ui-slider-range {
  background: #252525;
}
.single-sidebar.price-ranger .ui-slider-horizontal .ui-slider-handle {
  top: -5px;
}
.single-sidebar.price-ranger #slider-range {
  margin-top: 25px;
}
.single-sidebar.price-ranger .ranger-min-max-block {
  margin-top: 20px;
  margin-bottom: 45px;
}
.single-sidebar.price-ranger .ranger-min-max-block input {
  display: inline-block;
}
.single-sidebar.price-ranger .ranger-min-max-block input[type='submit'] {
  width: 80px;
  border: none;
  border-radius: 0px;
  text-align: center;
  outline: none;
  line-height: 35px;
  font-size: 14px;
  margin-right: 37px;
  color: #ffffff;
  font-weight: 700;
  background: #848484;
  text-transform: uppercase;
  border: 2px solid #848484;
}
.single-sidebar.price-ranger .ranger-min-max-block input[type='text'] {
  border: none;
  text-align: center;
  outline: none;
  width: 40px;
  color: #9c9c9c;
  font-weight: 400;
  text-align: right;
}
.single-sidebar.price-ranger .ranger-min-max-block span {
  color: #9c9c9c;
  font-weight: 400;
}
.best_sellers .theme_title {
  margin-bottom: 36px;
}
.best_sellers .best_selling_item .text {
  padding-left: 20px;
  margin-top:-3px;
}
.best_sellers .best_selling_item .text h6 {
  font-size: 16px;
  font-weight: 700;
  color:#272727;
}
.best_sellers .best_selling_item .text ul li {
  display: inline-block;
  margin-right:3px;
  font-size: 12px;
  margin-top: 10px;
  color: #848484;
}
.best_sellers .best_selling_item .text span {
  display: block;
  margin-top: 10px;
  color: #848484;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto';
}
.best_sellers .best_selling_item {
  margin:20px 0 20px 0;
  padding-bottom: 17px;
}
.best_sellers .best_selling_item.border {
  border-bottom: 1px solid #f7f7f7;
}
.sidebar_styleTwo .sidebar_categories {
  margin-top: 30px;
}
.sidebar_styleTwo .sidebar_tags {
  margin: 19px 0 51px 0;
}










/*** 
=============================================
    page_pagination style
=============================================
***/


.page_pagination {
  text-align: center;
  padding-top: 20px;
}
.page_pagination li {
  display: inline-block;
  margin:0 4px;
}
.page_pagination li a {
  width: 55px;
  line-height: 55px;
  border:1px solid rgba(229, 229, 229, 0.57);
  text-align: center;
  color: #252525;
  font-size: 18px;
  border-radius: 2px;
}
.page_pagination li a.active,
.page_pagination li a:hover {
  color:#fff;
  background: #848484;
}
.page_pagination li .ellipsis {
  display: inline-block;
  width: 55px;
  line-height: 55px;
  border:1px solid transparent;
  text-align: center;
  color: #252525;
  font-size: 18px;
}




/*** 
=============================================
   Shop Single area  style
=============================================
***/
.shop-single-area {
  padding-bottom: 80px;
  padding-top: 80px;
}
.product-content-box {
  margin-bottom: 106px;
}
.product-content-box .img-box {
  text-align: center;
}
.product-content-box .flexslider .slides img {
  width: auto;
  display: inline-block;
}
.product-content-box .flexslider {
  background: #f7f7f7 none repeat scroll 0 0;
  border: none;
  padding: 32px 0;
  border-radius: 0;
  margin: 0 50px 10px 0;
  position: relative;
  text-align: center;
}
.product-content-box .flex-viewport {
  border: none;
  max-height: 450px;
  transition: all 1s ease 0s;
}

.product-content-box .flex-control-thumbs {
  margin: 10px 0 0;
  overflow: hidden;
  position: static;
  display: none;
}
.product-content-box .flex-control-thumbs li {
  float: left;
  margin: 0 3% 0 0;
  width: 25%;
}

.product-content-box .flex-control-thumbs img {
  border: medium none;
  cursor: pointer;
  display: block;
  height: auto;
  opacity: 0.6;
  transition: all 1s ease 0s;
  width: 100%;
  border: 3px solid #f7f7f7;
}

.product-content-box .flex-control-thumbs .flex-active {
  cursor: default;
  opacity: 1;
  border: 3px solid #ab7442;
}
.product-content-box .flex-control-thumbs .flex-active:focus{
  outline: none;
}

.product-content-box .content-box {
  margin-left: -50px;
}
.product-content-box .content-box h3 {
  color: #222;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: capitalize;
}
.product-content-box .content-box del {
  color: #a2a2a2;
  margin-left: 10px;
}
.product-content-box .content-box .review-box {
  margin: 0 0 10px;  
}
.product-content-box .content-box .review-box ul li {
  display: inline-block;
  margin-right: 3px;
}
.product-content-box .content-box .review-box ul {
  display: inline-block;
  padding-right: 1px;
}
.product-content-box .content-box .review-box ul li i {
  color: #848484;
  font-size: 14px;
}

.product-content-box .content-box span.price {
  color: #848484;
  font-size: 22px;
}
.product-content-box .content-box .text {
  margin: 0px 0 0;
  overflow: hidden;
  padding: 24px 0 9px;
}

.product-content-box .content-box .location-box {
  margin: 4px 0 18px;
  position: relative;
}
.product-content-box .content-box .location-box p {
  color: #1f1f1f;
  margin: 0 0 12px;
}
.product-content-box .content-box .location-box form input {
  border: 2px solid #f7f7f7;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  width: 170px;
  transition: all 500ms ease;
}
.product-content-box .content-box .location-box form input:focus{
  border-color: #848484;
}
.product-content-box .content-box .location-box form button {
  background: #f7f7f7 none repeat scroll 0 0;
  border: medium none;
  color: #292929;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  left: 178px;
  top: 37px;
  height: 40px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 95px;
  margin-left: 6px;
  transition: all 500ms ease;
}
.product-content-box .content-box .location-box form button:hover{
  background: #848484;
  color: #fff;
}
.product-content-box .content-box .location-box form span {
  color: #848484;
}

.product-content-box .content-box .addto-cart-box .input-group.bootstrap-touchspin {
    float: left;
    width: 70px;
    margin-right: 20px;
}
.product-content-box .content-box .addto-cart-box .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #eaeaea;
  border-radius: 0 !important;
  box-shadow: none;
  color: #272727;
  display: block;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  padding: 6px 0 8px;
  text-align: center;
}
.product-content-box .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0
}
.product-content-box .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    margin-top: -2px;
}
.product-content-box .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  margin-left: -1px;
  max-width: 100%;
  padding: 12px 12px;
  position: relative;
  width: 100%;
}
.product-content-box .content-box .addto-cart-box .btn-default {
    background-color: #efefef;
    border-color: #efefef;
    color: #9e9e9e;
}
.product-content-box .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical i {
  color: #9e9e9e;
  font-weight: normal;
  left: 8px;
  position: absolute;
  top: 7px;
}

.product-content-box .content-box .addto-cart-box button.addtocart {
  margin-left: 25px;
}


.product-tab-box {
  padding: 30px;
  padding-top: 0;
  border: 1px solid #f4f4f4;
}
.product-tab-box .tab-menu {
  border-bottom: 1px solid #f7f7f7;
  margin-top: -50px;
  margin-bottom: 33px;
  position: relative;
  left: -31px;
}
.product-tab-box .tab-menu li {
  display: block;
  float: left;
  margin-bottom: -1px;
}

.product-tab-box .tab-menu li a {
  border: 1px solid transparent;
  border-radius: 0;
  display: block;
  margin-right: 10px;
  padding: 13px 35px;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  background: #f7f7f7;
  transition: all 500ms ease;
}
.product-tab-box .tab-menu li.active a, .product-tab-box .tab-menu li:hover a{
  background: #848484;
  color: #fff;
  border-color: #848484;
}

.single-review-box {
  margin-bottom: 10px;
  padding-bottom: 32px;
  padding-left: 80px;
  position: relative;
}
.single-review-box .img-holder {
  left: 0;
  position: absolute;
  top: 0;
}

.single-review-box .text-holder {
  border: 1px solid #f4f4f4;
  padding: 20px;
}
.single-review-box .text-holder .top {
  margin: 0 0 8px;
  overflow: hidden;
}


.single-review-box .text-holder .top .review-box ul {
  margin-top: -4px;
  padding-left: 20px;
}
.single-review-box .text-holder .top .review-box ul li {
  display: inline-block;
  margin-right: 3px;
}
.single-review-box .text-holder .top .review-box ul li i {
  color: #848484;
  font-size: 14px;
}
.single-review-box .text-holder .top .review-date {
  color: #ab7442;
  margin-top: -5px;
}

.single-review-box .text-holder .text p {
  margin: 0 0 15px;
}
.single-review-box .text-holder .text a.reply {
  color: #ab7442;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-tab-box .tab-content .product-details-content {
  margin-top: -5px;
}
.product-tab-box .tab-content .product-details-content .highlight {
  margin: 42px 0 0;
}
.product-tab-box .tab-content .product-details-content .highlight .highlight-title {
  color: #292929;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 28px;
}
.product-tab-box .tab-content .product-details-content .highlight li{
  position: relative;
  padding-bottom: 12px;
  padding-left: 25px;
}
.product-tab-box .tab-content .product-details-content .highlight li:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  color: #ab7442;
  font-size: 14px;
  position: absolute;
  top: 0px;
  left: 0;
}
.review-form {
  padding-top: 16px;
}
.review-form .sec-title-two {
  padding-bottom: 34px;
}
.review-form .add-rating-box {
  margin: 0 0 23px;
}
.review-form .add-rating-box .add-rating-title h4 {
  color: #292929;
  font-family: "Poppins",sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: none;
}
.review-form .add-rating-box ul li {
  display: inline-block;
  margin: 0 0px;
  border-right: 1px solid #e5e5e5;
  padding: 0 11px;
}
.review-form .add-rating-box ul li:last-child{
  margin-right: 0;
}
.review-form .add-rating-box ul li a i {
  color: #ddd;
  margin-right: 3px;
  transition: all 500ms ease;
  font-size: 14px;
}
.review-form .add-rating-box ul li.active a i,
.review-form .add-rating-box ul li a:hover i{
  color: #848484;
}

.review-form form input[type="text"], .product-tab-box .tab-content .review-form form textarea {
  height: 50px;
  width: 100%;
  border: 1px solid #eaeaea;
  color: #9e9e9e;
  font-size: 14px;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.review-form form textarea {
  height: 110px;
  padding: 10px 15px;
  margin-bottom: 32px;
}

.review-form .add-rating-box ul li:hover a i{
  opacity: 1;
}
.review-form form input[type="text"]:focus{
  border-color: #848484;
}
.review-form form textarea:focus{
  border-color: #848484;
}

.related-product {
  border-top: 1px solid #f7f7f7;
  margin-top: 60px;
  padding-top: 56px;
}
.related-product .single-product-item {
  margin-bottom: 0;
}


.product-review-tab .add_your_review .review-title h3 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
  color: #252525;
}

.tab-title-h4 h4 {
  color: #3d3d3d;
  font-size: 20px;
  margin-bottom: 40px;
}





/* ==============================
   5. Our Services styles
   ============================== */
.our-services {
  padding: 0 0 15px;
}

.our-services .separet {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 40px;
  top: -10px;
}

.our-services .caption-box-wrapper {
  border-top: 1px solid #F4F4F4;
  margin-top: 35px;
}
.our-services .single-our-service {
  margin-bottom: 56px;
}

.our-services .single-our-service h4 {
  margin-top: 17px;
  margin-bottom: 11px;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .5s ease;
}
.our-services .single-our-service:hover h4 {
  color: #848484;
  transition: .5s ease;

}
.our-services .single-our-service .img-box {
  position: relative;
  min-width: 370px;
}
.our-services .single-our-service .text-box {
  border: 1px solid #f1f1f1;
  border-top: 0px;
  padding: 5px 20px 30px;
}

.our-services .single-our-service-caption-box {
  padding-top: 40px;
}
.our-services .single-our-service-caption-box .img-box,
.our-services .single-our-service-caption-box .content-box {
  display: table-cell;
  vertical-align: middle;
}
.our-services .single-our-service-caption-box .img-box {
  width: 120px;
}
.our-services .single-our-service-caption-box .content-box {
  padding-left: 20px;
}
.our-services.service-page .has-divider {
  border-top: 1px solid #F4F4F4;
  margin-top: 60px;
  padding-top: 60px;
}
.our-services .single-our-service .img-box {
  overflow: hidden;
}
.our-services .single-our-service .img-box img {
  transform: scale(1);
  transition: .5s ease-in-out;
}
.our-services .single-our-service:hover .img-box img {
  transform: scale(1.1);
  transition: .5s ease-in-out;
}

.our-services .single-our-service .img-box a {
  position: relative;
  display: block;
}

.our-services .single-our-service .img-box a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(72, 199, 236, 0.9);
    left: 0;
    top: 0;
    transform: scale(0,1);
    transition: .5s ease;
}

.our-services .single-our-service:hover .img-box a:after {
    transform: scale(1,1);
    transition: .5s ease;
}

.our-services .single-our-service .thm-btn {
  background: transparent;
  color: #848484;
  border-color: #848484;
}
.our-services .single-our-service .thm-btn:hover {
  background: #848484;
  color: #fff;
  border-color: #848484;
}
@media (max-width: 768px) {
	.b_img li{
            margin-top: 5px;
			padding: 5px !important;
			}
	.fact-counter .item{
		background: none;
		height: 90px;
		padding: 20px 0;
	}		
			
			}
.accordion{
	margin: 10px;
}
.sltop{margin-top: 15px;}

/*** 

====================================================================
  awards Section
====================================================================

***/


.awards {
  position: relative;
  background: #fff;
  padding: 60px 0 40px;
  margin: 3% auto; 
}

.awards .container {
  position: relative;
}

.awards h2 {
  font-size: 32px;
  color: #222;
}
.awards p {
  color: #222;
  margin: 30px 0 45px;
}
.awards .award-logo {
  margin: 0 0;
}

.awards .service-list li {
  display: inline-block;
  color: #fff;
  width: 32%;
  font-size: 16px;
  padding-left: 30px;
}
.awards .service-list li a {
  color: #fff;
}


.awards .service-list li i {
  color: #fff;
  margin-right: 10px;
  margin-bottom: 25px;
}


/* 
=============================================
    two-column style
=============================================
***/



.two-column {
  position: relative;
}
.two-column .img-box {
  position: relative;
  padding-right: 24px;
  margin-bottom: 20px;
  float: left;
}
.two-column .content {
  position: relative;
  float: left;
}

.two-column .content h4 {
  font-size: 20px;
}
.two-column .content .date {
  color: #848484;
  margin-bottom: 18px;
  margin-top: 5px;
}


.two-column .owl-controls {
    text-align: center;
    display: block;
    position: relative;
    bottom: 0px;
    margin-top: 14px;
}


.two-column .owl-dots .owl-dot {
    display: inline-block;
}
.two-column .owl-dots .owl-dot span {
    background: none repeat scroll 0 0 #ff9a00;
    border-radius: 50%;
    display: block;
    height: 10px;
    background: #f4f4f4;
    width: 10px;
    margin: 5px 7px;
    transition: .5s ease;
}
.two-column .owl-dots .owl-dot.active span,
.two-column .owl-dots .owl-dot:hover span {
    background-color: #848484;
    transition: .5s ease;
}





/* æªä½¿ç¨çæ ·å¼å·²å é¤: subscribe */




/* ==============================
   5. Our Services styles
   ============================== */
.three-column.bg {
  background: #f7f7f7;
  padding-bottom: 14px;
}


.three-column .separet {
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 40px;
  top: -10px;
}

.three-column .caption-box-wrapper {
  border-top: 1px solid #F4F4F4;
  margin-top: 35px;
}
.three-column .single-our-service {
  margin-bottom: 56px;
}

.three-column .single-our-service h4 {
  margin-top: 17px;
  margin-bottom: 11px;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  transition: .5s ease;
}
.three-column .single-our-service:hover h4 {
  color: #848484;
  transition: .5s ease;

}
.three-column .single-our-service .img-box {
  position: relative;
  max-width: 370px;
}
.three-column .single-our-service .img-box .count {
  background: #848484;
  color: #fff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  padding: 5px 24px;
  position: absolute;
  left: 0;
  bottom: -16px;
}
.three-column .single-our-service .text-box {
  border-top: 0px;
  padding: 20px 0px 0px;
}

.three-column .single-our-service-caption-box {
  padding-top: 40px;
}
.three-column .single-our-service-caption-box .img-box,
.three-column .single-our-service-caption-box .content-box {
  display: table-cell;
  vertical-align: middle;
}
.three-column .single-our-service-caption-box .img-box {
  width: 120px;
}
.three-column .single-our-service-caption-box .content-box {
  padding-left: 20px;
}
.three-column.service-page .has-divider {
  border-top: 1px solid #F4F4F4;
  margin-top: 60px;
  padding-top: 60px;
}
.three-column .single-our-service .img-box img {
  transition: .5s ease-in-out;
}
.three-column .single-our-service:hover .img-box img {
  transition: .5s ease-in-out;
}

.three-column .single-our-service .img-box a {
  position: relative;
  display: block;
}


.three-column .single-our-service .thm-btn {
  background: transparent;
  color: #848484;
  border-color: #848484;
}
.three-column .single-our-service .thm-btn:hover {
  background: #848484;
  color: #fff;
  border-color: #848484;
}

.bpro{
	height:412px ;
}

/* ä¾§è¾¹æ¬æµ®å¯¼èª */
.right_nav{ right:0; bottom:30%; position:fixed; text-align:left;overflow: hidden;z-index:999;}
.right_nav li{background:#b81c22;margin:4px 0;padding: 12px;border-top-left-radius: 4px;border-bottom-left-radius: 4px;cursor:pointer;position:relative; right: -83px;}
.right_nav li .iconBox{text-align: center;overflow: hidden;display: flex;align-items: center;justify-content: space-between}
.right_nav li img{width: 30px;height:30px;}
.right_nav li h4{color: #ffffff;font-size:14px;margin:2px 0;margin-left: 15px;}
.right_nav li:hover{background:#b81c22;}
.right_nav li .hideBox{display: none;position: absolute;right:120px;padding:10px;padding-right: 15px; top:-10px;z-index: 999;}
.right_nav li .hideBox .hb{border: 1px solid #ccc;background-color: #fff; padding: 10px 20px;border-top: 2px solid #b81c22;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;}
.right_nav li .hideBox .hb h5{padding: 5px 0;border-bottom: 2px solid #ccc;color: #b81c22;font-size: 16px;font-weight: 400;display: block;white-space: nowrap;}
.right_nav li .hideBox .hb p {margin-top: 5px;font-size: 18px;font-weight: 700;}
.right_nav li .hideBox .hb .qqtalk{margin-top: 10px;}
.right_nav li .hideBox .hb .qqtalk a{display: flex;align-items: center}
.right_nav li .hideBox .hb .qqtalk img{width: 25px;height:25px;}
.right_nav li .hideBox .hb .qqtalk p{font-size: 14px;font-weight: 400;white-space: nowrap;margin-top: -5px;margin-left: 5px;}
.right_nav li:nth-child(2) .hideBox img{width:140px;height: 140px;margin-top: 10px;}
.right_nav .fa{color: #ffffff;}

/* ---------- Homepage right nav (native, no jQuery) ---------- */
.home-right-nav li {
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}
.home-right-nav .top-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: right 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
  transition: right 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.home-right-nav .top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.home-right-nav .top-btn .iconBox {
  cursor: pointer;
}

.single-shop-item{
	height: 380px;
}
/* ============================================
   About Page SEO Styles
   ============================================ */


/* About Introduction */
.about-faq .about-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px; }
  .about-faq .about-intro p {
    margin-bottom: 20px; }
  .about-faq .about-intro strong {
    color: #333; }
  .about-faq .about-intro a {
    color: #000;
    text-decoration: none; }
    .about-faq .about-intro a:hover {
      border-bottom-color: #667eea; }

/* Company Profile List */
.about-faq .company-info-list {
  margin: 0;
  padding: 0; }
  .about-faq .company-info-list dt {
    font-weight: 600;
    color: #333;
    margin-top: 15px;
    display: block; }
  .about-faq .company-info-list dd {
    margin: 5px 0 10px 0;
    color: #666;
    line-height: 1.6; }
  .about-faq .company-info-list a {
    color: #000;
    text-decoration: none; }
    .about-faq .company-info-list a:hover {
      text-decoration: underline; }

/* Profile Actions */
.about-faq .profile-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #eee; }
  .about-faq .profile-actions .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease; }
  .about-faq .profile-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none; }
    .about-faq .profile-actions .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4); }
  .about-faq .profile-actions .btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #ddd; }
    .about-faq .profile-actions .btn-secondary:hover {
      border-color: #667eea;
      color: #667eea; }
  .about-faq .profile-actions .btn-success {
    background: #28a745;
    color: #fff;
    border: none; }
    .about-faq .profile-actions .btn-success:hover {
      background: #218838;
      transform: translateY(-2px); }

/* History Introduction */
.about-faq .history-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  border-radius: 0 8px 8px 0; }
  .about-faq .history-intro strong {
    color: #333; }
  .about-faq .history-intro a {
    color: #000; }

/* About CTA Section */
.about-faq .about-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 12px;
  color: #fff; }
  .about-faq .about-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px; }
  .about-faq .about-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; }
    .about-faq .about-cta p strong {
      color: #fff; }
  .about-faq .about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; }
    .about-faq .about-cta .cta-buttons .btn {
      padding: 15px 30px;
      font-size: 16px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
    .about-faq .about-cta .cta-buttons .btn-lg {
      font-size: 16px; }
    .about-faq .about-cta .cta-buttons .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      border: none; }
      .about-faq .about-cta .cta-buttons .btn-primary:hover {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); }
    .about-faq .about-cta .cta-buttons .btn-default {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.5); }
      .about-faq .about-cta .cta-buttons .btn-default:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff; }

/* Responsive for About Page */
@media (max-width: 767px) {
  .breadcrumb-nav .breadcrumb {
    font-size: 13px; }
  .about-faq .profile-actions .btn {
    display: block;
    width: 100%;
    margin-right: 0; }
  .about-faq .about-cta h2 {
    font-size: 22px; }
  .about-faq .about-cta .cta-buttons {
    flex-direction: column; }
    .about-faq .about-cta .cta-buttons .btn {
      width: 100%;
      margin-bottom: 10px; } }
/* ============================================
   Import & Export Trade Page Styles
   ============================================ */

/* Trade Introduction */
.about-faq .trade-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px; }
  .about-faq .trade-intro p {
    margin-bottom: 20px; }
  .about-faq .trade-intro strong {
    color: #333; }
  .about-faq .trade-intro a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s; }
    .about-faq .trade-intro a:hover {
      border-bottom-color: #667eea; }

/* Trade Images */
.about-faq .trade-image-container {
  margin: 30px 0; }
  .about-faq .trade-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }

/* Trade Capacity Grid */
.about-faq .trade-capacity {
  margin: 30px 0; }
  .about-faq .capacity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; }
  .about-faq .capacity-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease; }
    .about-faq .capacity-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
      border-color: #667eea; }
    .about-faq .capacity-item h3 {
      font-size: 14px;
      color: #667eea;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
    .about-faq .capacity-item .capacity-value {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin-bottom: 8px; }
    .about-faq .capacity-item .capacity-desc {
      font-size: 13px;
      color: #888; }

/* Markets Grid */
.about-faq .markets-grid {
  margin: 20px 0 30px; }
  .about-faq .market-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px; }
    .about-faq .market-list li {
      padding: 12px 15px;
      background: #f8f9fa;
      border-radius: 8px;
      font-size: 14px;
      color: #555;
      transition: all 0.3s ease; }
      .about-faq .market-list li:hover {
        background: #667eea;
        color: #fff;
        transform: translateX(5px); }
      .about-faq .market-list li i {
        margin-right: 10px;
        color: #667eea; }
        .about-faq .market-list li:hover i {
          color: #fff; }

/* Trade Info List */
.about-faq .trade-info-list {
  margin: 20px 0 30px;
  padding: 0;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px; }
  .about-faq .trade-info-list dt {
    font-weight: 600;
    color: #333;
    margin-top: 18px;
    display: flex;
    align-items: center;
    font-size: 15px; }
    .about-faq .trade-info-list dt:first-child {
      margin-top: 0; }
    .about-faq .trade-info-list dt i {
      margin-right: 10px;
      color: #667eea;
      font-size: 16px; }
  .about-faq .trade-info-list dd {
    margin: 8px 0 0 26px;
    color: #666;
    line-height: 1.6;
    font-size: 14px; }
    .about-faq .trade-info-list dd a {
      color: #667eea;
      text-decoration: none; }
      .about-faq .trade-info-list dd a:hover {
        text-decoration: underline; }
  .about-faq .trade-info-list address {
    font-style: normal; }

/* Trade CTA Section */
.about-faq .trade-cta {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  padding: 50px 40px;
  border-radius: 12px;
  color: #fff;
  margin: 40px 0; }
  .about-faq .trade-cta .cta-content {
    text-align: center; }
    .about-faq .trade-cta .cta-content h3 {
      color: #fff;
      font-size: 26px;
      margin-bottom: 15px;
      font-weight: 600; }
    .about-faq .trade-cta .cta-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 25px; }
      .about-faq .trade-cta .cta-content p strong {
        color: #fff; }
    .about-faq .trade-cta .cta-content .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px; }
      .about-faq .trade-cta .cta-content .cta-buttons .btn {
        padding: 15px 25px;
        font-size: 15px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500; }
      .about-faq .trade-cta .cta-content .cta-buttons .btn-success {
        background: #fff;
        color: #28a745;
        border: none; }
        .about-faq .trade-cta .cta-content .cta-buttons .btn-success:hover {
          background: #f8f9fa;
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
      .about-faq .trade-cta .cta-content .cta-buttons .btn-primary {
        background: #1a1a2e;
        color: #fff;
        border: none; }
        .about-faq .trade-cta .cta-content .cta-buttons .btn-primary:hover {
          background: #333;
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
      .about-faq .trade-cta .cta-content .cta-buttons .btn-info {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.5); }
        .about-faq .trade-cta .cta-content .cta-buttons .btn-info:hover {
          background: rgba(255, 255, 255, 0.1);
          border-color: #fff;
          transform: translateY(-3px); }

/* Responsive for Import/Export Page */
@media (max-width: 991px) {
  .about-faq .capacity-grid {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .trade-cta {
    padding: 40px 25px; }
    .about-faq .trade-cta .cta-content h3 {
      font-size: 22px; }
    .about-faq .trade-cta .cta-content .cta-buttons {
      flex-direction: column; }
      .about-faq .trade-cta .cta-content .cta-buttons .btn {
        width: 100%; } }

@media (max-width: 767px) {
  .about-faq .capacity-grid {
    grid-template-columns: 1fr; }
  .about-faq .market-list {
    grid-template-columns: 1fr; }
  .about-faq .trade-info-list {
    padding: 20px 15px; }
  .about-faq .trade-cta .cta-content h3 {
    font-size: 20px; }
  .about-faq .trade-cta .cta-content p {
    font-size: 14px; } }
/* Hygiene Sections */
.about-faq .hygiene-section {
  margin: 40px 0; }
  .about-faq .hygiene-section h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px; }
  .about-faq .hygiene-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px; }
  .about-faq .hygiene-section strong {
    color: #333; }

/* Equipment Gallery */
.about-faq .equipment-gallery {
  margin: 25px 0; }
  .about-faq .gallery-main {
    margin-bottom: 20px; }
    .about-faq .gallery-main img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .about-faq .gallery-thumbnails {
    display: flex;
    gap: 15px; }
    .about-faq .gallery-thumbnails img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer; }
      .about-faq .gallery-thumbnails img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

/* Product List */
.about-faq .product-range {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px; }
  .about-faq .product-range h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600; }
  .about-faq .product-list {
    list-style: none;
    padding: 0;
    margin: 0; }
    .about-faq .product-list li {
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 15px;
      color: #555;
      display: flex;
      align-items: center; }
      .about-faq .product-list li:last-child {
        border-bottom: none; }
      .about-faq .product-list li i {
        color: #28a745;
        margin-right: 12px;
        font-size: 18px; }
      .about-faq .product-list li a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500; }
        .about-faq .product-list li a:hover {
          text-decoration: underline; }

/* Capacity Info */
.about-faq .capacity-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0; }
  .about-faq .capacity-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease; }
    .about-faq .capacity-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
      border-color: #667eea; }
    .about-faq .capacity-card h4 {
      font-size: 14px;
      color: #667eea;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px; }
      .about-faq .capacity-card h4 i {
        margin-right: 8px; }
    .about-faq .capacity-card .capacity-value {
      font-size: 28px;
      font-weight: 700;
      color: #333;
      margin: 0; }

.about-faq .equipment-note {
  padding: 20px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 0 8px 8px 0;
  margin-top: 20px; }
  .about-faq .equipment-note strong {
    color: #856404; }

/* Standards Grid */
.about-faq .standards-intro {
  font-size: 16px;
  margin-bottom: 25px; }
  .about-faq .standards-intro strong {
    color: #667eea; }

.about-faq .standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 25px 0; }
  .about-faq .standard-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; }
    .about-faq .standard-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2); }
    .about-faq .standard-item img {
      width: 100%;
      height: 180px;
      object-fit: cover; }
    .about-faq .standard-item h3 {
      padding: 15px 15px 5px;
      font-size: 15px;
      color: #333;
      font-weight: 600;
      margin: 0; }
    .about-faq .standard-item p {
      padding: 0 15px 15px;
      font-size: 13px;
      color: #888;
      margin: 0; }

/* Warehouse Image */
.about-faq .warehouse-image {
  margin: 25px 0;
  text-align: center; }
  .about-faq .warehouse-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .about-faq .warehouse-image figcaption {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    font-style: italic; }

/* Hygiene CTA Section */
.about-faq .hygiene-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 40px;
  border-radius: 12px;
  margin: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden; }
  .about-faq .hygiene-cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5; }
  .about-faq .hygiene-cta .cta-content {
    position: relative;
    text-align: center; }
    .about-faq .hygiene-cta .cta-content h2 {
      color: #fff;
      font-size: 28px;
      margin-bottom: 15px;
      font-weight: 700; }
    .about-faq .hygiene-cta .cta-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto; }
      .about-faq .hygiene-cta .cta-content p strong {
        color: #fff; }
    .about-faq .hygiene-cta  .cta-content .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px; }
      .about-faq .hygiene-cta .cta-content .cta-buttons .btn {
        padding: 15px 25px;
        font-size: 15px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500; }
      .about-faq .hygiene-cta .cta-content .cta-buttons .btn-success {
        background: #28a745;
        color: #fff;
        border: none; }
        .about-faq .hygiene-cta .cta-content .cta-buttons .btn-success:hover {
          background: #218838;
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4); }
      .about-faq .hygiene-cta .cta-content .cta-buttons .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border: none; }
        .about-faq .hygiene-cta .cta-content .cta-buttons .btn-primary:hover {
          background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
          transform: translateY(-3px);
          box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); }
      .about-faq .hygiene-cta .cta-content .cta-buttons .btn-info {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.5); }
        .about-faq .hygiene-cta .cta-content .cta-buttons .btn-info:hover {
          background: rgba(255, 255, 255, 0.1);
          border-color: #fff;
          transform: translateY(-3px); }

/* Responsive for Hygiene Page */
@media (max-width: 991px) {
  .about-faq .key-highlights {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .standards-grid {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .capacity-info {
    grid-template-columns: 1fr; }
  .about-faq .gallery-thumbnails {
    flex-direction: column; }
  .about-faq .gallery-thumbnails img {
    height: 120px; }
  .about-faq .hygiene-cta {
    padding: 50px 25px; }
    .about-faq .hygiene-cta .cta-content h2 {
      font-size: 24px; }
    .about-faq .hygiene-cta .cta-content .cta-buttons {
      flex-direction: column; }
      .about-faq .hygiene-cta .cta-content .cta-buttons .btn {
        width: 100%; } }

@media (max-width: 767px) {
  .about-faq .page-header h1 {
    font-size: 24px; }
  .about-faq .key-highlights {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px; }
    .about-faq .key-highlights .highlight-item .highlight-number {
      font-size: 28px; }
    .about-faq .key-highlights .highlight-item .highlight-label {
      font-size: 11px; }
  .about-faq .hygiene-section h2 {
    font-size: 22px; }
  .about-faq .standards-grid {
    grid-template-columns: 1fr; }
  .about-faq .warehouse-image figcaption {
    font-size: 12px; }
  .about-faq .hygiene-cta .cta-content h2 {
    font-size: 20px; }
  .about-faq .hygiene-cta .cta-content p {
    font-size: 14px; } }
/* ============================================
   Healthcare Products Page Styles
   ============================================ */

.about-faq a { color: #fff; }

.about-faq .healthcare-highlights { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	gap: 20px; 
	margin: 30px 0; 
}
.about-faq .healthcare-highlights .highlight-item { 
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	color: #fff; 
	padding: 25px; 
	border-radius: 10px; 
	text-align: center; 
}
.about-faq .healthcare-highlights .highlight-item .highlight-number { 
	font-size: 2.5em; 
	font-weight: bold; 
	display: block; 
}
.about-faq .healthcare-highlights .highlight-item .highlight-label { 
	font-size: 1em; 
	opacity: 0.9; 
}

.about-faq .purification-section { 
	background: #f8f9fa; 
	padding: 30px; 
	border-radius: 10px; 
	margin: 30px 0; 
}
.about-faq .purification-section h2 { 
	color: #dc3545; 
	margin-bottom: 20px; 
}

.about-faq .equipment-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
	gap: 20px; 
	margin: 20px 0; 
}
.about-faq .equipment-grid .equipment-item { 
	background: #fff; 
	padding: 20px; 
	border-radius: 8px; 
	box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	text-align: center; 
}
.about-faq .equipment-grid .equipment-item h4 { 
	color: #333; 
	margin: 10px 0; 
	font-size: 1.1em; 
}

.about-faq .capacity-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	gap: 20px; 
	margin: 30px 0; 
}
.about-faq .capacity-grid .capacity-card { 
	background: #fff; 
	border-left: 4px solid #667eea; 
	padding: 20px; 
	border-radius: 5px; 
	box-shadow: 0 2px 10px rgba(0,0,0,0.08); 
}
.about-faq .capacity-grid .capacity-card h4 { 
	margin: 0 0 10px; 
	color: #333; 
	font-size: 1.1em; 
}
.about-faq .capacity-grid .capacity-card .capacity-value { 
	font-size: 1.8em; 
	color: #667eea; 
	font-weight: bold; 
	margin: 0; 
}
.about-faq .capacity-grid .capacity-card .capacity-unit { 
	color: #666; 
	font-size: 0.9em; 
}

@media (max-width: 767px) {
	.about-faq .healthcare-highlights { 
		grid-template-columns: repeat(2, 1fr); 
	}
}
/* Page CTA Section - Fixed Unified Template */
.about-faq .page-cta,
.page-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 12px;
  color: #fff; }
  .about-faq .page-cta h2,
  .page-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700; }
  .about-faq .page-cta p,
  .page-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7; }
    .about-faq .page-cta p strong,
    .page-cta p strong {
      color: #fff; }
  .about-faq .page-cta .cta-content,
  .page-cta .cta-content {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; }
  .about-faq .page-cta .cta-buttons,
  .page-cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; }
    .about-faq .page-cta .cta-buttons .btn,
    .page-cta .cta-buttons .btn {
      padding: 15px 30px;
      font-size: 16px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 5px; }
    .about-faq .page-cta .cta-buttons .btn-success,
    .page-cta .cta-buttons .btn-success {
      background: #28a745;
      color: #fff;
      border: none; }
      .about-faq .page-cta .cta-buttons .btn-success:hover,
      .page-cta .cta-buttons .btn-success:hover {
        background: #218838;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3); }
    .about-faq .page-cta .cta-buttons .btn-primary,
    .page-cta .cta-buttons .btn-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      border: none; }
      .about-faq .page-cta .cta-buttons .btn-primary:hover,
      .page-cta .cta-buttons .btn-primary:hover {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4); }
    .about-faq .page-cta .cta-buttons .btn-info,
    .page-cta .cta-buttons .btn-info {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.5); }
      .about-faq .page-cta .cta-buttons .btn-info:hover,
      .page-cta .cta-buttons .btn-info:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        transform: translateY(-3px); }

/* Responsive for Page CTA */
@media (max-width: 767px) {
  .about-faq .page-cta,
  .page-cta {
    padding: 40px 0; }
    .about-faq .page-cta h2,
    .page-cta h2 {
      font-size: 22px; }
    .about-faq .page-cta p,
    .page-cta p {
      font-size: 14px; }
    .about-faq .page-cta .cta-buttons,
    .page-cta .cta-buttons {
      flex-direction: column; }
      .about-faq .page-cta .cta-buttons .btn,
      .page-cta .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px; } }

.img-circle{
    border-radius:50% !important;
}
@media (max-width: 767px) {
  .about-faq .factory-overview {
    grid-template-columns: 1fr; }
  .about-faq .factory-item .factory-icon {
    width: 50px;
    height: 50px;
    line-height: 50px; }
  .about-faq .factory-item .factory-icon i {
    font-size: 24px; } }

/* Quality Control Page Styles */

.about-faq .quality-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  min-width: 140px;
}
.about-faq .quality-step .step-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin-bottom: 10px;
}
.about-faq .quality-step .step-icon i {
  font-size: 22px;
  color: #fff;
}
.about-faq .quality-step .step-content h4 {
  font-size: 13px;
  color: #333;
  margin: 0;
  font-weight: 600;
}
.about-faq .quality-arrow {
  color: #667eea;
  font-size: 20px;
}
.about-faq .quality-engineer {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}
.about-faq .quality-section {
  margin: 20px 0 40px;
}
.about-faq .quality-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.about-faq .quality-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-faq .quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-faq .quality-list li {
  padding: 8px 0;
  color: #444;
  font-size: 14px;
}
.about-faq .quality-list li i {
  color: #667eea;
  margin-right: 10px;
}

/* Test Cards */
.about-faq .test-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.about-faq .test-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.about-faq .test-card .test-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.about-faq .test-card .test-icon i {
  font-size: 30px;
  color: #fff;
}
.about-faq .test-card h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}
.about-faq .test-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .about-faq .page-header h1 {
    font-size: 24px; }
  .about-faq .key-highlights {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px; }
    .about-faq .key-highlights .highlight-item .highlight-number {
      font-size: 28px; }
    .about-faq .key-highlights .highlight-item .highlight-label {
      font-size: 11px; }
  .about-faq .hygiene-section h2 {
    font-size: 22px; }
  .about-faq .standards-grid {
    grid-template-columns: 1fr; }
  .about-faq .warehouse-image figcaption {
    font-size: 12px; }
  .about-faq .hygiene-cta .cta-content h2 {
    font-size: 20px; }
  .about-faq .hygiene-cta .cta-content p {
    font-size: 14px; }
  .about-faq .factory-overview {
    grid-template-columns: 1fr; }
  .about-faq .factory-item .factory-icon {
    width: 50px;
    height: 50px;
    line-height: 50px; }
  .about-faq .factory-item .factory-icon i {
    font-size: 24px; }
  .about-faq .quality-flow {
    flex-direction: column; }
  .about-faq .quality-arrow {
    transform: rotate(90deg); }
  .about-faq .quality-step {
    width: 100%; } }
/* R&D Center Page Styles */
.about-faq .rd-overview {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
}
.about-faq .rd-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-faq .rd-highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.about-faq .rd-highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.about-faq .rd-highlight-item .highlight-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-faq .rd-highlight-item .highlight-icon i {
  font-size: 22px;
  color: #fff;
}
.about-faq .rd-highlight-item .highlight-content {
  display: flex;
  flex-direction: column;
}
.about-faq .rd-highlight-item .highlight-content .highlight-number {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.about-faq .rd-highlight-item .highlight-content .highlight-label {
  font-size: 12px;
  color: #666;
}

/* Lab Gallery */
.about-faq .lab-gallery {
  margin: 20px 0;
}
.about-faq .lab-item {
  margin-bottom: 15px;
}
.about-faq .lab-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}
.about-faq .lab-item img:hover {
  transform: scale(1.05);
}

/* Tech Cards */
.about-faq .tech-cards {
  margin: 30px 0;
}
.about-faq .tech-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.about-faq .tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.about-faq .tech-card h3 {
  font-size: 16px;
  color: #333;
  margin: 20px 0 15px;
  font-weight: 600;
}
.about-faq .tech-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Certifications Section */
.about-faq .certifications-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  color: #fff;
}
.about-faq .certifications-section h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
}
.about-faq .cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.about-faq .cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about-faq .cert-item:hover {
  background: rgba(255, 255, 255, 0.25);
}
.about-faq .cert-item i {
  font-size: 24px;
  color: #fff;
}
.about-faq .cert-item span {
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}

/* Patent Gallery */
.about-faq .patent-gallery {
  margin: 20px 0;
}
.about-faq .patent-item {
  margin-bottom: 20px;
}
.about-faq .patent-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about-faq .patent-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .about-faq .rd-highlights {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .cert-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767px) {
  .about-faq .rd-highlights {
    grid-template-columns: 1fr; }
  .about-faq .rd-highlight-item {
    flex-direction: column;
    text-align: center; }
  .about-faq .cert-grid {
    grid-template-columns: 1fr; }
  .about-faq .quality-flow {
    flex-direction: column; }
  .about-faq .quality-arrow {
    transform: rotate(90deg); }
  .about-faq .quality-step {
    width: 100%; } }
/* Honor Page Styles */
.about-faq .honor-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 30px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
}
.about-faq .honor-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}
.about-faq .honor-stat .stat-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 15px;
}
.about-faq .honor-stat .stat-icon i {
  font-size: 28px;
  color: #fff;
}
.about-faq .honor-stat .stat-content {
  display: flex;
  flex-direction: column;
}
.about-faq .honor-stat .stat-content .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.about-faq .honor-stat .stat-content .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Certification Cards */
.about-faq .cert-display {
  margin: 20px 0;
}
.about-faq .cert-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.about-faq .cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.about-faq .cert-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.about-faq .cert-card p {
  font-size: 12px;
  color: #333;
  margin: 0;
  font-weight: 500;
}

/* Honor Categories */
.about-faq .honor-categories {
  margin: 30px 0;
}
.about-faq .honor-cat-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.about-faq .honor-cat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.about-faq .honor-cat-item i {
  font-size: 32px;
  color: #667eea;
  margin-bottom: 12px;
}
.about-faq .honor-cat-item h4 {
  font-size: 14px;
  color: #333;
  margin: 0;
  font-weight: 600;
}

/* Honor Gallery */
.about-faq .honor-gallery {
  margin: 20px 0;
}
.about-faq .honor-img-item {
  margin-bottom: 15px;
}
.about-faq .honor-img-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about-faq .honor-img-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Patent Display */
.about-faq .patent-display {
  margin: 20px 0;
}
.about-faq .patent-img-item {
  margin-bottom: 20px;
}
.about-faq .patent-img-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.about-faq .patent-img-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .about-faq .honor-overview {
    flex-direction: column; }
  .about-faq .honor-stat {
    width: 100%; }
  .about-faq .rd-highlights {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .cert-grid {
    grid-template-columns: repeat(2, 1fr); }
      .about-faq .partner-overview {
    flex-direction: column; }
  .about-faq .partner-stat {
    width: 100%; }}
    

@media (max-width: 767px) {
  .about-faq .rd-highlights {
    grid-template-columns: 1fr; }
  .about-faq .rd-highlight-item {
    flex-direction: column;
    text-align: center; }
  .about-faq .cert-grid {
    grid-template-columns: 1fr; }
  .about-faq .quality-flow {
    flex-direction: column; }
  .about-faq .quality-arrow {
    transform: rotate(90deg); }
  .about-faq .quality-step {
    width: 100%; }
  .about-faq .honor-stat .stat-content .stat-number {
    font-size: 28px; }
  .about-faq .cert-card p {
    font-size: 10px; } 
      .about-faq .partner-overview {
    flex-direction: column; }
  .about-faq .partner-stat .stat-content .stat-number {
    font-size: 22px; }
  .about-faq .partner-card .partner-card-header {
    flex-direction: column;
    text-align: center; } }
/* Partner Page Styles */
.about-faq .partner-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
}
.about-faq .partner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}
.about-faq .partner-stat .stat-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 10px;
}
.about-faq .partner-stat .stat-icon i {
  font-size: 24px;
  color: #fff;
}
.about-faq .partner-stat .stat-content {
  display: flex;
  flex-direction: column;
}
.about-faq .partner-stat .stat-content .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.about-faq .partner-stat .stat-content .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* Partner Cards */
.about-faq .partner-cards {
  margin: 20px 0;
}
.about-faq .partner-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.about-faq .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.about-faq .partner-card .partner-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.about-faq .partner-card .partner-card-header i {
  font-size: 28px;
}
.about-faq .partner-card .partner-card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.about-faq .partner-card .partner-card-body {
  padding: 20px;
}
.about-faq .partner-card .partner-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Supplier Benefits */
.about-faq .supplier-benefits {
  margin: 20px 0;
}
.about-faq .benefit-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.about-faq .benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.about-faq .benefit-item i {
  font-size: 32px;
  color: #667eea;
  margin-bottom: 12px;
}
.about-faq .benefit-item h4 {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.about-faq .benefit-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Tech Features */
.about-faq .tech-features {
  margin: 20px 0;
}
.about-faq .tech-feature-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.about-faq .tech-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.about-faq .tech-feature-item i {
  font-size: 32px;
  color: #667eea;
  margin-bottom: 12px;
}
.about-faq .tech-feature-item h4 {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.about-faq .tech-feature-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
}
/* Contact Page Styles */
.about-faq .contact-overview {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  flex-wrap: wrap;
}
.about-faq .contact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 25px;
}
.about-faq .contact-stat .stat-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 10px;
}
.about-faq .contact-stat .stat-icon i {
  font-size: 24px;
  color: #fff;
}
.about-faq .contact-stat .stat-content {
  display: flex;
  flex-direction: column;
}
.about-faq .contact-stat .stat-content .stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.about-faq .contact-stat .stat-content .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* Trade Advantages */
.about-faq .trade-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.about-faq .trade-advantages .trade-advantage-item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.about-faq .trade-advantages .trade-advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.about-faq .trade-advantages .trade-advantage-item i {
  font-size: 32px;
  color: #667eea;
  margin-bottom: 12px;
}
.about-faq .trade-advantages .trade-advantage-item h4 {
  font-size: 14px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.about-faq .trade-advantages .trade-advantage-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Product Categories */
.about-faq .product-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}
.about-faq .product-category-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.about-faq .product-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.about-faq .product-category-item i {
  font-size: 36px;
  color: #667eea;
  margin-bottom: 15px;
}
.about-faq .product-category-item h4 {
  font-size: 15px;
  color: #333;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.about-faq .product-category-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* FAQ Styles */
.about-faq .faq-list {
  margin: 20px 0;
}
.about-faq .faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.about-faq .faq-item h4 {
  font-size: 15px;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: 600;
}
.about-faq .faq-item h4 i {
  color: #667eea;
  margin-right: 8px;
}
.about-faq .faq-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* Contact Responsive */
@media (max-width: 991px) {
  .about-faq .contact-overview {
    flex-direction: column;
    gap: 15px; }
  .about-faq .contact-stat {
    width: 100%; }
  .about-faq .trade-advantages {
    grid-template-columns: repeat(2, 1fr); }
  .about-faq .product-categories {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767px) {
  .about-faq .trade-advantages {
    grid-template-columns: 1fr; }
  .about-faq .product-categories {
    grid-template-columns: 1fr; }
  .about-faq .contact-stat .stat-content .stat-number {
    font-size: 18px; }
  .about-faq .faq-item {
    padding: 15px; } }

/* Video Popup Styles */
.lite-yt-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

.lite-yt-popup-overlay.closing {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.lite-yt-popup-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lite-yt-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 100001;
  transition: transform 0.3s ease;
}

.lite-yt-popup-close:hover {
  transform: scale(1.1);
}

.lite-yt-popup-close svg {
  width: 30px;
  height: 30px;
}

.lite-yt-popup-content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.lite-yt-popup-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .lite-yt-popup-container {
    width: 95%;
  }
  .lite-yt-popup-close {
    top: -35px;
  }
  .lite-yt-popup-close svg {
    width: 24px;
    height: 24px;
  }
}

/* Post Navigation Styles */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.prev-post,
.next-post {
  flex: 1;
  max-width: 48%;
}

.next-post {
  text-align: right;
}

.post-navigation a {
  display: block;
  padding: 20px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-navigation a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.post-navigation a:hover::before {
  left: 100%;
}

.post-navigation a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.prev-post a {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.prev-post a:hover {
  box-shadow: 0 8px 25px rgba(17, 153, 142, 0.3);
}

.next-post a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.next-post a:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.post-navigation .nav-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.post-navigation .nav-label i {
  margin-right: 5px;
}

.next-post .nav-label i {
  margin-left: 5px;
  margin-right: 0;
}

.post-navigation .nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.reading-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.1s ease;
  border-radius: 0 2px 2px 0;
}

/* Left Sidebar Navigation */
.left-sidebar-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  max-height: 70vh;
}

.left-sidebar-nav .sidebar-nav-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.left-sidebar-nav .sidebar-nav-toggle:hover {
  width: 45px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.left-sidebar-nav .sidebar-nav-toggle i {
  font-size: 16px;
}

.left-sidebar-nav .sidebar-nav-content {
  position: absolute;
  left: -280px;
  top: 0;
  width: 280px;
  max-height: 70vh;
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: left 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.left-sidebar-nav.active .sidebar-nav-content {
  left: 40px;
}

.left-sidebar-nav.active .sidebar-nav-toggle {
  left: 280px;
  border-radius: 8px 0 0 8px;
}

.left-sidebar-nav .sidebar-nav-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.left-sidebar-nav .sidebar-nav-header i {
  font-size: 16px;
}

.sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
  max-height: calc(70vh - 50px);
  overflow-y: auto;
  flex: 1;
}

.sidebar-nav-list::-webkit-scrollbar {
  width: 5px;
}

.sidebar-nav-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.sidebar-nav-list::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

.sidebar-nav-list li {
  margin-bottom: 4px;
}

.sidebar-nav-list li a {
  display: block;
  padding: 8px 20px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.sidebar-nav-list li h3 a {
  padding-left: 35px;
  font-size: 12px;
}

.sidebar-nav-list li h4 a {
  padding-left: 50px;
  font-size: 11px;
}

.sidebar-nav-list li a:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  border-left-color: #667eea;
}

.sidebar-nav-list li.active a {
  color: #667eea;
  background: rgba(102, 126, 234, 0.12);
  border-left-color: #667eea;
  font-weight: 500;
}

/* Mobile: Hide sidebar, show toggle only */
@media (max-width: 1200px) {
  .left-sidebar-nav {
    left: 10px;
  }
  
  .left-sidebar-nav .sidebar-nav-content {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    z-index: 10001;
  }
  
  .left-sidebar-nav.active .sidebar-nav-content {
    left: 0;
  }
  
  .left-sidebar-nav.active .sidebar-nav-toggle {
    position: fixed;
    left: auto;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
  }
}

/* Mobile TOC - Collapsible */
@media (max-width: 767px) {
  .reading-progress-bar {
    height: 3px;
  }
}

/* Post Navigation Responsive */
@media (max-width: 767px) {
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .prev-post,
  .next-post {
    max-width: 100%;
  }
  
  .next-post {
    text-align: left;
  }
  
  .post-navigation a {
    padding: 15px 20px;
  }
  
  .post-navigation .nav-label {
    font-size: 11px;
  }
  
  .post-navigation .nav-title {
    font-size: 14px;
  }
  
  /* Mobile TOC - Collapsible */
  .scroll-nav-list {
    display: none;
    max-height: none;
  }
  
  .scroll-nav-list.active {
    display: block;
  }
  
  .scroll-nav-header {
    cursor: pointer;
  }
  
  .reading-progress-bar {
    height: 3px;
  }
}


/* ================= Trusted by Leading Brands & Supermarkets Section (Chenrui B2B Standard) ================= */
.trusted-brands-section {
  background: #ffffff;
  padding: 70px 0 75px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.trusted-brands-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 32px;
}
.trusted-badge-tag {
  display: inline-block;
  background: rgba(184, 28, 34, 0.08);
  color: #b81c22;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(184, 28, 34, 0.2);
}
.trusted-brands-header h2 {
  font-size: 2.2rem;
  color: #1e293b;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.trusted-brands-header p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}
.trusted-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.trusted-filter-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
}
.trusted-filter-btn:hover,
.trusted-filter-btn.active {
  background: #b81c22;
  color: #ffffff;
  border-color: #b81c22;
  box-shadow: 0 4px 14px rgba(184, 28, 34, 0.35);
}
.trusted-carousel-outer {
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
}
.trusted-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 15px 25px;
  mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
}
.trusted-carousel-viewport::-webkit-scrollbar {
  display: none;
}
.trusted-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.4s ease;
}
.brand-client-card {
  width: 240px;
  height: 165px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}
.brand-client-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #b81c22;
  box-shadow: 0 16px 36px rgba(184, 28, 34, 0.18);
}
.brand-card-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
}
.brand-region-badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 2px 7px;
  border-radius: 6px;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-portal-link {
  color: #b81c22;
  font-weight: 700;
  font-size: 0.72rem;
  opacity: 0.6;
  transition: all 0.2s ease;
}
.brand-client-card:hover .brand-portal-link {
  opacity: 1;
  transform: translateX(2px);
}
.brand-logo-wrap {
  height: 68px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-client-card:hover .brand-logo-wrap img {
  transform: scale(1.08);
}
.brand-card-info {
  text-align: center;
  width: 100%;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}
.brand-card-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: #1e293b;
  line-height: 1.2;
}
.brand-card-cat {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}
.trusted-arrow {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  line-height: 1;
  color: #1e293b;
  transition: all 0.2s ease;
}
.trusted-arrow:hover {
  background: #b81c22;
  color: #ffffff;
  border-color: #b81c22;
}
.trusted-arrow.prev {
  left: 8px;
}
.trusted-arrow.next {
  right: 8px;
}
.trusted-assurance-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed #e2e8f0;
}
.trusted-assurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  font-size: 0.84rem;
  color: #475569;
  font-weight: 600;
}
.trusted-assurance-item .icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}
.authority-link {
  color: #b81c22;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.authority-link:hover {
  color: #8b1318;
}
@media (max-width: 768px) {
  .trusted-brands-header h2 {
    font-size: 1.7rem;
  }
  .brand-client-card {
    width: 200px;
    height: 155px;
    padding: 14px 12px;
  }
  .brand-logo-wrap img {
    max-height: 44px;
    max-width: 140px;
  }
  .trusted-arrow {
    display: none;
  }
}

/* ================= 12 Global Certifications & Official Verification (Shenghongda B2B Benchmark) ================= */
.official-cert-section {
  background: #ffffff;
  padding: 70px 0 80px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.official-cert-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px;
}
.official-cert-badge {
  display: inline-block;
  background: rgba(184, 28, 34, 0.08);
  color: #b81c22;
  padding: 4px 14px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 28, 34, 0.2);
  margin-bottom: 10px;
}
.official-cert-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-top: 8px;
  margin-bottom: 12px;
}
.official-cert-header p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}
.official-cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.official-cert-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 14px 16px;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.official-cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #b81c22, #0284c7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.official-cert-card:hover {
  transform: translateY(-6px);
  border-color: #b81c22;
  box-shadow: 0 16px 32px -6px rgba(184, 28, 34, 0.18);
}
.official-cert-card:hover::before {
  transform: scaleX(1);
}
.official-cert-logo-box {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 12px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.official-cert-card:hover .official-cert-logo-box {
  background: #fff5f5;
  border-color: rgba(184, 28, 34, 0.25);
}
.official-cert-logo-box img {
  max-height: 52px;
  max-width: 88%;
  object-fit: contain;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.official-cert-card:hover .official-cert-logo-box img {
  transform: scale(1.08);
}
.official-cert-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.official-cert-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.official-cert-card:hover h4 {
  color: #b81c22;
}
.official-cert-org {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 7px;
  border-radius: 9999px;
  margin-bottom: 8px;
  align-self: center;
}
.official-cert-scope {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 12px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.official-cert-verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #b81c22;
  background: rgba(184, 28, 34, 0.08);
  border: 1px solid rgba(184, 28, 34, 0.25);
  border-radius: 9999px;
  transition: all 0.25s ease;
  margin-top: auto;
}
.official-cert-card:hover .official-cert-verify-btn {
  background: #b81c22;
  color: #ffffff;
  border-color: #b81c22;
  box-shadow: 0 4px 12px rgba(184, 28, 34, 0.3);
}
.official-cert-verify-btn .ext-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}
.official-cert-card:hover .official-cert-verify-btn .ext-icon {
  transform: translate(2px, -2px);
}
@media (max-width: 1200px) {
  .official-cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .official-cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .official-cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .official-cert-header h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 480px) {
  .official-cert-grid {
    grid-template-columns: 1fr;
  }
}
