/* ========== RESET & BASE ========== */
*{margin:0;padding:0;box-sizing:border-box;text-decoration:none}
html,body{position:relative;width:100%;font-family:'Roboto',sans-serif;color:#333;background:#fff;overflow-x:hidden}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
img{max-width:100%;display:block}

/* ========== HEADER ========== */
.site-header{position:fixed;top:0;left:0;width:100%;z-index:999;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.08)}
.sticky-header .main-bar{padding:0;display:flex;align-items:center;justify-content:space-between;max-width:1440px;margin:0 auto;padding:0 20px;height:75px}
.logo-header{flex-shrink:0}
.logo-header a{display:flex;align-items:center;gap:8px}
.logo-header .logo-icon{width:42px;height:42px;background:linear-gradient(135deg,#0f4bb9,#2563eb);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:22px;font-style:italic}
.logo-header .logo-text{font-size:24px;font-weight:700;color:#0f4bb9;letter-spacing:-.5px}
.logo-header .logo-tag{font-size:11px;color:#888;font-weight:400;margin-top:-2px}
.header-nav{display:flex;align-items:center;gap:0}
.header-nav ul.nav{display:flex;gap:0;list-style:none}
.header-nav ul.nav>li{position:relative}
.header-nav ul.nav>li>a{display:block;padding:26px 20px;font-size:16px;font-weight:500;color:#333;transition:color .2s}
.header-nav ul.nav>li:hover>a{color:#0f4bb9}
.header-nav ul.nav>li>a .arrow-icon{font-size:.7rem;margin-left:4px}
.header-nav .sub-menu{position:absolute;top:100%;left:0;background:#fff;min-width:220px;box-shadow:0 4px 15px rgba(0,0,0,.1);border-radius:0 0 6px 6px;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .25s;z-index:100}
.header-nav ul.nav>li:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
.header-nav .sub-menu li a{display:block;padding:12px 20px;font-size:14px;color:#555;transition:all .2s}
.header-nav .sub-menu li a:hover{background:#f0f4ff;color:#0f4bb9}
.extra-nav{display:flex;align-items:center;gap:12px}
.social-bx{display:flex;gap:10px;list-style:none}
.social-bx li a{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:#f0f4ff;transition:all .2s}
.social-bx li a:hover{background:#0f4bb9}
.social-bx li a svg{width:16px;height:16px;fill:#0f4bb9;transition:fill .2s}
.social-bx li a:hover svg{fill:#fff}
.mobile-toggle{display:none;background:none;border:none;cursor:pointer;font-size:24px;color:#333}

/* ========== PAGE BANNER ========== */
.page-banner{margin-top:75px;width:100%;height:300px;background:linear-gradient(135deg,#0f4bb9 0%,#1a2a6c 50%,#0f4bb9 100%);display:flex;align-items:center;justify-content:center;flex-direction:column;position:relative;overflow:hidden}
.page-banner::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at 30% 50%,rgba(255,255,255,.08) 0%,transparent 50%),radial-gradient(circle at 70% 30%,rgba(255,255,255,.05) 0%,transparent 50%)}
.page-banner h1{font-family:'Playfair Display',serif;font-size:42px;color:#fff;font-weight:700;z-index:1;position:relative}
.page-banner .breadcrumb{display:flex;gap:10px;align-items:center;margin-top:15px;z-index:1;position:relative}
.page-banner .breadcrumb a,.page-banner .breadcrumb span{color:rgba(255,255,255,.7);font-size:14px;transition:color .2s}
.page-banner .breadcrumb a:hover{color:#fff}
.page-banner .breadcrumb .separator{color:rgba(255,255,255,.4)}

/* ========== SECTION HEADING ========== */
.section-heading{text-align:center;padding:50px 20px 30px}
.section-heading h1{font-family:'Playfair Display',serif;font-size:40px;font-weight:700;color:#111}
.section-heading .subtitle{color:#0f4bb9;font-size:16px;font-weight:500;text-transform:uppercase;letter-spacing:2px;margin-bottom:10px}

/* ========== BUTTONS ========== */
.btn-primary{display:inline-block;padding:12px 35px;background:#0f4bb9;color:#fff;font-size:18px;font-weight:700;border-radius:6px;transition:all .3s;cursor:pointer;border:none}
.btn-primary:hover{background:#083a9a;transform:translateY(-2px);box-shadow:0 4px 12px rgba(15,75,185,.3)}
.btn-secondary{display:inline-block;padding:12px 35px;background:#ff8930;color:#fff;font-size:18px;font-weight:700;border-radius:6px;transition:all .3s;cursor:pointer;border:none}
.btn-secondary:hover{background:#e07a25;transform:translateY(-2px)}

/* ========== PRODUCTS GRID ========== */
.woocommerce ul.products{display:flex;flex-wrap:wrap;gap:20px;list-style:none;padding:30px 0;max-width:1200px;margin:0 auto}
.woocommerce ul.products li.product{width:calc(25% - 15px);background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.06);transition:transform .3s,box-shadow .3s;position:relative}
.woocommerce ul.products li.product:hover{transform:translateY(-5px);box-shadow:0 6px 20px rgba(0,0,0,.12)}
.woocommerce ul.products li.product img{width:100%;height:220px;object-fit:cover}
.fas-main-overlay{position:absolute;top:0;left:0;width:100%;height:calc(100% - 50px);background:rgba(15,75,185,.75);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s;flex-direction:column;gap:10px}
.woocommerce ul.products li.product:hover .fas-main-overlay{opacity:1}
.fas-main-button{padding:10px 20px;background:#fff;color:#0f4bb9;font-size:14px;font-weight:700;border-radius:4px;transition:all .2s;cursor:pointer;border:none}
.fas-main-button:hover{background:#0f4bb9;color:#fff}
.woocommerce-loop-product__title{padding:15px;text-align:center;font-size:16px;font-weight:700;color:#333}

/* ========== FOOTER ========== */
.custom_footer{background:#251A37}
.custom_footer_container{width:100%;max-width:1550px;margin:0 auto;display:flex;justify-content:space-between;padding:45px 40px;gap:30px}
.footer_section1{display:flex;flex-direction:column;justify-content:space-evenly;gap:25px}
.footer_section1 .footer-logo{display:flex;align-items:center;gap:8px}
.footer_section1 .footer-logo .logo-icon{width:42px;height:42px;background:linear-gradient(135deg,#0f4bb9,#2563eb);border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:22px;font-style:italic}
.footer_section1 .footer-logo .logo-text{font-size:24px;font-weight:700;color:#fff}
.footer_social_icons{display:flex;gap:18px}
.footer_social_icons a{display:flex;align-items:center;justify-content:center;width:44px;height:44px;background:rgba(255,255,255,.1);border-radius:50%;transition:all .3s}
.footer_social_icons a:hover{background:rgba(255,255,255,.25)}
.footer_social_icons a svg{width:18px;height:18px;fill:rgba(255,255,255,.7)}
.footer_section2{display:flex;flex-direction:column;justify-content:space-around;gap:20px}
.footer_contact_item{display:flex;color:#fff;gap:10px;align-items:center}
.footer_contact_item .contact-icon{width:30px;height:30px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.footer_contact_item .contact-icon svg{width:18px;height:18px;fill:rgba(255,255,255,.6)}
.footer_text{color:#C9C5D0;font-size:15px;line-height:1.5}
.footer_section3 .footer_title{font-weight:500;font-size:24px;color:#fff;text-align:left;margin-bottom:20px}
.footer_nav{display:flex;flex-direction:column;gap:15px;text-align:left}
.footer_link_text{font-weight:400;font-size:16px;color:#C9C5D0;transition:color .2s}
.footer_link_text:hover{color:#fff}
.footer-copyright{text-align:center;padding:20px;background:#1a1228;color:#888;font-size:13px}

/* ========== FLOATING ACTION BAR ========== */
.floating-bar{position:fixed;right:20px;top:50%;transform:translateY(-50%);z-index:998;display:flex;flex-direction:column;gap:10px}
.floating-bar a{width:50px;height:50px;background:#0f4bb9;border-radius:8px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:all .3s}
.floating-bar a:hover{background:#083a9a;transform:scale(1.05)}
.floating-bar a svg{width:22px;height:22px;fill:#fff}

/* ========== LANGUAGE SELECTOR ========== */
.lang-selector{position:fixed;bottom:20px;left:20px;z-index:998;background:#fff;border-radius:8px;box-shadow:0 2px 10px rgba(0,0,0,.1);padding:8px 16px;display:flex;align-items:center;gap:6px;cursor:pointer;font-size:14px;color:#333}

/* ========== CONTENT CONTAINER ========== */
.content-container{max-width:1200px;margin:0 auto;padding:60px 20px}
.content-container h2{font-size:28px;font-weight:700;color:#111;margin-bottom:20px}
.content-container h3{font-size:22px;font-weight:700;color:#0f4bb9;margin-bottom:15px}
.content-container p{font-size:16px;line-height:1.8;color:#555;margin-bottom:15px}

/* ========== SERVICE CARDS ========== */
.service-cards{display:flex;flex-wrap:wrap;gap:20px;margin:30px 0}
.service-card{flex:1;min-width:250px;background:#fff;padding:30px;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:transform .3s}
.service-card:hover{transform:translateY(-5px)}
.service-card .card-icon{width:60px;height:60px;background:#e8f0fe;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.service-card .card-icon svg{width:30px;height:30px;fill:#0f4bb9}
.service-card h4{font-size:18px;font-weight:700;color:#111;margin-bottom:10px}
.service-card p{font-size:14px;color:#666;line-height:1.6}

/* ========== TIMELINE ========== */
.timeline{position:relative;padding:40px 0}
.timeline-item{display:flex;gap:30px;margin-bottom:40px;position:relative}
.timeline-year{flex-shrink:0;width:80px;height:80px;background:#0f4bb9;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700}
.timeline-content{flex:1;padding:20px;background:#f8f9ff;border-radius:8px;border-left:4px solid #0f4bb9}
.timeline-content h4{font-size:18px;font-weight:700;color:#111;margin-bottom:8px}
.timeline-content p{font-size:14px;color:#666;line-height:1.6}

/* ========== FAQ ========== */
.faq-list{max-width:900px;margin:0 auto}
.faq-item{background:#fff;border-radius:8px;margin-bottom:15px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.faq-question{padding:20px 25px;font-size:17px;font-weight:700;color:#111;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background .2s}
.faq-question:hover{background:#f8f9ff}
.faq-question .faq-toggle{font-size:20px;color:#0f4bb9;transition:transform .3s}
.faq-item.active .faq-toggle{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 25px}
.faq-item.active .faq-answer{max-height:500px;padding:0 25px 20px}
.faq-answer p{font-size:15px;color:#666;line-height:1.7}

/* ========== CONTACT FORM ========== */
.contact-section{display:flex;gap:40px;max-width:1200px;margin:0 auto;padding:60px 20px}
.contact-info{flex:1}
.contact-info-item{display:flex;gap:15px;align-items:flex-start;margin-bottom:30px}
.contact-info-item .icon-box{width:50px;height:50px;background:#e8f0fe;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-item .icon-box svg{width:24px;height:24px;fill:#0f4bb9}
.contact-info-item h4{font-size:16px;font-weight:700;color:#111;margin-bottom:5px}
.contact-info-item p{font-size:15px;color:#666;line-height:1.6}
.contact-form{flex:1.5;background:#f8f9ff;padding:40px;border-radius:12px}
.contact-form h3{font-size:24px;font-weight:700;color:#111;margin-bottom:25px}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:14px;font-weight:500;color:#333;margin-bottom:8px}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1px solid #ddd;border-radius:6px;font-size:15px;font-family:inherit;transition:border-color .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:#0f4bb9}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:flex;gap:20px}
.form-row .form-group{flex:1}

/* ========== BLOG ========== */
.blog-grid{display:flex;flex-wrap:wrap;gap:30px;max-width:1200px;margin:0 auto;padding:40px 20px}
.blog-card{width:calc(33.333% - 20px);background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:transform .3s}
.blog-card:hover{transform:translateY(-5px)}
.blog-card img{width:100%;height:220px;object-fit:cover}
.blog-card .blog-info{padding:25px}
.blog-meta{display:flex;gap:15px;margin-bottom:12px;font-size:13px;color:#888}
.blog-card h4{font-size:18px;font-weight:700;color:#222;margin-bottom:12px;line-height:1.4}
.blog-card p{font-size:14px;color:#666;line-height:1.6;margin-bottom:15px}
.blog-readmore{color:#0f4bb9;font-size:14px;font-weight:500;display:inline-flex;align-items:center;gap:5px;transition:gap .2s}
.blog-readmore:hover{gap:10px}

/* ========== PRODUCT DETAIL ========== */
.product-detail{max-width:1200px;margin:0 auto;padding:60px 20px}
.product-detail-top{display:flex;gap:40px;margin-bottom:40px}
.product-detail-images{flex:1}
.product-detail-images .main-image{width:100%;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.1);margin-bottom:15px}
.product-detail-info{flex:1}
.product-detail-info h1{font-size:28px;font-weight:700;color:#111;margin-bottom:15px}
.product-detail-info .product-category{color:#0f4bb9;font-size:14px;font-weight:500;margin-bottom:10px}
.product-detail-info .product-desc{font-size:15px;color:#666;line-height:1.8;margin-bottom:25px}
.product-specs{background:#f8f9ff;border-radius:8px;padding:25px;margin-bottom:25px}
.product-specs h3{font-size:18px;font-weight:700;color:#111;margin-bottom:15px}
.product-specs table{width:100%;border-collapse:collapse}
.product-specs table td{padding:10px 15px;border-bottom:1px solid #e0e0e0;font-size:14px}
.product-specs table td:first-child{font-weight:600;color:#333;width:40%}
.product-specs table td:last-child{color:#666}

/* ========== HERO BANNER (home) ========== */
.hero-banner{margin-top:75px;width:100%;overflow:hidden}
.hero-banner .swiper{width:100%;height:auto}
.hero-banner .swiper-slide{text-align:center;background:#fff;display:flex;justify-content:center;align-items:center}
.hero-banner .swiper-slide img{display:block;width:100%;height:auto;object-fit:cover}
.hero-banner .swiper-pagination-bullet{width:20px!important;height:20px!important}
.swiper-button-prev,.swiper-button-next{color:rgba(255,255,255,.7);width:40px!important;height:40px!important;background:rgba(0,0,0,.3);border-radius:50%;display:flex!important;align-items:center;justify-content:center;transition:all .3s}
.swiper-button-prev:hover,.swiper-button-next:hover{color:#fff;background:rgba(0,0,0,.5)}

/* ========== PRODUCTS SECTION (home) ========== */
.products-section{width:100%;background:linear-gradient(180deg,#eef3fc 0%,#fff 100%);padding-bottom:60px}
.product-nav{width:100%;background:#fff}
.product-nav ul{display:flex;max-width:1200px;justify-content:space-between;margin:0 auto;padding:0;list-style:none;border-bottom:2px solid #0f4bb9}
.product-nav li{padding:15px 25px;border-bottom:3px solid transparent;cursor:pointer;transition:all .3s}
.product-nav li:hover{background:#0f4bb9}
.product-nav li:hover a{color:#fff}
.product-nav li.active{background:#0f4bb9}
.product-nav li.active a{color:#fff}
.product-nav a{font-size:20px;color:#333;font-weight:700;transition:color .3s}
.content-section{width:100%;max-width:1200px;margin:0 auto;display:none;padding:20px}
.content-section.active{display:block}
.product_catgeros{justify-content:space-between;width:100%;max-width:1200px;margin:0 auto;display:flex;column-gap:35px}
.product_catgeros_left{width:50%}
.product_catgeros_left img{width:100%;border-radius:8px;box-shadow:0 4px 15px rgba(0,0,0,.08)}
.product_catgeros_right{flex:1}
.product_catgeros_right_title_2{font-size:23px;color:#000;font-weight:700;margin:-6px 0 15px 0}
.product_catgeros_right_p{width:100%;font-size:14px;line-height:24px;text-align:justify;color:#555}
.product_icon{margin:13px 0;display:flex;gap:20px;flex-wrap:wrap}
.product_icon_1{display:flex;align-items:center;gap:8px}
.product_icon_1 .icon-circle{width:36px;height:36px;border-radius:50%;background:#e8f0fe;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.product_icon_1 .icon-circle svg{width:18px;height:18px;fill:#0f4bb9}
.product_icon_1 p{font-size:13px;color:#444}
.product_catgeros_right_btn{padding:12px;margin-top:20px;width:35%;text-align:center;line-height:21px;color:#fff;font-size:18px;background:#0f4bb9;border-radius:6px;transition:all .3s}
.product_catgeros_right_btn:hover{background:#083a9a;transform:translateY(-2px)}

/* ========== NEW ARRIVALS (home) ========== */
.new-arrivals-section{background:linear-gradient(180deg,#fff 0%,#eef3fc 100%);padding-bottom:50px}
.banner_content{width:100%;max-width:1440px;margin:0 auto}
.banner_content .swiper-slide_content{background-size:cover;display:flex;gap:80px;padding:92px}
.swiper-slide_left{width:147%}
.swiper-slide_left p{font-size:16px;line-height:25px;color:#444}
.swiper-slide_left h2{font-size:28px;font-weight:700;margin:22px 0;color:#111}
.slide_top{display:flex;gap:15px}
.slide_top_left{height:auto;padding:10px 20px;background:#134ebb;border-radius:8px;text-align:center;color:#fff;font-size:14px;font-weight:500}
.slide_top_right{height:auto;padding:10px 20px;background:#ff8930;border-radius:8px;text-align:center;color:#fff;font-size:14px;font-weight:500}
.slide_btn{width:35%;height:55px;text-align:center;line-height:55px;color:#fff;background:#0f4bb9;margin-top:40px;border-radius:6px;transition:all .3s}
.slide_btn:hover{background:#083a9a}
.swiper-slide_right{flex:1;display:flex;align-items:center}
.swiper-slide_right img{width:100%;height:auto}
.banner_content .swiper-button-next,.banner_content .swiper-button-prev{width:65px!important;height:65px!important;background:#abc2ea;border-radius:50%;padding:10px}

/* ========== ODM SERVICE (home) ========== */
.odm-section{background:linear-gradient(180deg,#eef3fc 0%,#fff 100%);padding-bottom:60px}
.odm-content{display:flex;width:100%;max-width:1440px;margin:0 auto;justify-content:space-between;padding:40px;border-radius:8px;background:linear-gradient(135deg,#f0f4ff,#e8effe)}
.odm-content .left{width:60%;padding-right:40px}
.odm-content .right{width:40%}
.odm-content .left h3{font-weight:700;font-size:30px;color:#000}
.odm-content .left .title{display:flex;column-gap:5px;margin-top:20px;align-items:center;flex-wrap:wrap}
.odm-content .title .title_1{background:#c3e6e7;text-align:center;padding:0 13px;height:40px;font-size:18px;line-height:40px;color:#2e4b99;font-weight:700;border-radius:4px}
.odm-content .title .arrow{font-size:32px;font-weight:bold;color:#0f4bb9;display:flex;align-items:center;justify-content:center;height:40px}
.odm-content .desc{font-size:16px;line-height:22px;text-align:justify;margin-top:20px;color:#555}
.odm-content .title2{margin:32px 0;display:flex;align-items:center;color:#255ffd;font-weight:700;font-size:18px}
.odm-content .check-icon{margin-right:10px;display:inline-flex;width:20px;height:20px;font-weight:700;color:#fff;line-height:20px;background:#68cc6d;border-radius:50%;align-items:center;justify-content:center;font-size:13px}
.odm-content .btn1{color:#fff;width:35%;height:55px;text-align:center;line-height:55px;font-weight:700;font-size:18px;background:#0f4bb9;border-radius:6px;transition:all .3s;cursor:pointer}
.odm-content .btn1:hover{background:#083a9a;transform:translateY(-2px)}
.odm-content .right img{width:100%;height:auto;object-fit:contain;border-radius:8px}
.odm-content .right-note{color:#797979;font-size:16px;margin-top:20px}
.block_model{width:100%;max-width:1440px;margin:30px auto 0;background:#fafafa;padding:0 40px 40px}
.block_model_all{width:100%;max-width:1440px;margin:0 auto;background:#fafafa;display:flex;column-gap:20px}
.block_1{width:25%;background:#fff;padding:25px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.05);transition:transform .3s}
.block_1:hover{transform:translateY(-5px);box-shadow:0 6px 15px rgba(0,0,0,.1)}
.block_1_top{border-bottom:1px solid #797979;padding-bottom:15px;margin-bottom:15px}
.block_1_top h3{font-size:35px;color:#0f4bb9;margin-bottom:10px}
.block_1_bottom_img{display:flex;column-gap:15px;align-items:center;margin-top:25px}
.block_1_bottom_img p{font-size:18px;font-weight:700}
.block_1_bottom_img .step-icon{width:50px;height:50px;background:#e8f0fe;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.block_1_bottom_img .step-icon svg{width:26px;height:26px;fill:#0f4bb9}

/* ========== COMPANY INTRO (home) ========== */
.company-intro{background:linear-gradient(135deg,#0f4bb9 0%,#1a2a6c 50%,#0f4bb9 100%);padding:50px 0;position:relative}
.wk_content_all{width:100%;max-width:1440px;margin:0 auto;display:flex;padding:50px;position:relative;z-index:1}
.wk_content_left{width:47%}
.wk_content_right{flex:1}
.wk_content_right h3{font-size:25px;color:#fff;padding:10px 0;font-weight:700;line-height:1.4}
.wk_content_right .content_text{font-size:16px;color:rgba(255,255,255,.85);margin-top:20px;line-height:27px}
.time_line{display:flex;flex-direction:column;gap:10px;margin-top:15px}
.time_line p{width:13px;height:13px;background:#fff;border-radius:50%;flex-shrink:0;margin-top:4px}
.time_line h5{color:rgba(255,255,255,.9);font-size:16px;font-weight:400}
@media(min-width:768px){.time_line{flex-direction:row;gap:15px;align-items:flex-start}}
.card_list{display:flex;flex-wrap:wrap;gap:10px;margin-top:50px}
.card_1{display:flex;align-items:center;padding:20px;width:100%;background:#fff;column-gap:15px;margin-bottom:10px;border-radius:8px;transition:transform .3s}
.card_1:hover{transform:translateY(-3px)}
.card_1 .card-icon{width:44px;height:44px;background:#e8f0fe;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.card_1 .card-icon svg{width:22px;height:22px;fill:#0f4bb9}
.card_1 p{flex:1;font-size:15px;line-height:22px;color:#333;font-weight:500}
@media(min-width:768px){.card_1{width:calc(50% - 10px);padding:25px}}
@media(min-width:1024px){.card_1{width:32%;padding:30px}}

/* ========== CUSTOMER CASES (home) ========== */
.customer-section{background:linear-gradient(180deg,#fff 0%,#eef3fc 100%);padding:40px 0}
.customer_serve{width:100%;max-width:1440px;margin:0 auto;display:flex;column-gap:20px;padding:40px}
.customer_serve_left{width:55%}
.customer_top h1{font-size:30px;font-weight:700;color:#111}
.customer_top p{width:98%;margin:15px 0;line-height:22px;color:#555;font-size:15px}
.customer_bottom{margin-top:25px}
.customer_bottom h2{font-size:20px;font-weight:700;color:#111;margin-bottom:15px}
.customer_bottom_li{display:flex;align-items:baseline;column-gap:10px;margin-top:20px}
.customer_bottom_left{width:15px;height:15px;border-radius:50%;background:#0f4bb9;flex-shrink:0;margin-top:3px}
.customer_bottom_right{flex:1}
.customer_bottom_right h4{color:#0f4bb9;font-size:18px;font-weight:700}
.customer_bottom_right p{line-height:22px;margin-top:8px;color:#555;font-size:14px}
.btn2{width:30%;height:55px;text-align:center;line-height:55px;font-weight:700;font-size:18px;background:#0f4bb9;color:#fff;margin-top:35px;border-radius:6px;transition:all .3s;cursor:pointer}
.btn2:hover{background:#083a9a;transform:translateY(-2px)}
.carousel-container{flex:1;width:100%;max-width:800px;margin:0 auto;position:relative}
.carousel-slide{display:none;width:100%}
.carousel-slide.active{display:block}
.carousel-slide img{width:100%;height:auto;border-radius:8px;box-shadow:0 4px 15px rgba(0,0,0,.1)}
.carousel-indicators{display:flex;justify-content:center;margin-top:20px}
.indicator{width:7%;height:8px;background:#87a5dc;margin:0 8px;cursor:pointer;transition:background-color .3s;border-radius:2px}
.indicator.active{background:#0f4bb9}

/* ========== BLOG SECTION (home) ========== */
.blog-section{padding:60px 0;background:#fff}
.blog-section .section-head{margin-bottom:40px}
.blog-section .sx-head-s-title{text-align:center;color:#0f4bb9;font-size:16px;font-weight:500;text-transform:uppercase;letter-spacing:2px}
.blog-section .sx-head-l-title{text-align:center}
.blog-section .sx-head-l-title h2{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:#111}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px){
  .woocommerce ul.products li.product{width:calc(33.333% - 14px)}
  .block_1{width:calc(50% - 10px);margin-bottom:20px}
  .block_model_all{flex-wrap:wrap}
  .blog-card{width:calc(50% - 15px)}
}
@media(max-width:768px){
  .header-nav{display:none}
  .mobile-toggle{display:block}
  .header-nav.open{display:flex;position:absolute;top:75px;left:0;width:100%;background:#fff;flex-direction:column;padding:20px;box-shadow:0 4px 15px rgba(0,0,0,.1)}
  .header-nav.open ul.nav{flex-direction:column;width:100%}
  .header-nav.open ul.nav>li>a{padding:15px 20px;border-bottom:1px solid #eee}
  .product-nav ul{flex-direction:column;border-bottom:none}
  .product-nav li{padding:12px 15px;border-bottom:1px solid #eee;text-align:center;width:100%}
  .product-nav a{font-size:16px}
  .product_catgeros{flex-direction:column;column-gap:0}
  .product_catgeros_left{width:100%}
  .product_catgeros_right{margin-top:20px;width:100%}
  .product_catgeros_right_btn{width:90%;margin-top:20px;font-size:16px}
  .woocommerce ul.products li.product{width:calc(50% - 10px)}
  .swiper-slide_content{flex-direction:column;padding:30px!important;gap:30px!important}
  .swiper-slide_left{width:100%!important}
  .slide_btn{width:60%!important;margin:30px auto!important}
  .slide_top{flex-direction:column;gap:10px}
  .odm-content{flex-direction:column;padding:20px}
  .odm-content .left,.odm-content .right{width:100%;padding-right:0}
  .odm-content .left h3{font-size:24px}
  .odm-content .btn1{width:65%;height:48px;line-height:48px;font-size:16px}
  .block_model_all{flex-direction:column}
  .block_1{width:100%!important}
  .wk_content_all{flex-direction:column;padding:20px}
  .wk_content_left{display:none}
  .card_1{width:100%!important;padding:15px}
  .customer_serve{flex-direction:column;padding:20px;gap:30px}
  .customer_serve_left,.carousel-container{width:100%}
  .btn2{width:65%;display:block}
  .blog-card{width:100%}
  .custom_footer_container{flex-direction:column;padding:30px 20px}
  .floating-bar{display:none}
  .section-heading h1{font-size:28px}
  .page-banner h1{font-size:28px}
  .contact-section{flex-direction:column}
  .product-detail-top{flex-direction:column}
  .form-row{flex-direction:column}
}
@media(max-width:480px){
  .woocommerce ul.products li.product{width:100%}
}
