/* ============================================
   BASE STYLES & RESETS
   ============================================ */

body {
    font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333;
}

[class*=am-u-] {
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a {
    color: #333;
}

a:hover {
    color: #009300;
}

/* Container */
.am-container {
    max-width: 1280px;
    padding: 0;
    margin: 0 auto;
}

.am-container-avg {
    max-width: 1310px;
    margin: 0 auto;
}

.am-with-topbar-fixed-top {
    padding-top: 0;
}

/* ============================================
   BUTTON COMPONENTS - All variants preserved
   ============================================ */

.am-btn {
    /* Base layout */
    display: inline-block;
    padding: .75em 1.5em !important;
    border: 1px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 

    /* Shadow effects */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Glass texture for modern browsers */
.am-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.15) 100%);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}

.am-btn > * {
    position: relative;
    z-index: 2;
}

/* Hover effects */
.am-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.am-btn:hover::before {
    background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0.2) 100%);
}

/* Active state */
.am-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Focus state */
.am-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3),
                0 4px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Disabled state */
.am-btn:disabled,
.am-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Primary button - Green */
.am-btn-primary {
    background-color: #000;
    border-color: rgba(0, 0, 0, 0.96);
    color: #fff!important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.am-btn-primary:hover {
    background-color: rgba(0, 180, 0, 0.95);
    border-color: rgba(0, 180, 0, 1);
}

.am-btn-primary:active {
    background-color: rgba(0, 130, 0, 0.9);
}

.am-btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(0, 147, 0, 0.25),
                0 4px 15px rgba(0, 147, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Default button - Gray */
.am-btn-default {
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(224, 224, 224, 0.9);
    color: #333;
}

.am-btn-default:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(200, 200, 200, 1);
    color: #000;
}

.am-btn-default:active {
    background-color: rgba(240, 240, 240, 0.9);
}

/* Warning button - Orange */
.am-btn-warning {
    background-color: #fff;
    border-color: rgba(255, 255, 255, 0.95);
    color: #333;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.am-btn-warning:hover {
    background-color: rgba(255, 170, 0, 0.95);
    border-color: rgba(255, 170, 0, 1);
}

.am-btn-warning:active {
    background-color: rgba(230, 138, 0, 0.9);
}

.am-btn-warning:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.25),
                0 4px 15px rgba(255, 153, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Danger button - Red */
.am-btn-danger {
    background-color: rgba(220, 53, 69, 0.85);
    border-color: rgba(220, 53, 69, 0.9);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.am-btn-danger:hover {
    background-color: rgba(240, 68, 84, 0.95);
    border-color: rgba(240, 68, 84, 1);
}

.am-btn-danger:active {
    background-color: rgba(200, 48, 64, 0.9);
}

.am-btn-danger:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25),
                0 4px 15px rgba(220, 53, 69, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Border button - Transparent background */
.am-btn-border {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 147, 0, 0.8);
    color: #009300;
}

.am-btn-border:hover {
    background-color: rgba(0, 147, 0, 0.1);
    border-color: rgba(0, 147, 0, 1);
    color: #007a00;
}

.am-btn-border:active {
    background-color: rgba(0, 147, 0, 0.2);
}

/* White button */
.am-btn-white {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
    color: #333;
}

.am-btn-white:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    color: #000;
}

.am-btn-white:active {
    background-color: rgba(245, 245, 245, 0.95);
}

/* ============================================
   TAB LINK COMPONENT
   ============================================ */

.products-tab-link {
    /* Base layout - reusing button styles but independent */
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    touch-action: manipulation;

    /* Glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Default state - white background */
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(224, 224, 224, 0.9);
    color: #333;

    /* Shadow effects */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.products-tab-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0.15) 100%);
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s ease;
}

.products-tab-link > * {
    position: relative;
    z-index: 2;
}

/* Spacing */
.products-tab-link {
    margin: 0 5px 10px;
}

/* Hover effects */
 

.products-tab-link:hover::before {
    background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0.2) 100%);
}

/* Active/selected state */
.products-tab-link:hover ,
.products-tab-link.active {
      background-color: #000;
    border-color: #000;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 147, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.products-tab-link.active:hover {
    background-color: #000;
    border-color: #000;
    transform: translateY(-2px); 
}

.products-tab-link.active::before {
    background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0.2) 100%);
}

/* Click effect */
.products-tab-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Focus effect */
.products-tab-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 147, 0, 0.2),
                0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ============================================
   FIXED SIDE BUTTONS
   ============================================ */

.live-chat {
    bottom: 8%;
    right: 10px;
    border-radius: 15px;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(6, 124, 71, 0.8);
    width: 80px;
    position: fixed;
    text-align: center;
    background: #007a00;
}

.live-chat a {
    display: block;
    padding: 2rem 1.5rem;
    color: #fff;
    font-size: 12px;
}

.fixed-side-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fixed-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 50%;
    z-index: 1;
}

.fixed-button i {
    position: relative;
    z-index: 2;
}

.contact-button {
    background: #000;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #25D366);
}

.top-button {
    background: linear-gradient(135deg, #666, #333);
}

.fixed-button:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-button:hover {
    box-shadow: 0 8px 30px rgba(0, 147, 0, 0.3);
}

.whatsapp-button:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.top-button:hover {
    box-shadow: 0 8px 30px rgba(102, 102, 102, 0.3);
}

.fixed-button:hover::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95); 
    border-bottom: 1px solid rgba(0, 147, 0, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
}

.site-header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.header-logo {
    flex: 0 0 auto;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.header-scrolled .logo-img {
    height: 40px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.toggle-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-icon::before {
    top: -8px;
}

.toggle-icon::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .toggle-icon {
    background: transparent;
}

.mobile-menu-toggle.active .toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Navigation and tools container */
.nav-tools-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

/* Main navigation */
.main-nav {
    margin-right: 30px;
}

.nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #009300;
}

.dropdown-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(0, 147, 0, 0.05);
    color: #009300;
    padding-left: 30px;
}

/* Tool buttons */
.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.tool-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.8rem;
}

.tool-btn:hover {
    background: rgba(0, 147, 0, 0.1);
    color: #009300;
}

.search-btn,
.lang-btn {
    border: none;
    padding: 0;
}

/* Main content area */
.site-main {
    margin-top: 76px;
    min-height: calc(100vh - 300px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    overflow: hidden;
    background: #232323;
    color: #e6e6e6;
}

.ifooter {
    overflow: hidden;
    background: url(/uploads/images/ifooter-bg.jpg) no-repeat center #e3e3e3;
    background-size: cover;
    color: #333;
    display: flex;
    align-items: center;
    height: 100%;
}

.ifooter-logo {
    overflow: hidden;
}

.footer a {
    color: #e6e6e6;
}

.footer a:hover {
    color: #009300;
}

.footer-navson a {
    display: block;
    margin-bottom: .5rem;
}

.footer-copyright {
    background: #000;
    color: #e6e6e6;
    line-height: 40px;
}

/* Full footer content */
.site-footer {
    background: #232323;
    color: #e6e6e6;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* Footer info */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact i {
    color: #999;
    width: 30px;
}

/* Footer titles */
.footer-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #666;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #999;
}

/* Footer lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-list a:hover {
    color: #009300;
    transform: translateX(5px);
}

/* QR Code */
.qrcode-container {
    text-align: center;
}

.qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.qrcode-text {
    color: #aaa;
    font-size: 14px;
    margin-top: 15px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

/* ============================================
   OTHER COMPONENTS
   ============================================ */

/* 4:3 Ratio Image Container Component */
.ratio-4-3 {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 3/4 = 75% */
    overflow: hidden;
}

.ratio-4-3 > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Image hover effect */
.img-hover-effect {
    transition: transform 0.6s ease;
}

.img-hover-effect:hover {
    transform: scale(1.05);
}

/* Pagination */
.am-pagination {
    margin: 3rem 0;
    overflow: hidden;
    text-align: center;
}

.am-pagination ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.am-pagination li {
    list-style: none;
    display: inline-block;
    margin: 0;
}

.am-pagination a,
.am-pagination span {
    display: block;
    padding: 12px 18px;
    border: 1px solid #e6e6e6;
    background: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.am-pagination a:hover,
.am-pagination li.active span {
    background-color: #000;
    color: #fff;  
}

.am-pagination li.active span,
.am-pagination li a:hover {
    background: #000;
    color: #e6e6e6;
}

/* ============================================
   BANNER AREA
   ============================================ */

.map-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    background-attachment: fixed;
    background-color: #363636;
    position: relative;
    display: flex;
    align-items: center;
}

.map-content {
    overflow: hidden;
    margin-top: 6rem;
}

.map-txt {
    overflow: hidden;
    color: #e6e6e6;
    line-height: 2;
    max-height: 300px;
    overflow-y: scroll;
}

.map-txt::-webkit-scrollbar {
    background-color: #009300;
    width: 6px;
}

.inner-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
    background-attachment: fixed;
    background-color: #363636;
    position: relative;
    color: #fff;
    animation: slide-bg 15s linear infinite;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.inner-banner-info {
    text-align: center;
}

.inner-banner h2 {
    text-transform: uppercase;
    font-size: 40px;
}

.inner-banner-icon {
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    animation: jump-icon 1.2s infinite alternate cubic-bezier(0.65, 0.05, 0.36, 1);
    background: url(/uploads/images/mouse.png) no-repeat center;
}

.search-banner {
    height: 45rem !important;
    background-position: bottom center;
    animation: none;
}

.article-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 45rem;
    background-attachment: fixed;
    background-color: #363636;
    position: relative;
    color: #e6e6e6;
    animation: slide-bg 15s linear infinite;
}

.article-banner-info {
    padding-top: 15vh;
    overflow: hidden;
    position: relative;
}

.article-banner-info a {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 30px;
}

.contact-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.banner-max,
.banner-map {
    height: 90vh !important;
}

/* ============================================
   HOME PAGE COMPONENTS
   ============================================ */

/* Section title */
.section-title {
    text-align: center; 
}

.section-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
    width: 40px;
    height: 4px;
    background: #666;
}

.section-title.white h2 {
    color: #fff;
}

.section-title.white h2::after {
    background: #fff;
}

/* Banner section */
.banner-section {
    height: 680px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.banner-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-actions .am-btn {
    font-size: 16px;
}

ul.am-dropdown-content > .am-active > a,
ul.am-dropdown-content > .am-active > a:hover,
ul.am-dropdown-content > .am-active > a:focus {
    background: #009300;
}
.am-dropdown-flip .am-dropdown-content,.am-form-icon .am-form-field{
    border-radius: 8px;
}
.am-modal-dialog{
    border-radius: 15px!important;
}
.search-form{
    padding: 30px;
}
/* Banner navigation */
.banner-nav-button {
    opacity: 0;
    transition: all 0.3s ease;
}

.banner-section:hover .banner-nav-button {
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background:#009300
}
/* Product categories section */
.product-categories-section {
    background: #f3f3f3;
    padding: 60px 0;
}

.category-grid {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.category-item {
    padding: 15px;
    width: 25%;
    box-sizing: border-box;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
}

.category-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.category-name {
    font-size:24px;
    color: #333;
    margin-bottom: 15px;
    flex: 1;
}

.category-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.category-actions .am-btn {
    margin: 0 7px;
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

/* Products section */
.products-section {
    background: #f3f3f3;
    padding:0 0 45px;
}

.products-bg {
    background: url(/uploads/images/iproduct-bg.jpg) no-repeat center;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slide-bg 15s linear infinite;
}

.products-tabs {
    margin-top: 30px;
}

.products-tab-nav {
    margin-bottom: 15px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.products-tab-content {
    position: relative;
    min-height: 300px;
}

.products-tab-pane {
    display: none;
}

.products-tab-pane.active {
    display: block;
}

.products-grid {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    overflow: hidden;
}

.product-image a {
    display: block;
    text-decoration: none;
}

.product-details {
    padding: 30px;
}

.product-category {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f7ff;
    color: #009300;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    line-height: 1;
}

.product-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title:hover {
    color: #009300;
}

/* Solutions section */
.solutions-section {
    background: url(/uploads/images/soulution-bg.jpg) no-repeat center #f9f9f9;
    background-size: cover;
    padding: 60px 0;
    background-attachment: fixed;
}

.solution-slider {
    position: relative;
    padding: 30px 0 40px;
}

.solution-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-image {
    overflow: hidden;
    border-radius: 15px;
}

.solution-image a {
    display: block;
    height: 100%;
}

.solution-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.solution-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.solution-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* News section */
.news-section {
    background: #f3f3f3;
    padding: 60px 0;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
}

.featured-news {
    padding: 15px;
    box-sizing: border-box;
    width: 50%;
}

.news-article.featured {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.news-article.featured:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-thumbnail {
    position: relative;
    overflow: hidden;
}

.news-content {
    display: flex;
    padding: 30px;
}

.news-date {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

.news-day {
    font-size: 30px;
    font-weight: bold;
    display: block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.news-day::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40%;
    width: 80%;
    height: 1px;
    background: #fff;
}

.news-month-year {
    font-size: 14px;
    display: block;
}

.news-meta {
    padding-left: 30px;
    flex: 1;
}

.news-heading {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 10px 0;
    overflow: hidden;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-read-more {
    color: #999 !important;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    transform: translateX(6px);
}

.news-list {
    padding: 15px 15px 0;
    box-sizing: border-box;
    width: 50%;
    margin: 0;
    list-style: none;
}

.news-item {
    margin-bottom: 15px;
}

.news-article.compact {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.news-article.compact:hover {
    background: #f9f9f9;
    transform: translateX(5px);
}

.news-article.compact .news-date {
    padding: 15px;
    min-width: 80px;
    border-radius: 8px;
    margin-right: 15px;
}

.news-article.compact .news-day {
    font-size: 16px;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.news-article.compact .news-month-year {
    font-size: 12px;
}

.news-article.compact .news-meta {
    padding-left: 0;
}

.news-article.compact .news-heading {
    font-size: 16px;
    margin-bottom: 5px;
}

.news-article.compact .news-excerpt {
    font-size: 12px;
    margin-bottom: 15px;
    height: 36px;
}

/* About section */
.about-section {
    padding: 60px 0;
    position: relative;
    min-height: 500px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
}

.about-text {
    padding: 15px;
}

.about-heading {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-image {
    overflow: hidden;
    padding: 15px;
}

.about-image img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact section */
.contact-section {
    background: #f3f3f3;
    padding: 60px 0;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.form-field {
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
    width: 33.333%;
}

.form-field.full-width {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1em 1.5em !important;
    border-radius: 30px !important;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.form-input {
    height: 50px;
    line-height: normal;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #009300;
    outline: none;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* ============================================
   SWIPER NAVIGATION BUTTONS
   ============================================ */

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 147, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.swiper-button-next {
    background: url(../images/next-small.png) no-repeat -38px center  #fff ;
}

.swiper-button-prev {
    background: url(../images/prev-small.png) no-repeat 3px   center #fff;
}

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {
    opacity: 1; 
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #009300;
    transform: scale(1.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slide-bg {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes jump-icon {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px);
    }
}