:root {
  --orange: #FF6A00;
  --black: #111111;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --text: #66707d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--black); background: #fff; }

/* TOPBAR */
.nx-topbar { background: var(--black); padding: 10px 0; color: #d4d9e3; font-size: 13px; }
.nx-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.nx-topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.nx-topbar-left a { color: #d4d9e3; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; transition: .3s; }
.nx-topbar-left a:hover { color: var(--orange); }
.nx-topbar-right { display: flex; gap: 12px; }
.nx-topbar-right a { color: #d4d9e3; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: .3s; font-size: 12px; }
.nx-topbar-right a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* HEADER */
.nx-header { position: sticky; top: 0; z-index: 1030; background: #fff; box-shadow: 0 4px 30px rgba(0,0,0,.06); transition: .3s; }
.nx-header.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,.10); }
.nx-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.nx-logo img { max-height: 50px; }
.nx-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nx-mobile-toggle span { width: 26px; height: 3px; background: var(--black); border-radius: 3px; }
.nx-desktop-menu { display: flex; align-items: center; gap: 30px; }
.nx-menu { display: flex; list-style: none; gap: 8px; margin: 0; padding: 0; }
.nx-menu > li { position: relative; }
.nx-menu > li > a { color: var(--black); text-decoration: none; font-weight: 600; font-size: 14px; padding: 10px 16px; border-radius: 10px; display: flex; align-items: center; gap: 6px; transition: .3s; }
.nx-menu > li > a:hover, .nx-menu > li > a.active { color: var(--orange); background: rgba(255,106,0,.06); }

.nx-contact-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--orange), #ff914d); color: #fff; padding: 13px 26px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; box-shadow: 0 12px 30px rgba(255,106,0,.30); transition: .3s; }
.nx-contact-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 18px 40px rgba(255,106,0,.40); }

/* HERO */
.nx-hero { position: relative; padding: 100px 0 80px; background: var(--black); overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.nx-hero-bg { position: absolute; inset: 0; background: url('/assets/images/hero-bg.jpg') center/cover no-repeat; opacity: .3; }
.nx-hero-shape { position: absolute; right: -10%; top: -10%; width: 700px; height: 700px; background: var(--orange); opacity: .08; border-radius: 50%; filter: blur(80px); }
.nx-hero .container { position: relative; z-index: 2; }
.nx-hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 50px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; font-size: 13px; margin-bottom: 22px; }
.nx-hero-badge i { color: var(--orange); }
.nx-hero h1 { color: #fff; font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 22px; }
.nx-hero h1 span { color: var(--orange); }
.nx-hero p { color: #d4d9e3; font-size: 17px; line-height: 1.8; max-width: 560px; margin-bottom: 30px; }
.nx-hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.nx-hero-img { position: relative; min-height: 500px; display: flex; justify-content: center; align-items: center; }
.nx-hero-img > img { max-width: 100%; border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.4); animation: nxFloat 5s ease-in-out infinite; }
.nx-float-card { position: absolute; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); padding: 14px 18px; border-radius: 16px; color: #fff; min-width: 220px; box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.nx-float-card i { width: 48px; height: 48px; border-radius: 12px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.nx-float-card h4 { font-size: 15px; margin-bottom: 2px; }
.nx-float-card p { font-size: 12px; color: #d4d9e3; margin: 0; }
.nx-f1 { top: 30px; left: 0; animation: nxFloat2 4s ease-in-out infinite; }
.nx-f2 { top: 160px; right: 0; animation: nxFloat2 5s ease-in-out infinite .5s; }
.nx-f3 { bottom: 50px; left: 30px; animation: nxFloat2 4.5s ease-in-out infinite 1s; }

@keyframes nxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes nxFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* BUTTONS */
.nx-btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 15px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 15px 35px rgba(255,106,0,.35); transition: .3s; border: none; }
.nx-btn-primary:hover { background: #e65c00; transform: translateY(-3px); color: #fff; }
.nx-btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 15px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: .3s; }
.nx-btn-secondary:hover { background: #fff; color: var(--black); transform: translateY(-3px); }
.nx-btn-gradient { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--orange), #ff914d); color: #fff; padding: 14px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 12px 30px rgba(255,106,0,.25); transition: .3s; }
.nx-btn-gradient:hover { transform: translateY(-3px); color: #fff; }
.nx-btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--orange); color: var(--orange); padding: 13px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: .3s; }
.nx-btn-outline:hover { background: var(--orange); color: #fff; }
.nx-btn-sm { display: inline-flex; align-items: center; justify-content: center; background: var(--orange); color: #fff; padding: 10px 22px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px; border: none; transition: .3s; }
.nx-btn-sm:hover { background: #e65c00; color: #fff; }

/* MARQUEE */
.nx-marquee { background: var(--orange); padding: 16px 0; overflow: hidden; }
.nx-marquee-track { display: flex; gap: 60px; width: max-content; animation: nxMarquee 20s linear infinite; }
.nx-marquee-track span { color: #fff; font-weight: 700; font-size: 14px; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
@keyframes nxMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* PAGE HEADER */
.nx-page-header { background: var(--black); padding: 120px 0 70px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.nx-page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255,106,0,.15), transparent 50%); }
.nx-page-header .container { position: relative; z-index: 1; }
.nx-page-header h1 { font-size: 46px; font-weight: 800; margin-bottom: 12px; }
.nx-page-header h1 span { color: var(--orange); }
.nx-page-header p { color: #d4d9e3; font-size: 16px; }

/* SECTIONS */
.nx-section { padding: 90px 0; }
.nx-section-tag { display: inline-flex; align-items: center; gap: 10px; background: #fff3eb; color: var(--orange); padding: 10px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.nx-section-title { font-size: 42px; font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 20px; }
.nx-section-title span { color: var(--orange); }

/* ABOUT */
.nx-about p { color: var(--text); font-size: 16px; line-height: 1.9; margin-bottom: 16px; }
.nx-about-img-wrap { position: relative; max-width: 500px; }
.nx-about-img-wrap img { width: 100%; border-radius: 30px; box-shadow: 0 25px 60px rgba(0,0,0,.12); }
.nx-exp-badge { position: absolute; bottom: -25px; right: -25px; background: var(--orange); color: #fff; padding: 24px 28px; border-radius: 24px; text-align: center; box-shadow: 0 20px 50px rgba(255,106,0,.30); }
.nx-exp-badge span { display: block; font-size: 44px; font-weight: 800; line-height: 1; }
.nx-exp-badge p { font-size: 13px; margin: 6px 0 0; max-width: 130px; color: #fff; }
.nx-about-stat { background: var(--gray); padding: 20px; border-radius: 18px; text-align: center; }
.nx-about-stat h3 { color: var(--orange); font-size: 28px; font-weight: 800; margin-bottom: 5px; }
.nx-about-stat p { margin: 0; font-size: 14px; color: var(--text); }

/* SERVICES */
.nx-services { background: var(--gray); }
.nx-service-card { background: #fff; border-radius: 26px; padding: 35px 28px; text-align: center; border: 1px solid #e9ecef; transition: .35s; height: 100%; }
.nx-service-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.08); border-color: var(--orange); }
.nx-serv-icon { width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 24px; background: linear-gradient(135deg, var(--orange), #ff914d); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; box-shadow: 0 15px 35px rgba(255,106,0,.20); }
.nx-service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.nx-service-card p { color: var(--text); font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.nx-service-card a { color: var(--orange); text-decoration: none; font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }

/* CTA */
.nx-cta { padding: 70px 0; background: var(--black); }
.nx-cta-box { background: linear-gradient(135deg, rgba(255,106,0,.15), rgba(255,106,0,.05)); border: 1px solid rgba(255,106,0,.25); border-radius: 30px; padding: 40px; }
.nx-cta-content { display: flex; align-items: center; gap: 20px; }
.nx-cta-icon { width: 72px; height: 72px; min-width: 72px; border-radius: 22px; background: var(--orange); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 15px 35px rgba(255,106,0,.28); }
.nx-cta-content h2 { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.nx-cta-content p { color: #d4d9e3; margin: 0; }
.nx-cta-form .input-group { background: #fff; padding: 8px; border-radius: 50px; }
.nx-cta-form input { border: none; padding: 14px 20px; border-radius: 50px; font-size: 15px; }
.nx-cta-form input:focus { box-shadow: none; }
.nx-cta-form button { background: var(--orange); color: #fff; border-radius: 50px; padding: 14px 26px; font-weight: 700; border: none; transition: .3s; }
.nx-cta-form button:hover { background: #e65c00; }

/* PRODUCTS */
.nx-products { background: #fff; }
.nx-product-card { background: #fff; border-radius: 26px; overflow: hidden; border: 1px solid #e9ecef; box-shadow: 0 12px 30px rgba(0,0,0,.05); transition: .35s; height: 100%; }
.nx-product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.10); }
.nx-product-img { position: relative; height: 240px; overflow: hidden; }
.nx-product-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.nx-product-card:hover .nx-product-img img { transform: scale(1.08); }
.nx-product-img span { position: absolute; top: 16px; left: 16px; background: var(--orange); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.nx-product-info { padding: 24px; }
.nx-product-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.nx-product-info p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.nx-product-bottom { display: flex; justify-content: space-between; align-items: center; }
.nx-price { font-size: 20px; font-weight: 800; color: var(--orange); }
.nx-quote { font-size: 14px; color: var(--text); }
.nx-product-bottom a { background: var(--orange); color: #fff; padding: 8px 18px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; transition: .3s; }
.nx-product-bottom a:hover { background: #e65c00; }
.nx-feature-list { list-style: none; padding: 0; }
.nx-feature-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eee; color: var(--text); }
.nx-feature-list li i { color: var(--orange); }

/* SOFTWARE */
.nx-software-product-card { background: #fff; border-radius: 26px; overflow: hidden; border: 1px solid #e9ecef; box-shadow: 0 12px 30px rgba(0,0,0,.05); transition: .35s; height: 100%; text-align: center; }
.nx-software-product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.10); }
.nx-sp-img { height: 200px; overflow: hidden; }
.nx-sp-img img { width: 100%; height: 100%; object-fit: cover; }
.nx-sp-icon { width: 70px; height: 70px; margin: -35px auto 15px; border-radius: 20px; background: var(--orange); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 10px 30px rgba(255,106,0,.25); position: relative; z-index: 2; }
.nx-software-product-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; padding: 0 20px; }
.nx-software-product-card p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; padding: 0 20px; }
.nx-software-product-card .nx-btn-sm { margin-bottom: 25px; }

/* INDUSTRIES */
.nx-industries { background: var(--gray); }
.nx-industry-card { background: #fff; border-radius: 24px; padding: 35px 20px; text-align: center; border: 1px solid #e9ecef; transition: .35s; }
.nx-industry-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(0,0,0,.08); border-color: var(--orange); }
.nx-industry-icon { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff914d); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; box-shadow: 0 12px 25px rgba(255,106,0,.18); }
.nx-industry-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.nx-industry-card p { color: var(--text); font-size: 14px; line-height: 1.7; }

/* BLOGS */
.nx-blogs { background: #fff; }
.nx-blog-card { background: #fff; border-radius: 26px; overflow: hidden; border: 1px solid #e9ecef; box-shadow: 0 12px 30px rgba(0,0,0,.05); transition: .35s; height: 100%; }
.nx-blog-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(0,0,0,.10); }
.nx-blog-img { height: 220px; overflow: hidden; }
.nx-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.nx-blog-card:hover .nx-blog-img img { transform: scale(1.08); }
.nx-blog-content { padding: 24px; }
.nx-blog-date { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.nx-blog-content h3 { font-size: 20px; line-height: 1.4; margin-bottom: 12px; }
.nx-blog-content h3 a { color: var(--black); text-decoration: none; transition: .3s; }
.nx-blog-content h3 a:hover { color: var(--orange); }
.nx-blog-content p { color: var(--text); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.nx-blog-content > a { color: var(--orange); text-decoration: none; font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }

/* TESTIMONIALS */
.nx-testimonial-card-page { background: var(--gray); border-radius: 26px; padding: 28px; border: 1px solid #e9ecef; transition: .3s; height: 100%; }
.nx-testimonial-card-page:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.nx-testimonial-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.nx-testimonial-top img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.nx-testimonial-top h4 { font-size: 18px; margin-bottom: 2px; }
.nx-testimonial-top span { font-size: 13px; color: var(--text); }
.nx-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.nx-stars i { color: #ddd; font-size: 14px; }
.nx-stars i.active { color: #ffb400; }
.nx-testimonial-card-page p { color: var(--text); font-size: 15px; line-height: 1.8; margin: 0; }

/* FAQ */
.nx-faq-page { background: var(--gray); }
.nx-faq-support { background: var(--black); border-radius: 28px; padding: 32px; color: #fff; }
.nx-faq-support-icon { width: 68px; height: 68px; border-radius: 20px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; }
.nx-faq-support h4 { font-size: 22px; margin-bottom: 10px; }
.nx-faq-support p { color: #d4d9e3; font-size: 14px; margin-bottom: 18px; }
.nx-faq-support a { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: 14px; }
.nx-faq-list { display: flex; flex-direction: column; gap: 14px; }
.nx-faq-item { background: #fff; border-radius: 20px; border: 1px solid #e9ecef; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,.04); }
.nx-faq-question { width: 100%; border: none; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; font-size: 17px; font-weight: 700; color: var(--black); cursor: pointer; text-align: left; }
.nx-faq-question i { width: 36px; height: 36px; border-radius: 10px; background: var(--gray); color: var(--orange); display: flex; align-items: center; justify-content: center; transition: .3s; }
.nx-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.nx-faq-item.active .nx-faq-answer { max-height: 250px; }
.nx-faq-answer p { padding: 0 26px 24px; color: var(--text); font-size: 15px; line-height: 1.8; }
.nx-faq-item.active .nx-faq-question i { transform: rotate(45deg); background: var(--orange); color: #fff; }

/* VALUES */
.nx-value-card { background: #fff; border-radius: 26px; padding: 35px 25px; text-align: center; border: 1px solid #e9ecef; box-shadow: 0 12px 30px rgba(0,0,0,.05); transition: .35s; height: 100%; }
.nx-value-card:hover { transform: translateY(-8px); border-color: var(--orange); }
.nx-value-card i { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 24px; background: linear-gradient(135deg, var(--orange), #ff914d); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; }
.nx-value-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.nx-value-card p { color: var(--text); font-size: 14px; line-height: 1.8; }

/* CONTACT */
.nx-contact-info { background: var(--black); border-radius: 28px; padding: 40px; color: #fff; height: 100%; }
.nx-contact-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 15px; }
.nx-contact-info p { color: #d4d9e3; margin-bottom: 25px; }
.nx-contact-info ul { list-style: none; padding: 0; margin-bottom: 25px; }
.nx-contact-info ul li { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #d4d9e3; }
.nx-contact-info ul li i { color: var(--orange); font-size: 18px; }
.nx-contact-social { display: flex; gap: 12px; }
.nx-contact-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: .3s; }
.nx-contact-social a:hover { background: var(--orange); }
.nx-contact-form { background: #fff; border-radius: 28px; padding: 40px; box-shadow: 0 15px 40px rgba(0,0,0,.08); }
.nx-contact-form input, .nx-contact-form textarea, .nx-contact-form select { padding: 14px 18px; border-radius: 14px; border: 1px solid #e9ecef; background: var(--gray); }
.nx-contact-form input:focus, .nx-contact-form textarea:focus, .nx-contact-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,0,.10); }

/* FOOTER */
.nx-footer { background: var(--black); color: #d4d9e3; padding: 80px 0 0; }
.nx-footer h3 { color: #fff; font-weight: 800; font-size: 28px; margin-bottom: 18px; }
.nx-footer h3 span { color: var(--orange); }
.nx-footer h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.nx-footer p { color: #d4d9e3; font-size: 14px; line-height: 1.9; margin-bottom: 12px; }
.nx-footer ul { list-style: none; padding: 0; margin: 0; }
.nx-footer ul li { margin-bottom: 10px; }
.nx-footer ul li a { color: #d4d9e3; text-decoration: none; font-size: 14px; transition: .3s; }
.nx-footer ul li a:hover { color: var(--orange); padding-left: 5px; }
.nx-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.nx-footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: .3s; }
.nx-footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.nx-footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 50px; padding: 25px 0; text-align: center; }
.nx-footer-bottom p { margin: 0; }

.nx-whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 9999; box-shadow: 0 4px 15px rgba(0,0,0,.3); transition: .3s; text-decoration: none; }
.nx-whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* MOBILE */
.nx-mobile-canvas { width: 320px; max-width: 90%; }
.nx-close-btn { background: var(--orange); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; }
.nx-mobile-nav { list-style: none; padding: 0; margin: 0; }
.nx-mobile-nav li { border-bottom: 1px solid #eee; }
.nx-mobile-nav li a { display: block; padding: 15px 0; color: var(--black); text-decoration: none; font-weight: 700; }

@media (max-width: 991px) {
  .nx-desktop-menu { display: none; }
  .nx-mobile-toggle { display: flex; }
  .nx-hero h1 { font-size: 38px; text-align: center; }
  .nx-hero p { margin-left: auto; margin-right: auto; text-align: center; }
  .nx-hero-btns { justify-content: center; }
  .nx-hero-img { margin-top: 50px; min-height: auto; }
  .nx-float-card { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 15px auto; }
  .nx-cta-content { margin-bottom: 20px; }
  .nx-section-title, .nx-page-header h1 { font-size: 34px; }
  .nx-exp-badge { right: 0; }
  .nx-page-header { padding: 100px 0 50px; }
}

@media (max-width: 767px) {
  .nx-topbar-right { display: none; }
  .nx-topbar-left { width: 100%; justify-content: center; }
  .nx-hero h1 { font-size: 32px; }
  .nx-section { padding: 60px 0; }
  .nx-hero-badge { font-size: 12px; }
  .nx-cta-content { flex-direction: column; text-align: center; }
  .nx-contact-info { margin-bottom: 30px; }
}

/* =========================================
UNIQUE HOMEPAGE V2 STYLES
========================================= */

.nx-section-tag-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff3eb;
  color: var(--orange);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.nx-section-title-v2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.nx-section-title-v2 span {
  color: var(--orange);
}

.nx-section-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.nx-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: .3s;
}

.nx-view-all-btn:hover {
  gap: 12px;
}

.nx-btn-gradient-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #ff914d);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(255,106,0,.25);
  transition: .3s;
  border: none;
}

.nx-btn-gradient-v2:hover {
  transform: translateY(-3px);
  color: #fff;
}

.nx-btn-outline-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.nx-btn-outline-v2:hover {
  background: var(--orange);
  color: #fff;
}

/* HERO V2 */
.nx-hero-v2 {
  position: relative;
  padding: 120px 0 100px;
  background: var(--black);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.nx-hero-v2-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .25;
}

.nx-hero-dot {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  top: -100px;
  right: -100px;
}

.nx-hero-dot.nx-dot-2 {
  background: #0066ff;
  bottom: -150px;
  left: -100px;
  top: auto;
  right: auto;
}

.nx-hero-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,106,0,.15);
  border-radius: 50%;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.nx-hero-v2-content {
  position: relative;
  z-index: 2;
}

.nx-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
}

.nx-hero-tag i {
  color: var(--orange);
}

.nx-hero-v2-content h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.nx-hero-v2-content h1 span {
  color: var(--orange);
}

.nx-hero-desc {
  color: #d4d9e3;
  font-size: 17px;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 30px;
}

.nx-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.nx-hero-stats div h3 {
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 2px;
}

.nx-hero-stats div span {
  color: #d4d9e3;
  font-size: 14px;
}

.nx-hero-v2-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nx-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(255,106,0,.35);
  transition: .3s;
}

.nx-hero-btn-primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
  color: #fff;
}

.nx-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}

.nx-hero-btn-secondary:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.nx-hero-v2-image {
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nx-hero-main-img {
  position: relative;
  z-index: 2;
}

.nx-hero-main-img img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: nxHeroFloat 6s ease-in-out infinite;
}

@keyframes nxHeroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.nx-hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  z-index: 3;
  min-width: 190px;
}

.nx-hero-float-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ff914d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.nx-hero-float-card span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.nx-hero-float-card small {
  font-size: 12px;
  color: var(--text);
}

.nx-hfc-1 { top: 40px; left: 0; animation: nxCardBounce 4s ease-in-out infinite; }
.nx-hfc-2 { top: 180px; right: 0; animation: nxCardBounce 5s ease-in-out infinite .5s; }
.nx-hfc-3 { bottom: 60px; left: 40px; animation: nxCardBounce 4.5s ease-in-out infinite 1s; }

@keyframes nxCardBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ABOUT V2 */
.nx-about-v2 {
  padding: 100px 0;
  background: #fff;
}

.nx-about-v2-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.nx-about-mini-cards {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.nx-mini-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: .3s;
}

.nx-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.nx-mini-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.nx-mini-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nx-mini-card p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.nx-about-v2-image {
  position: relative;
  padding: 25px;
}

.nx-about-v2-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
  position: relative;
  z-index: 2;
}

.nx-about-shape {
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  border-radius: 30px;
  transform: translate(20px, 20px);
  z-index: 1;
}

/* PRODUCTS V2 */
.nx-products-v2 {
  padding: 100px 0;
  background: var(--gray);
}

.nx-products-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
}

.nx-products-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.nx-product-v2-card {
  width: 320px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: .35s;
}

.nx-product-v2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.nx-product-v2-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.nx-product-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.nx-product-v2-card:hover .nx-product-v2-img img {
  transform: scale(1.1);
}

.nx-product-v2-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.nx-product-v2-info {
  padding: 24px;
}

.nx-product-v2-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nx-product-v2-info p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.nx-product-v2-info a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* CTA V2 */
.nx-cta-v2 {
  padding: 70px 0;
  background: var(--gray);
}

.nx-cta-v2-box {
  background: linear-gradient(135deg, var(--orange), #ff914d);
  border-radius: 30px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.nx-cta-v2-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}

.nx-cta-v2-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.nx-cta-v2-box p {
  font-size: 16px;
  opacity: .95;
  position: relative;
  z-index: 1;
}

.nx-cta-v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--orange);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transition: .3s;
  position: relative;
  z-index: 1;
}

.nx-cta-v2-btn:hover {
  transform: translateY(-3px);
  color: var(--orange);
}

/* SOFTWARE V2 */
.nx-software-v2 {
  padding: 100px 0;
  background: #fff;
}

.nx-software-tabs-v2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.nx-soft-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: var(--gray);
  padding: 16px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: .3s;
}

.nx-soft-tab i {
  color: var(--orange);
}

.nx-soft-tab.active,
.nx-soft-tab:hover {
  background: var(--orange);
  color: #fff;
}

.nx-soft-tab.active i,
.nx-soft-tab:hover i {
  color: #fff;
}

.nx-software-content-v2 {
  position: relative;
}

.nx-soft-panel {
  display: none;
  animation: nxFadeIn .5s ease;
}

.nx-soft-panel.active {
  display: block;
}

@keyframes nxFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nx-soft-img-box {
  background: var(--gray);
  border-radius: 30px;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-soft-img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.nx-soft-info-box h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--black);
}

.nx-soft-info-box p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.nx-soft-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.nx-soft-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--text);
}

.nx-soft-list li i {
  color: var(--orange);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* WHY CHOOSE US V2 */
.nx-why-v2 {
  padding: 100px 0;
  background: var(--gray);
}

.nx-why-v2-card {
  background: #fff;
  border-radius: 26px;
  padding: 35px 28px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: .35s;
  height: 100%;
}

.nx-why-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,.08);
  border-color: var(--orange);
}

.nx-why-v2-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange), #ff914d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 15px 35px rgba(255,106,0,.20);
}

.nx-why-v2-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.nx-why-v2-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* PROCESS V2 */
.nx-process-v2 {
  padding: 100px 0;
  background: #fff;
}

.nx-process-v2 p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.nx-process-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.nx-process-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nx-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nx-step-num {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255,106,0,.25);
}

.nx-step-content {
  background: var(--gray);
  border-radius: 20px;
  padding: 22px;
  flex: 1;
  border: 1px solid #e9ecef;
}

.nx-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nx-step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* TESTIMONIALS V2 */
.nx-testimonials-v2 {
  padding: 100px 0;
  background: var(--black);
  color: #fff;
}

.nx-testimonials-v2 .nx-section-title-v2 {
  color: #fff;
}

.nx-testi-v2-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  padding: 30px;
  transition: .3s;
  height: 100%;
}

.nx-testi-v2-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-5px);
}

.nx-testi-v2-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.nx-testi-v2-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.nx-testi-v2-top h4 {
  font-size: 18px;
  margin-bottom: 2px;
}

.nx-testi-v2-top span {
  font-size: 13px;
  color: #d4d9e3;
}

.nx-testi-v2-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.nx-testi-v2-stars i {
  color: #ffb400;
  font-size: 14px;
}

.nx-testi-v2-card p {
  color: #d4d9e3;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* FAQ V2 */
.nx-faq-v2 {
  padding: 100px 0;
  background: var(--gray);
}

.nx-faq-v2-sticky {
  position: sticky;
  top: 120px;
}

.nx-faq-v2-sticky p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.nx-faq-v2-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nx-faq-v2-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.nx-faq-v2-question {
  width: 100%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.nx-faq-v2-question i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gray);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.nx-faq-v2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.nx-faq-v2-item.active .nx-faq-v2-answer {
  max-height: 250px;
}

.nx-faq-v2-answer p {
  padding: 0 26px 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.nx-faq-v2-item.active .nx-faq-v2-question i {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}

/* BLOGS V2 */
.nx-blogs-v2 {
  padding: 100px 0;
  background: #fff;
}

.nx-blog-v2-featured {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.nx-blog-v2-img {
  position: absolute;
  inset: 0;
}

.nx-blog-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-blog-v2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.9), transparent 60%);
}

.nx-blog-v2-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  color: #fff;
  z-index: 2;
}

.nx-blog-v2-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.nx-blog-v2-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.nx-blog-v2-content h3 a {
  color: #fff;
  text-decoration: none;
}

.nx-blog-v2-content p {
  color: #d4d9e3;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.nx-blog-v2-content > a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.nx-blog-v2-small {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.nx-blog-v2-small-item {
  display: flex;
  gap: 20px;
  background: var(--gray);
  border-radius: 24px;
  padding: 20px;
  align-items: center;
  border: 1px solid #e9ecef;
  transition: .3s;
  flex: 1;
}

.nx-blog-v2-small-item:hover {
  border-color: var(--orange);
  transform: translateX(10px);
}

.nx-blog-v2-small-item img {
  width: 140px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
}

.nx-blog-v2-small-item h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.nx-blog-v2-small-item h4 a {
  color: var(--black);
  text-decoration: none;
}

.nx-blog-v2-small-item h4 a:hover {
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nx-hero-v2-content h1 { font-size: 42px; text-align: center; }
  .nx-hero-v2-content p { margin-left: auto; margin-right: auto; text-align: center; }
  .nx-hero-stats { justify-content: center; }
  .nx-hero-v2-btns { justify-content: center; }
  .nx-hero-v2-image { margin-top: 60px; min-height: auto; }
  .nx-hero-float-card { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 15px auto; }
  .nx-section-header-v2 { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nx-section-title-v2, .nx-page-header h1 { font-size: 34px; }
  .nx-about-mini-cards { flex-direction: column; }
  .nx-soft-info-box h3 { font-size: 28px; }
  .nx-cta-v2-box { text-align: center; }
  .nx-cta-v2-box h2 { font-size: 28px; }
  .nx-cta-v2-btn { margin-top: 20px; }
  .nx-blog-v2-featured { min-height: 350px; }
}

@media (max-width: 767px) {
  .nx-hero-v2-content h1 { font-size: 34px; }
  .nx-hero-v2 { padding: 100px 0 70px; }
  .nx-software-tabs-v2 { flex-direction: column; }
  .nx-soft-tab { width: 100%; justify-content: center; }
  .nx-cta-v2-box { padding: 35px; }
  .nx-blog-v2-small-item { flex-direction: column; }
  .nx-blog-v2-small-item img { width: 100%; height: 180px; }
  .nx-faq-v2-sticky { position: relative; top: 0; }
  .nx-step { flex-direction: column; }
}


/* =========================================
ANNOUNCEMENT BAR
========================================= */

.nx-announcement {
  background: var(--orange);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
}

.nx-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nx-announcement-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nx-announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: .3s;
}

.nx-announcement-inner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

/* =========================================
HERO SLIDER
========================================= */

.nx-hero-slider {
  position: relative;
  width: 100%;
}

.nx-hero-slide {
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.nx-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.3) 100%);
}

.nx-hero-indicators {
  bottom: 30px !important;
  z-index: 10;
}

.nx-hero-indicators button {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background-color: rgba(255,255,255,0.5) !important;
  border: 2px solid #fff !important;
  margin: 0 6px !important;
}

.nx-hero-indicators button.active {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
}

.nx-hero-control {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  opacity: 0;
  transition: .3s;
}

.nx-hero-slider:hover .nx-hero-control {
  opacity: 1;
}

.nx-hero-control:hover {
  background: var(--orange);
}

.nx-hero-control .carousel-control-prev-icon,
.nx-hero-control .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Scroll Down */
.nx-scroll-down {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: nxBounce 2s infinite;
}

.nx-scroll-down span {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 20px;
  display: block;
  position: relative;
}

.nx-scroll-down span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 10px;
  background: var(--orange);
  border-radius: 10px;
  animation: nxScrollWheel 2s infinite;
}

@keyframes nxBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes nxScrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 25px; }
}

/* =========================================
TRUST STRIP
========================================= */

.nx-trust-strip {
  background: var(--black);
  padding: 35px 0;
  position: relative;
  z-index: 2;
}

.nx-trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nx-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.nx-trust-item i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,106,0,0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nx-trust-item span {
  font-weight: 600;
  font-size: 15px;
}

/* Existing section styles remain same below... */
/* =========================================
ABOUT MINI CARDS - ICON FIX
========================================= */

.nx-mini-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 25px 22px;
  flex: 1;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: .3s;
}

.nx-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.nx-mini-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #ff914d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(255,106,0,.20);
}

.nx-mini-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nx-mini-card p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

/* =========================================
PRODUCTS HORIZONTAL SCROLL - SCROLLBAR HIDDEN
========================================= */

.nx-products-scroll {
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: -10px;
  
  /* Hide scrollbar for all browsers */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.nx-products-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.nx-products-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 5px 15px;
}

.nx-product-v2-card {
  width: 320px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: .35s;
  flex-shrink: 0;
}

.nx-product-v2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

/* Mobile drag scroll feel */
@media (max-width: 991px) {
  .nx-products-scroll {
    cursor: grab;
  }
  
  .nx-products-scroll:active {
    cursor: grabbing;
  }
  
  .nx-product-v2-card {
    width: 280px;
  }
}

@media (max-width: 767px) {
  .nx-product-v2-card {
    width: 260px;
  }
}
/* =========================================
PRODUCTS SLIDER - NAVIGATION + AUTO SCROLL
========================================= */

.nx-product-slider-wrap {
  position: relative;
  padding: 0 60px;
}

.nx-product-slider {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 15px 5px;
}

.nx-product-v2-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: .35s;
  flex-shrink: 0;
}

.nx-product-v2-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.nx-product-v2-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.nx-product-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.nx-product-v2-card:hover .nx-product-v2-img img {
  transform: scale(1.1);
}

.nx-product-v2-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.nx-product-v2-info {
  padding: 24px;
}

.nx-product-v2-info h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nx-product-v2-info p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.nx-product-v2-info a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Navigation Buttons */
.nx-product-prev,
.nx-product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.nx-product-prev {
  left: 0;
}

.nx-product-next {
  right: 0;
}

.nx-product-prev:hover,
.nx-product-next:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.nx-product-prev:disabled,
.nx-product-next:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nx-product-slider-wrap {
    padding: 0 50px;
  }
  
  .nx-product-v2-card {
    min-width: 280px;
    max-width: 280px;
  }
}

@media (max-width: 767px) {
  .nx-product-slider-wrap {
    padding: 0 45px;
  }
  
  .nx-product-v2-card {
    min-width: 260px;
    max-width: 260px;
  }
  
  .nx-product-prev,
  .nx-product-next {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
/* =========================================
ABOUT MINI CARDS - ICON FIX (ROBUST)
========================================= */

.nx-about-mini-cards {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.nx-mini-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 25px 22px;
  flex: 1;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: .3s;
}

.nx-mini-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}

.nx-mini-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 15px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, var(--orange), #ff914d) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px rgba(255,106,0,.20) !important;
}

.nx-mini-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.nx-mini-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nx-mini-card p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

