
:root {
    --primary-green: #2e8b57;
    --accent-green: #4CAF50;
    --primary-blue: #0056b3;
    --dark-bg: #1a1a1a;
}
ul li{list-style: none;}
a{text-decoration: none;color: #fff;}
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding-right: 0!important;
}

/* Utility Classes */
.text-green { color: var(--primary-green) !important; }
.bg-green { background-color: var(--primary-green) !important; }
.bg-gray {background-color: #eeeeee;}
.btn-green { background-color: var(--primary-green); color: white; }
.btn-green:hover { background-color: #236f46; color: white; }
.color-green{color: #009b4c;}
.color-white{color: #fff;}
.color-gray{color: #333;}
.bg-green{background: #009b4c;}
.line-height{line-height: 2;}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    font-size: 2rem;
}
.section-title a{
    color: #333;
}
.nav-link:focus {
    color: #333!important; 
}
.section-title::before{background:  url('../images/icon1.png')no-repeat center;}
.section-title::after{background:  url('../images/icon2.png')no-repeat center;}
.section-title::before, .section-title::after {
    content: "";
    color: var(--primary-green);
    width: 100px;
    display: inline-block;
    height: 20px;
    font-weight: bold;
    background-size: contain;
}
.section-padding { padding: 50px 0; }
.section-padding-two { padding: 50px 0; }

/* Header Styles */

/*.dropdown-item.active, .dropdown-item:active{background:#009b4c}*/
/*.navbar-expand-lg .navbar-nav{justify-content: space-between;}*/
/*.navbar-expand-lg .navbar-nav .dropdown-menu{border-radius:0;top:59px;}*/
/*.dropdown{margin-top: 2px;outline: none;border: none;}*/
/*.dropdown:hover .dropdown-menu {display: block;}   */
/*.dropdown-item{ padding: 10px;}*/
/*.dropdown-item:hover{background: #cacfd5e3;}*/
.contact-toolbar {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.toolbar-item {
    width: 70px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:#009b4c;
    color: white;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.toolbar-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.toolbar-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.toolbar-item:hover {
    background-color: #009b4ce0;
}

.toolbar-item .bi {
    font-size: 20px;
}

.toolbar-item.top-btn {
    background-color: #1e3a5f;
    height: 50px;
}
.toolbar-item.top-btn .bi{
    margin-bottom: -5px;
}
.toolbar-item.top-btn:hover {
    background-color: #2c5282;
}

/* 1. 侧边栏每一项都作为定位基准 */
.contact-toolbar .toolbar-item {
    position: relative; /* 极其重要：作为子面板的定位锚点 */
    cursor: pointer;
    /* 您原有的侧边栏单项样式 */
}

/* 2. 独立面板的公共基础样式 */
.contact-toolbar .hover-panel {
    position: absolute;
    right: 90px;       /* 弹出在按钮左侧，根据您的侧边栏宽度微调 */
    top: 50%;          /* 相对于按钮顶部下移 50% */
    transform: translateY(-50%) translateX(10px); /* 垂直居中对齐按钮，同时水平向右偏移 10px 准备动效 */
    
    background: #ffffff;
    border: 2px solid #009b4c;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 190px;
    z-index: 10;

    /* 默认隐藏、透明 */
    opacity: 0;
    visibility: hidden;
    /* 动效：控制显示/隐藏的渐变 */
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
}
.contact-toolbar .hover-panel::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #009b4c;
}
/* 3. 核心机制：当鼠标悬浮在当前按钮上时，立刻展现其内部对应的子面板 */
.contact-toolbar .toolbar-item:hover .hover-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0); /* 滑入原位，垂直依然保持居中 */
}

/* 4. 体验优化桥梁：在面板右侧加一个透明层，填满面板与按钮之间的空隙，防止鼠标移过去时由于空隙导致面板消失 */
.contact-toolbar .hover-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;     /* 宽度覆盖右侧间隙 */
    width: 20px;
    height: 100%;
}

/* 5. 二维码及内部元素基础样式 */
.contact-toolbar .hover-panel .qr-code img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}
.contact-toolbar .hover-panel .panel-info {
    font-size: 13px;
    color: #333333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-toolbar .hover-panel .panel-info i {
    margin-right: 4px;
}

/* 6. 微信专属皮肤 */
.wechat-trigger .hover-panel .panel-info i {
    color: #009b4c;
}

/* 7. WhatsApp 专属皮肤 */
.whatsapp-trigger .hover-panel .panel-btn {
    color: #333333;
    text-decoration: none;
    display: inline-block;
}
.whatsapp-trigger .hover-panel .panel-btn:hover,
.whatsapp-trigger .hover-panel .panel-info i {
    color: #25d366;
}
.phone-number {
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.modal-content .form-control:focus{
    box-shadow: none;
    border-color:#009b4c;
}
 /* Top Utility Bar */
.top-bar {
    background-color: #000000;
    color: #fff;
    font-size: 0.85rem;
}

.top-bar>a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

/*.top-bar a:hover {*/
/*    color:  #2e8b57;*/
/*}*/
.top-bar .dropdown-menu-end{
    position: absolute;
    top: 20px;
    z-index: 9999;
}
.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    outline: none;
}

.top-bar .divider {
    color: rgba(255,255,255,0.3);
    margin: 0 15px;
}

.language-selector {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

/* Main Navbar */
.main-navbar {
    background-color: #fff;
    padding: 0;
    box-shadow: 0 2px 10px 3px rgba(0,0,0,0.1);
}

.navbar-brand-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 220px;
}

.navbar-nav .nav-link {
    color: #333333;
    font-weight: 500;
    padding:26px 16px!important;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar-nav .nav-link.active {
    color: var(--primary-green);
}
.navbar-nav>li.on:first-child a{color: var(--primary-green);}
.viet .nav-link {
    padding:26px 13px!important;
}
/* Mega Menu Button Style */
/*.nav-item.dropdown .nav-link {*/
/*    color: var(--primary-green);*/
/*}*/
.nav-item:nth-child(2){position:unset}
.dropdown-item.active, .dropdown-item:active{background:var(--primary-green)}
.nav-cta-button {
    background-color: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-cta-button:hover {
    background-color: #0d7a47;
    color: #fff;
    transform: translateY(-2px);
    /*box-shadow: 0 4px 15px rgba(16, 165, 90, 0.4);*/
}

.nav-cta-button i {
    font-size: 1.2rem;
}

/* Mega Menu Dropdown */
.mega-menu {
    background-color: #555963;
    padding: 30px 0;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    border: none;
}

.mega-menu .category-header {
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
}

.mega-menu .category-header i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.mega-menu .product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu .product-list li {
    padding: 6px 0;
}

.mega-menu .product-list li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.mega-menu .product-list li a::before {
    content: "›";
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.mega-menu .product-list li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.dropdown-menu.mega-menu {
    width: 100vw;
    max-width: 1296px;
    left: 50%;
    transform: translateX(-50%);
}
/* Small dropdown (Solutions / Cases) */
.nav-item-dropdown:hover .dropdown-mini {
    display: block;
}
.dropdown-mini {
    display: none;
}
.dropdown-mini {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: #fff;
    box-shadow: 0 4px 16px 8px rgba(0,0,0,0.1);
    z-index: 9000;
}
.dropdown-mini a {
    display: block;
    padding: 12px 24px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.dropdown-mini a:last-child {
    border-bottom: none;
}
.dropdown-mini a:hover {
    background: #f7f7f7;
    color: #009b4c;
}
.dropdown-box{
    min-width: 150px;
    background: #fff;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: 0 4px 16px 5px rgba(0,0,0,0.1);
}
.dropdown-box a {
    display: block;
    padding: 12px 24px;
    color: #222;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.dropdown-box a:hover {
    background: #f7f7f7;
    color: #009b4c;
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
.navbar-expand-lg .navbar-collapse{flex-basis:100%;}
/* Custom Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-green);
    padding: 5px 10px;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816, 165, 90, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/*faqs-section*/
.faqs-section{
    background: #eee;
    padding: 50px 0;
}
.accordion-item {
    background: none;
    border: none;
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-button{
    background: none;
    font-weight: bold;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    background: none;
}

/* Hero Carousel Styles */
.hero-carousel .hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 650px;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 核心：保持比例裁剪铺满 */
    transform: translate(-50%, -50%); /* 居中对齐 */
    z-index: 0; /* 放在最底层 */
}
.hero-video-mobile{
    width: 100%;
    height: 100%;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45); /* 半透明遮罩，文字更清晰 */
  z-index: 1; 
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .hero-slide {
    height: 500px !important;
  }
  .hero-title {
    font-size: 1.8rem !important;
  }
  .contact-toolbar{display:none;}
   .top-box{width:100%;}
   .main-navbar{padding:0.5rem 0;}
   .navbar-brand-box{width:180px;}
   .contact-cta img{max-width:100%;}
   .mineral-process-image{height: auto;}
   .dropdown-menu.mega-menu{display:none;}
   .nav-cta-button{flex-direction: row-reverse;justify-content:center;}
}
/* Product Range */
.product-range-card {
    background: #474747;
    color: white;
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
}
.product-range-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.product-range-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.product-range-card .card-body {
    padding: 10px;text-align: left;
    border-top: 3px solid #009b4c;
}
.product-range-card h6 {
    margin-bottom: 8px;
    font-size: 1rem;
}
.product-range-card p {
    font-size: 0.75rem;
    color: #fff;
    margin: 5px 0;
}
.product-range-card a:hover {text-decoration: underline;}
/* About Us */
.w-120{width: 120%;}
.about-section {
    background: url('../images/c7.jpg')no-repeat bottom;
    background-size: 100% 80%;
}

.about-section .section-title::before{
    display: none;
}
.about-section p {
    color: white;line-height: 1.8;
}
.stat-box {
    background: white;
    color: #333;
    padding: 20px 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #595757;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}
.stat-box:hover .stat-number {color: #009b4c;}
.stat-box:hover .stat-label{color: #009b4c;}

/* Hot Products */
.hot-product-card {
    border: none;
    transition: 0.3s;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.hot-product-card:hover {

    transform: translateY(-5px);
}
.hot-product-card img {
    object-fit: cover;
}
.hot-product-title {
    font-weight: 700;
    font-size: 1.1rem;
}
.hot-product-title a{
    color: var(--primary-green);
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
}
/* Cases Section */
.case-section {
    background-color: #222;
    color: white;
}
.case-section .section-title {
    color: white;
}
.case-section .section-title::before,
.case-section .section-title::after {
    color: rgba(255,255,255,0.5);
}
.featured-case {
    background: #333;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.img-box{
    display: block;
    height: 350px;
}
.img-fill{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-thumb {
    width: 100%;
    border-radius:8px 8px 0 0;
}
.case-card {
    background: #333;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}
.case-card:hover {
    transform: scale(1.02);
}
.case-card .card-body {
    padding: 15px 0;
}
.case-card .card-body small{
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.featured-case h3 a:hover{text-decoration: underline;color: #009b4c;}
.case-card .card-body a:hover{
    text-decoration: underline;
}
/* FAQ Section */
.faq-box {
    background: var(--primary-green);
    color: white;
    padding: 25px;
    height: 100%;
    border-radius: 10px;
    transition: 0.3s;
}
.faq-box:hover {
    background: #236f46;
    transform: translateY(-5px);
}
.faq-box h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.faq-box hr {
    border-color: rgba(255,255,255,0.3);
    margin: 12px 0;
}
.faq-box p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* News Section */
.news-tabs .nav-link {
    color: #555;
    border-radius: 25px;
    padding: 10px 28px;
    border: 2px solid #ddd;
    margin: 0 10px;
    font-weight: 500;
    transition: 0.3s;
}
.news-tabs .nav-link.active {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}
.news-tabs .nav-link:hover:not(.active) {
    border-color: var(--primary-green);
    color: var(--primary-green);
}
.news-tabs .nav-link:focus{color: #fff!important;}
.news-card {
    border: none;
    transition: 0.3s;
}
.news-card a{color: #1a1a1a}
.news-card:hover {
    transform: translateY(-5px);
}
.news-card img {
    border-radius: 10px;
}
.news-date {
    font-size: 0.75rem;

    font-weight: 600;
}
.news-date a{
    color: var(--primary-green);
}
.news-card a:hover{
    text-decoration: underline;
}
/* Service Section */
.service-section {
    background: #004199;
    color: white;
    position: relative;
    overflow: hidden;
}
.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
}
.service-item h5 {
    font-weight: 600;
    margin-bottom: 8px;
}
.service-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* Footer */
.footer-section {
    background:  url('../images/footer.jpg')no-repeat bottom;
    color: #aaa;
    padding-top: 60px;
}
.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}
.contact-box {
    background-color: var(--primary-green);
    color: white;
    padding: 30px;
    position: relative;
    border-radius: 10px;
}
.contact-box h5 {
    margin-bottom: 20px;
    font-weight: 700;
}
.contact-box p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.contact-box i {
    width: 25px;
}
.contact-box .quick-links {
    display: flex;
    align-items: end;
}
.contact-box .quick-links>div, .contact-box .quick-links>ul{
    flex: 1;
}
.contact-box .quick-links>ul{
    display: flex;
    flex: 1;
    margin-bottom: 0;
    text-align: center;
}
.contact-box .quick-links>ul img{
    max-width: 100px;
}
.footer-form input,
.footer-form textarea {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 12px 15px;
}
.footer-form textarea {resize: none;}
.footer-form input:focus,
.footer-form textarea:focus {
    background: #2a2a2a;
    border-color: var(--primary-green);
    color: white;
    box-shadow: none;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #888;
}
.contact-sns a{color:#fad506; }
.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.3rem;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #ffffff9c;
    transform: translateY(-3px);
}
.quick-links a {
    padding: 5px 0;
    transition: 0.3s;
}
.quick-links a:hover {
    color: #fff;
    text-decoration: underline;
    padding-left: 8px;
}
.copyright {
    background: #0a0a0a;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #222;
}
.recommend li{margin-bottom: 10px;font-size: 0.95rem;}
.recommend li a:hover{text-decoration: underline;}
/* Hero Section */
.inner-section {
    background:  url('../images/b1.jpg')no-repeat center;
    color: white;
    padding: 110px 0;
    text-align: center;
}
.inner-section .container{
    width: 60%;
    background: #009b4c5c;
}
.inner-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.inner-section p {
    font-size: 18px;
    margin-bottom: 0;
}
.about-us-section {
    background:  url('../images/b7.jpg')no-repeat center;
    height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
}
.about-us-section .container {
    background: #333333a1;
}
.contact-us-section {
    background:  url('../images/b9.jpg')no-repeat center;
    color: white;
    padding: 110px 0;
}
.contact-us-section .container-ban{
    width: 50%;
    padding-left: 50px;
    background: #009b4c5c;
}
.contact-us-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-us-section p {
    font-size: 18px;
    margin-bottom: 0;
}
.cone-crusher-section {
    background:  url('../images/b2.jpg')no-repeat center;
    color: white;
    padding: 110px 0;
    text-align: center;
}
.cone-crusher-section .container{
    width: 50%;
    background: #0000004f;
}
.cone-crusher-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cone-crusher-section p {
    font-size: 18px;
    margin-bottom: 0;
}
.stone-crusher{
    background:  url('../images/b3.jpg')no-repeat center;
}
.screening-sand{
    background:  url('../images/b4.jpg')no-repeat center;
}
 .mobile-plant{
     background:  url('../images/b5.jpg')no-repeat center;
 }
.ore-benefaction{
    background:  url('../images/b6.jpg')no-repeat center;
}
.case-inner{
    background:  url('../images/b11.jpg')no-repeat center;
}
.news-inner{
    background:  url('../images/b13.jpg')no-repeat center;
}
 .solution-inner{
     background:  url('../images/b14.jpg')no-repeat center;
 }
.service-inner{
    background:  url('../images/b15.jpg')no-repeat center;
}
/* Product Section */
.product-section {
    padding: 30px 0 0;
}

.section-headline {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
}

.product-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 20px;
}

.product-info h5 a{
    color: #009b4c;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display:block;
}
.product-info h5 a:hover{
    text-decoration: underline;
}
.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-details {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background-color: #0056b3d9;
    color: white;
}

/* Case Section */
.cases-section {
    padding: 30px 0;
}
.cases-section .case-headline{
    padding-bottom: 30px;
}
.case-card-pro {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.case-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-info {
    padding:10px 20px;
}

.case-info h5 {
    font-weight: 700;
    margin-bottom: 15px;
}
.case-info h5 a{
    color: #009b4c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display:block;
}
.case-headline::after {
    content: "";
    color: var(--primary-green);
    width: 100px;
    display: inline-block;
    height: 20px;
    font-weight: bold;
    background:  url('../images/icon2.png')no-repeat center;
    background-size: contain;
}
/* FAQ Section */
.faq-section {
    background-color: #eeeeee;
}

/* Responsive */
@media (max-width: 1200px) {
    .inner-section{padding: 50px 0;}
    .cone-crusher-section{padding: 50px 0;}
    .contact-us-section{padding: 50px 0;}
    .contact-box .quick-links>ul{display: none;}
}

@media (max-width: 768px) {
    .inner-section .container{width: 100%;}
    .cone-crusher-section{padding: 90px 0;}
    .cone-crusher-section .container{width: 100%;}
    .inner-section h1 {font-size: 32px;}
    .cone-crusher-section h1 {font-size: 26px;}
}
/* Responsive Adjustments */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-brand {
        display: none;
    }
}
@media (max-width: 992px) {
    .main-nav {background: #fff;}
    .hero-section {height: 350px;}
    .navbar-nav li a {color: #333;}
    .about-stat{width: 100%;}
    .about-section {background-size:cover;}
    .section-padding{padding: 50px 0;}
    .footer-section {background: #111;}
    .about-section .section-title {text-align: center;width: 100%;}
    .about-section .section-title a{color: white;}
    .section-title::before,.section-title::after{display: none;}
    .contact-us-section .container-ban{width: 100%;padding-left: 20px;}
    .about-us-section {height:auto;}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 15px;
    }
    .news-tabs .nav-link{font-size: 0.8rem;padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);margin: 0 3px;}
    .contact-sns span{display: block;margin-top: 0.5rem; }
    .quick-links span{display: block;margin-top: 0.5rem; }
    .navbar-nav .nav-link{padding:10px!important;}
}
@media (max-width: 576px) {
    .news-tabs .nav-link{font-size: 0.7rem;}
    .social-icons a{margin-right: 10px;}
    .section-padding {padding: 30px 0;}
    .navbar-nav li {width: 100%;text-align: left;}
    .navbar-brand{width: 80%;margin-right: 0;}
}
/*Cookies协议*/
#cookies_agreement {
    background-color: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 20px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100001;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    transition: opacity 300ms ease-in-out;
    display: flex;
    flex-wrap: wrap;
    opacity: 1;
    max-width: 374px;
    width: 94%;
    justify-content: space-between;
    box-sizing: border-box;
    margin: auto;
}
.cookies_none {
    display: none !important;
}
#cookies_agreement>.cookies-content {
    line-height: 26px;
    color: #333;
    width: 100%;
    font-size: 16px;
}
#cookies_agreement>.cookies-content a{
    text-decoration: underline;
    color: #333;
}

#cookies_agreement>.cookies-content a:hover {
    text-decoration: underline;
}

#cookies_agreement>.cookies-button {
    display: block;
    background-color: #2e2e2e;
    line-height: 20px;
    margin-top: 15px;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    width: 48%;
}

#cookies_agreement>.cookies-button.reject {
    background-color: #fff;
    color: #2e2e2e;
    border: 1px solid #2e2e2e;
    float: left;
}

#cookies_agreement>.cookies-button.reject {
    background-color: #fff;
    color: #2e2e2e;
    border: 1px solid #2e2e2e;
    float: left;
}

@media screen and (min-width: 1000px) {
    #cookies_agreement.cookies-bottom {
        padding: 30px 15%;
        width: 100%;
        bottom: 0;
        left: 0;
        border-radius: 0;
        border: 1px solid #D0D0D0;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: none;
    }

    #cookies_agreement.cookies-bottom>.cookies-content {
        flex: 1;
        margin-right: 20px;
    }

    #cookies_agreement.cookies-bottom>.cookies-button {
        width: auto;
        padding: 10px 60px;
        margin-left: 20px;
        margin-top: 0;
    }
}

@media screen and (max-width: 1000px) {
    #cookies_agreement.cookies-bottom {
        padding: 20px;
        left: 0;
        right: 0;
        bottom: 15px;
    }

    #cookies_agreement.cookies-bottom>.content {
        width: 100%;
        flex: none;
    }

    #cookies_agreement.cookies-bottom>.button {
        margin-top: 15px;
    }
}

.cookies-popup {
    display: none;
    position: fixed;
    z-index: 100002;
    left: 0;  
    top: 0;  
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.cookies-open-popup {
    display: block;
}
.cookies-open-popup .cookies-popup-box {  
    background-color: #fefefe;  
    margin: 4% auto;
    padding: 20px;  
    border: 1px solid #888;  
    width: 80%;
    height: 80%;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);  
    border-radius: 8px;  
    overflow: auto;
}  

.cookies-popup .cookies-popup-box .cookies-popup-box-top {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px;
  text-align: center;
}
.cookies-popup .cookies-popup-box-foot {
    width: 100%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}
.cookies-popup .cookies-popup-box-foot .cookies-button{
    width: auto;
    padding: 8px 30px;
    background: #333;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);

}